/* ==========================================================================
   THE HAPPY PAW PREMIUM PET BOUTIQUE & SPA DESIGN SYSTEM
   Sophisticated Forest Emerald, Terracotta, and Warm Cream Aesthetic
   ========================================================================== */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito+Sans:wght@600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Styling Variables --- */
:root {
    --bg-base: #FAF7F2;
    --bg-card: #FFFFFF;
    
    /* Premium Natural Accents */
    --color-emerald: #064E3B;
    --color-emerald-light: #ECEFEA;
    --color-terracotta: #B54D1E;
    --color-terracotta-light: #FDF4E9;
    --color-gold: #D97706;
    --color-gold-light: #FEF3C7;
    
    /* Neutrals */
    --text-dark: #111827;
    --text-muted: #555E6C;
    --text-light: #9CA3AF;
    --panel-border: rgba(6, 78, 59, 0.08);
    
    /* Typography & Transition Setting */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Nunito Sans', sans-serif;
    --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-speed: 0.35s;
}

/* --- Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    line-height: 1.6;
}

/* ==========================================================================
   TOP PANORAMIC SCROLLING BANNER
   ========================================================================== */
.top-scrolling-banner {
    width: 100%;
    max-width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #042A20;
    border-bottom: 1px solid var(--panel-border);
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%); /* Start off-screen right */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    transform: translateX(0); /* Active is centered */
    z-index: 2;
}

.banner-slide.exit {
    transform: translateX(-100%); /* Slide out left */
    z-index: 1;
}

.banner-slide.exit-right {
    transform: translateX(100%); /* Slide out right when going backward */
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6); /* High contrast caption readability */
}

.banner-caption {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 576px + 24px); /* Align with content edge */
    z-index: 10;
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
}

.banner-slide.active .banner-caption {
    animation: bannerFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

@media (max-width: 1200px) {
    .banner-caption {
        left: 30px;
        right: 30px;
        max-width: calc(100% - 60px);
    }

    .banner-caption h2 {
        font-size: clamp(1.25rem, 5vw, 2.2rem);
    }
}

.caption-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--color-terracotta);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-caption h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

/* Dots navigation */
.banner-dots {
    position: absolute;
    bottom: 30px;
    right: calc(50% - 576px + 24px);
    z-index: 15;
    display: flex;
    gap: 8px;
}

@media (max-width: 1200px) {
    .banner-dots {
        right: 30px;
    }
}

.banner-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
}

.banner-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.banner-dots .dot.active {
    background: #FFFFFF;
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Premium Glass Panel Card --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.02), 0 1px 3px rgba(0,0,0,0.01);
    transition: all var(--transition-speed) var(--ease-premium);
}

.glass-panel:hover {
    border-color: rgba(6, 78, 59, 0.15);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.05);
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   ELEGANT BOUTIQUE HEADER
   ========================================================================== */
.boutique-header {
    border-bottom: 1px solid var(--panel-border);
    padding: 20px 0;
    background: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    max-width: 100%;
    overflow-x: hidden;
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "brand cart"
        "nav nav";
    align-items: center;
    gap: 12px 16px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.brand-identity {
    grid-area: brand;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-svg {
    width: 36px;
    height: 36px;
    transition: transform 0.6s var(--ease-premium);
}

.brand-identity:hover .brand-svg {
    transform: rotate(360deg);
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-emerald);
    line-height: 1.1;
    display: block;
}

.brand-tagline {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-terracotta);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Navigation Links */
.header-nav {
    grid-area: nav;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    min-width: 0;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-emerald);
}

/* Cart Toggle indicator button */
.btn-cart-toggle {
    grid-area: cart;
    justify-self: end;
    flex-shrink: 0;
    font-family: var(--font-display);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(6, 78, 59, 0.2);
    background: rgba(6, 78, 59, 0.05);
    color: var(--color-emerald);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease-premium);
}

.btn-cart-toggle:hover {
    background: var(--color-emerald);
    color: #FFFFFF;
    border-color: var(--color-emerald);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.15);
}

.cart-badge {
    background: var(--color-terracotta);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}

/* Compact header typography on phones (S22 Ultra portrait ≈ 384px) */
@media (max-width: 1024px) {
    .boutique-header {
        padding: 14px 0;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .btn-cart-toggle {
        padding: 8px 14px;
    }
}

/* Desktop: single-row header */
@media (min-width: 1025px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "brand nav cart";
    }

    .header-nav {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 30px;
    }
}

@media (max-width: 420px) {
    .btn-cart-toggle .cart-label {
        display: none;
    }

    .btn-cart-toggle {
        padding: 8px 12px;
        gap: 6px;
    }
}

/* ==========================================================================
   HIGH-IMPACT HERO BANNER
   ========================================================================== */
.hero-section {
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-terracotta-light);
    color: var(--color-terracotta);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--color-emerald);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Premium Bubbly/Flat Buttons */
.btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-premium);
}

.btn-primary {
    background: var(--color-emerald);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.15);
}

.btn-primary:hover {
    background: #043A2B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.25);
}

.btn-secondary {
    background: rgba(181, 77, 30, 0.06);
    color: var(--color-terracotta);
    border: 1px solid rgba(181, 77, 30, 0.2);
}

.btn-secondary:hover {
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    transform: translateY(-3px);
}

/* Feature Spotlight card */
.hero-feature-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(6, 78, 59, 0.08);
    border: 1px solid var(--panel-border);
    transition: transform var(--transition-speed) var(--ease-premium);
}

.hero-image-wrapper:hover {
    transform: translateY(-4px);
}

.hero-banner-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.spotlight-card {
    padding: 30px;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--panel-border);
    padding-bottom: 12px;
}

.spotlight-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    background: var(--color-gold-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.spotlight-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.spotlight-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.spotlight-text strong {
    color: var(--color-emerald);
}

/* ==========================================================================
   WIDGET SECTION HEADERS
   ========================================================================== */
.shop-section, .spa-section, .consult-section {
    padding: 80px 0;
}

.bg-emerald {
    background: var(--color-emerald-light);
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    border-top: 1px dashed rgba(6, 78, 59, 0.1);
    border-bottom: 1px dashed rgba(6, 78, 59, 0.1);
}

@media (max-width: 1200px) {
    .bg-emerald {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.hidden {
    display: none !important;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-terracotta);
    letter-spacing: 0.15em;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin: 6px 0 12px 0;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CURATED PRODUCT SHOP & E-COMMERCE GRID
   ========================================================================== */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-tab {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--panel-border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    color: var(--color-emerald);
    border-color: rgba(6, 78, 59, 0.2);
}

.filter-tab.active {
    background: var(--color-emerald);
    color: #FFFFFF;
    border-color: var(--color-emerald);
}

/* Grid of Catalog Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--ease-premium);
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 78, 59, 0.15);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.05);
}

.product-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-terracotta);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--panel-border);
    padding-top: 16px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-add-cart {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(6, 78, 59, 0.05);
    border: 1px solid rgba(6, 78, 59, 0.15);
    color: var(--color-emerald);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--color-emerald);
    color: #FFFFFF;
    border-color: var(--color-emerald);
}

/* ==========================================================================
   FEATURE WIDGET 1: SPA SERVICES & BOOKINGS
   ========================================================================== */
.spa-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.spa-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    padding: 24px;
}

.service-card.selected {
    border-color: var(--color-emerald);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.06);
}

.service-card.selected .btn-select-service {
    background: var(--color-emerald);
    color: #FFFFFF;
    border-color: var(--color-emerald);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
}

.service-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.service-card .service-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Spa Booking pane form selectors */
.spa-booking-pane {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    margin: auto;
}

.booking-placeholder-icon {
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 12px;
}

.booking-placeholder p {
    font-size: 0.8rem;
    max-width: 250px;
    margin: 0 auto;
}

.booking-active-form {
    animation: fade-in 0.4s var(--ease-premium);
}

.booking-target-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-emerald);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.half-width {
    flex: 1;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control:focus {
    border-color: rgba(6, 78, 59, 0.3);
    background: #FFFFFF;
}

/* Spa Reservation Slip style sheet */
.booking-slip-output {
    background: var(--bg-base);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    position: relative;
}

.slip-header {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    border-bottom: 1px dashed var(--panel-border);
    padding-bottom: 8px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.slip-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.slip-row span:first-child {
    font-weight: 500;
}

.slip-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.slip-row.final-price {
    border-top: 1px solid var(--panel-border);
    padding-top: 8px;
    margin-top: 8px;
}

.slip-row.final-price span:last-child {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

/* ==========================================================================
   FEATURE WIDGET 2: REFINED CONSULT MATCHER
   ========================================================================== */
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
}

.consult-form {
    border-right: 1px dashed var(--panel-border);
    padding-right: 40px;
}

@media (max-width: 768px) {
    .consult-grid {
        grid-template-columns: 1fr;
    }
    
    .consult-form {
        border-right: none;
        border-bottom: 1px dashed var(--panel-border);
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .spa-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.consult-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.consult-placeholder-icon {
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 12px;
}

.consult-placeholder p {
    font-size: 0.8rem;
    max-width: 250px;
    margin: 0 auto;
}

/* Active consult matches results view */
.consult-active {
    animation: fade-in 0.4s var(--ease-premium);
    text-align: left;
}

.consult-match-celebration {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-emerald);
    background: var(--color-emerald-light);
    border: 1px solid rgba(6, 78, 59, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.match-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    background: var(--bg-base);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
}

.match-media {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(6, 78, 59, 0.05);
    flex-shrink: 0;
}

.match-pet-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.match-monogram {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold);
    background: var(--color-emerald);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.02em;
}

.match-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-emerald);
}

.match-department {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.match-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.match-care-card {
    background: var(--color-terracotta-light);
    border: 1px solid rgba(181, 77, 30, 0.15);
    border-radius: 12px;
    padding: 16px;
}

.care-card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-terracotta);
    margin-bottom: 8px;
}

.care-card-list {
    list-style-position: inside;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ==========================================================================
   PAGE FOOTERS
   ========================================================================== */
.boutique-footer {
    border-top: 1px dashed var(--panel-border);
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 40px;
}

.disclaimer-text {
    font-size: 0.7rem;
    margin-top: 6px;
    font-style: italic;
    opacity: 0.7;
}

/* ==========================================================================
   SLIDING SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 400px;
    height: 100vh;
    z-index: 500;
    border-radius: 0;
    border-left: 1px solid var(--panel-border);
    border-top: none;
    border-bottom: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    transition: right 0.4s var(--ease-premium);
}

.cart-drawer.open {
    right: 0; /* Slide out */
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--panel-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
}

.cart-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-emerald);
}

.btn-cart-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-cart-close:hover {
    color: var(--text-dark);
}

.cart-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: rgba(250, 247, 242, 0.5);
}

/* Cart Items Stream */
.cart-items-stream {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: #FFFFFF;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-terracotta);
    margin-top: 4px;
    font-weight: 600;
}

/* Controls to alter quantities inside cart drawer */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-badge {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.btn-qty {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(6, 78, 59, 0.2);
    background: rgba(6, 78, 59, 0.03);
    color: var(--color-emerald);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-qty:hover {
    background: var(--color-emerald);
    color: #FFFFFF;
    border-color: var(--color-emerald);
}

/* Cart calculation totals block */
.cart-footer-calculations {
    padding: 24px;
    background: #FFFFFF;
    border-top: 1px solid var(--panel-border);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.calc-row span:last-child {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-dark);
}

.calc-row.total-row {
    border-top: 1px solid var(--panel-border);
    padding-top: 8px;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-emerald);
}

.calc-row.total-row span:last-child {
    font-size: 1.25rem;
    color: var(--color-emerald);
}

.btn-checkout {
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 12px;
}

@media (max-width: 576px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}
