/* ============================================================
   Monica Bridal Fashion - Premium Earth Tone Design
   Single font: Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    /* Earth Tone Palette */
    --color-cream:           #F5EEE6;
    --color-cream-light:     #FAF6F0;
    --color-cream-deep:      #EFE5D7;
    --color-white:           #FFFFFF;

    /* Browns */
    --color-brown-darkest:   #2C1810;
    --color-brown-dark:      #3D2817;
    --color-brown:           #5C4530;
    --color-brown-medium:    #6B4F35;
    --color-brown-light:     #8B7355;
    --color-brown-pale:      #B8945F;
    --color-tan:             #D4B896;
    --color-tan-light:       #E8D5B7;

    /* Text */
    --color-text-primary:    #3D2817;
    --color-text-secondary:  #6B4F35;
    --color-text-muted:      #8B7355;
    --color-text-light:      #A89178;
    --color-text-white:      #FFFFFF;

    /* Borders */
    --color-border:          #E5D9C8;
    --color-border-light:    #EFE5D7;

    /* Status */
    --color-success:         #4A7C4E;
    --color-success-light:   #E8F1E9;
    --color-error:           #B85450;
    --color-error-light:     #F5E3E2;
    --color-warning:         #C9A227;
    --color-warning-light:   #FAF3DC;
    --color-info:            #4A6B8A;
    --color-info-light:      #E3ECF3;

    /* Font */
    --font-base: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Font Sizes */
    --fs-xs:   0.75rem;
    --fs-sm:   0.875rem;
    --fs-base: 1rem;
    --fs-md:   1.125rem;
    --fs-lg:   1.25rem;
    --fs-xl:   1.5rem;
    --fs-2xl:  2rem;
    --fs-3xl:  2.5rem;
    --fs-4xl:  3rem;
    --fs-5xl:  3.5rem;

    /* Spacing */
    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.25rem;
    --sp-6:  1.5rem;
    --sp-8:  2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;

    /* Layout */
    --container-max:     1280px;
    --container-padding: 1.5rem;
    --navbar-height:     72px;
    --promo-height:      36px;

    /* Radius - Soft and rounded */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:    0 1px 3px rgba(61,40,23,0.06);
    --shadow-sm:    0 2px 8px rgba(61,40,23,0.06);
    --shadow-md:    0 4px 16px rgba(61,40,23,0.08);
    --shadow-lg:    0 8px 32px rgba(61,40,23,0.10);
    --shadow-card:  0 4px 24px rgba(61,40,23,0.06);
    --shadow-hover: 0 12px 32px rgba(61,40,23,0.12);

    /* Transitions */
    --ease-fast:   0.15s ease;
    --ease-base:   0.25s ease;
    --ease-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky:   200;
    --z-overlay:  300;
    --z-modal:    400;
}

/* ============================================================
   2. RESET AND BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin:     0;
    padding:    0;
}

html {
    font-size:              16px;
    scroll-behavior:        smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:      var(--font-base);
    font-size:        var(--fs-base);
    font-weight:      400;
    color:            var(--color-text-primary);
    background-color: var(--color-cream);
    line-height:      1.65;
    overflow-x:       hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family:    var(--font-base);
    font-weight:    700;
    line-height:    1.2;
    color:          var(--color-text-primary);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-4xl); font-weight: 700; }
h2 { font-size: var(--fs-3xl); font-weight: 700; }
h3 { font-size: var(--fs-2xl); font-weight: 600; }
h4 { font-size: var(--fs-xl);  font-weight: 600; }
h5 { font-size: var(--fs-lg);  font-weight: 600; }
h6 { font-size: var(--fs-md);  font-weight: 600; }

p {
    margin-bottom: var(--sp-4);
    color:         var(--color-text-secondary);
    line-height:   1.75;
}

p:last-child { margin-bottom: 0; }

a {
    color:           var(--color-brown-pale);
    text-decoration: none;
    transition:      color var(--ease-fast);
}

a:hover { color: var(--color-brown-dark); }

img {
    max-width:   100%;
    height:      auto;
    display:     block;
    object-fit:  cover;
}

ul, ol { list-style: none; }

button {
    cursor:      pointer;
    border:      none;
    background:  none;
    font-family: var(--font-base);
}

input, textarea, select {
    font-family: var(--font-base);
    font-size:   var(--fs-base);
}

::selection {
    background: var(--color-tan-light);
    color:      var(--color-brown-dark);
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
    width:     100%;
    max-width: var(--container-max);
    margin:    0 auto;
    padding:   0 var(--container-padding);
}

.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1480px; }

.section     { padding: var(--sp-16) 0; }
.section--sm { padding: var(--sp-10) 0; }
.section--lg { padding: var(--sp-24) 0; }

/* Section headers */
.section-header {
    margin-bottom: var(--sp-8);
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size:     var(--fs-2xl);
    font-weight:   700;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size:   var(--fs-sm);
    color:       var(--color-text-muted);
    font-weight: 400;
}

/* Product grid - 2 mobile, 3 tablet, 4 desktop */
.product-grid {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   var(--sp-5);
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-6);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-8);
    }
}

/* Generic grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); } }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }

/* ============================================================
   4. BUTTONS - PILL SHAPED
   ============================================================ */
.btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    gap:             var(--sp-2);
    padding:         0.85rem 2rem;
    font-family:     var(--font-base);
    font-size:       var(--fs-sm);
    font-weight:     500;
    text-decoration: none;
    border:          1.5px solid transparent;
    border-radius:   var(--radius-full);
    cursor:          pointer;
    transition:      all var(--ease-base);
    white-space:     nowrap;
    line-height:     1;
}

.btn:disabled {
    opacity: 0.5;
    cursor:  not-allowed;
}

/* Primary - White pill */
.btn-primary {
    background:   var(--color-white);
    border-color: var(--color-white);
    color:        var(--color-brown-dark);
}

.btn-primary:hover:not(:disabled) {
    background:   var(--color-cream);
    border-color: var(--color-cream);
    color:        var(--color-brown-dark);
}

/* Secondary - Outlined white (for hero) */
.btn-secondary {
    background:   transparent;
    border-color: var(--color-white);
    color:        var(--color-white);
}

.btn-secondary:hover:not(:disabled) {
    background:   var(--color-white);
    color:        var(--color-brown-dark);
}

/* Dark - Brown filled */
.btn-dark {
    background:   var(--color-brown-dark);
    border-color: var(--color-brown-dark);
    color:        var(--color-white);
}

.btn-dark:hover:not(:disabled) {
    background:   var(--color-brown-darkest);
    border-color: var(--color-brown-darkest);
}

/* Brown outline */
.btn-outline {
    background:   transparent;
    border-color: var(--color-brown-dark);
    color:        var(--color-brown-dark);
}

.btn-outline:hover:not(:disabled) {
    background: var(--color-brown-dark);
    color:      var(--color-white);
}

/* Danger */
.btn-danger {
    background:   var(--color-error);
    border-color: var(--color-error);
    color:        var(--color-white);
}

.btn-danger:hover:not(:disabled) {
    background:   #9c4441;
    border-color: #9c4441;
}

/* Sizes */
.btn-sm { padding: 0.6rem 1.4rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--fs-sm); }
.btn-block { width: 100%; display: flex; }

/* ============================================================
   5. FORMS
   ============================================================ */
.form-group    { margin-bottom: var(--sp-5); }

.form-label {
    display:       block;
    font-size:     var(--fs-sm);
    font-weight:   600;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-2);
}

.form-label .required {
    color:       var(--color-error);
    margin-left: 3px;
}

.form-control {
    width:         100%;
    padding:       0.8rem 1.1rem;
    font-size:     var(--fs-sm);
    font-family:   var(--font-base);
    color:         var(--color-text-primary);
    background:    var(--color-white);
    border:        1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition:    all var(--ease-fast);
    outline:       none;
}

.form-control:focus {
    border-color: var(--color-brown-pale);
    box-shadow:   0 0 0 3px rgba(184,148,95,0.12);
}

.form-control::placeholder { color: var(--color-text-light); }

textarea.form-control {
    resize:     vertical;
    min-height: 120px;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238B7355' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat:   no-repeat;
    background-position: right 1rem center;
    padding-right:       2.5rem;
    cursor:              pointer;
    -webkit-appearance:  none;
    appearance:          none;
}

.form-error { font-size: var(--fs-xs); color: var(--color-error); margin-top: var(--sp-1); }
.form-hint  { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: var(--sp-1); }

.form-row { display: grid; gap: var(--sp-5); }
@media (min-width: 600px) {
    .form-row--2 { grid-template-columns: repeat(2, 1fr); }
    .form-row--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   6. BADGES AND ALERTS
   ============================================================ */
.badge {
    display:        inline-flex;
    align-items:    center;
    padding:        0.25rem 0.65rem;
    font-size:      var(--fs-xs);
    font-weight:    600;
    border-radius:  var(--radius-full);
    line-height:    1;
}

.badge-gold    { background: var(--color-tan-light); color: var(--color-brown-dark); }
.badge-dark    { background: var(--color-brown-dark); color: var(--color-white); }
.badge-success { background: var(--color-success-light); color: var(--color-success); }
.badge-error   { background: var(--color-error-light); color: var(--color-error); }

.status-pending    { background: var(--color-warning-light); color: #997816; }
.status-confirmed  { background: var(--color-info-light); color: var(--color-info); }
.status-processing { background: var(--color-tan-light); color: var(--color-brown-dark); }
.status-delivered  { background: var(--color-success-light); color: var(--color-success); }
.status-cancelled  { background: var(--color-error-light); color: var(--color-error); }

/* Alerts */
.alert {
    padding:       var(--sp-4) var(--sp-5);
    border-radius: var(--radius-md);
    font-size:     var(--fs-sm);
    font-weight:   500;
    margin:        var(--sp-4) auto;
    max-width:     var(--container-max);
    border:        1px solid transparent;
}

.alert-success { background: var(--color-success-light); color: var(--color-success); border-color: #C6E0C8; }
.alert-error   { background: var(--color-error-light);   color: var(--color-error);   border-color: #E8C8C7; }
.alert-warning { background: var(--color-warning-light); color: #997816;              border-color: #EFE3B5; }
.alert-info    { background: var(--color-info-light);    color: var(--color-info);    border-color: #C6D2DE; }

/* ============================================================
   7. PROMO STRIP (Top bar)
   ============================================================ */
.promo-strip {
    background: var(--color-brown-darkest);
    color:      var(--color-cream);
    height:     var(--promo-height);
    display:    flex;
    align-items: center;
    justify-content: center;
    font-size:  var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    padding:    0 var(--container-padding);
}

.promo-strip strong {
    font-weight: 600;
    color:       var(--color-tan);
}

.promo-strip a {
    color: var(--color-tan);
    text-decoration: underline;
}

.promo-strip a:hover {
    color: var(--color-white);
}

/* ============================================================
   8. HEADER - LOGO LEFT, NAV CENTER, ICONS RIGHT
   ============================================================ */
.navbar {
    position:    sticky;
    top:         0;
    left:        0;
    right:       0;
    z-index:     var(--z-sticky);
    height:      var(--navbar-height);
    background:  var(--color-cream-light);
    border-bottom: 1px solid var(--color-border-light);
    transition:  box-shadow var(--ease-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar__inner {
    display:         grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:     center;
    height:          var(--navbar-height);
    gap:             var(--sp-6);
}

/* Logo */
.navbar__logo {
    display:     flex;
    align-items: center;
    justify-self: start;
}

.navbar__logo img {
    height:     40px;
    width:      auto;
    object-fit: contain;
}

.navbar__logo-text {
    font-size:   var(--fs-xl);
    font-weight: 600;
    font-style:  italic;
    color:       var(--color-brown-dark);
    letter-spacing: -0.01em;
}

/* Desktop nav - centered */
.navbar__nav {
    display:     none;
    align-items: center;
    gap:         var(--sp-2);
    justify-self: center;
}

@media (min-width: 1024px) {
    .navbar__nav { display: flex; }
}

.navbar__nav-item { position: relative; }

.navbar__nav-link {
    display:         block;
    padding:         var(--sp-2) var(--sp-4);
    font-size:       var(--fs-sm);
    font-weight:     500;
    color:           var(--color-text-primary);
    text-decoration: none;
    transition:      color var(--ease-fast);
    white-space:     nowrap;
    position:        relative;
}

.navbar__nav-link:hover,
.navbar__nav-link.active {
    color: var(--color-brown-pale);
}

.navbar__nav-link.active::after {
    content:    '';
    position:   absolute;
    bottom:     -4px;
    left:       50%;
    transform:  translateX(-50%);
    width:      20px;
    height:     2px;
    background: var(--color-brown-pale);
    border-radius: 2px;
}

/* Dropdown */
.navbar__dropdown {
    position:      absolute;
    top:           calc(100% + 14px);
    left:          50%;
    transform:     translateX(-50%) translateY(-10px);
    min-width:     220px;
    background:    var(--color-white);
    border:        1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow:    var(--shadow-lg);
    opacity:       0;
    visibility:    hidden;
    transition:    all var(--ease-base);
    z-index:       var(--z-dropdown);
    padding:       var(--sp-2) 0;
}

.navbar__nav-item:hover .navbar__dropdown {
    opacity:    1;
    visibility: visible;
    transform:  translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
    display:    block;
    padding:    var(--sp-3) var(--sp-5);
    font-size:  var(--fs-sm);
    font-weight: 500;
    color:      var(--color-text-secondary);
    transition: all var(--ease-fast);
}

.navbar__dropdown-link:hover {
    color:      var(--color-brown-dark);
    background: var(--color-cream-light);
    padding-left: calc(var(--sp-5) + 4px);
}

/* Right actions */
.navbar__actions {
    display:      flex;
    align-items:  center;
    gap:          var(--sp-2);
    justify-self: end;
}

.navbar__icon-btn {
    width:           40px;
    height:          40px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    background:      transparent;
    border:          none;
    border-radius:   var(--radius-full);
    color:           var(--color-text-primary);
    cursor:          pointer;
    transition:      all var(--ease-fast);
    text-decoration: none;
    position:        relative;
}

.navbar__icon-btn:hover {
    background: var(--color-cream-deep);
    color:      var(--color-brown-dark);
}

.navbar__icon-btn svg {
    width:  20px;
    height: 20px;
}

/* Cart count badge */
.navbar__cart-count {
    position:    absolute;
    top:         2px;
    right:       2px;
    min-width:   18px;
    height:      18px;
    background:  var(--color-brown-dark);
    color:       var(--color-white);
    font-size:   10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display:     flex;
    align-items: center;
    justify-content: center;
    padding:     0 4px;
    line-height: 1;
    border:      2px solid var(--color-cream-light);
}

/* Search overlay (click search icon to open) */
.navbar__search-overlay {
    position:   fixed;
    top:        0;
    left:       0;
    right:      0;
    background: var(--color-white);
    padding:    var(--sp-6) 0;
    box-shadow: var(--shadow-lg);
    z-index:    calc(var(--z-sticky) + 10);
    transform:  translateY(-100%);
    transition: transform var(--ease-smooth);
}

.navbar__search-overlay.open {
    transform: translateY(0);
}

.navbar__search-form {
    display:     flex;
    align-items: center;
    gap:         var(--sp-3);
    max-width:   600px;
    margin:      0 auto;
}

.navbar__search-input {
    flex:          1;
    padding:       0.85rem 1.25rem;
    font-size:     var(--fs-base);
    border:        1px solid var(--color-border);
    border-radius: var(--radius-full);
    outline:       none;
    background:    var(--color-cream-light);
    color:         var(--color-text-primary);
}

.navbar__search-input:focus {
    border-color: var(--color-brown-pale);
    background:   var(--color-white);
}

.navbar__search-close {
    width:           40px;
    height:          40px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    border-radius:   var(--radius-full);
    background:      var(--color-cream-deep);
    cursor:          pointer;
    color:           var(--color-text-primary);
    transition:      all var(--ease-fast);
}

.navbar__search-close:hover {
    background: var(--color-brown-dark);
    color:      var(--color-white);
}

/* Mobile toggle */
.navbar__toggle {
    display:        flex;
    flex-direction: column;
    gap:            5px;
    padding:        var(--sp-2);
    cursor:         pointer;
    background:     none;
    border:         none;
    width:          40px;
    height:         40px;
    align-items:    center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .navbar__toggle { display: none; }
}

.navbar__toggle-bar {
    display:       block;
    width:         22px;
    height:        2px;
    background:    var(--color-text-primary);
    border-radius: 2px;
    transition:    all var(--ease-base);
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.open .navbar__toggle-bar:nth-child(2) { opacity: 0; }
.navbar__toggle.open .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
    display:    none;
    background: var(--color-cream-light);
    padding:    var(--sp-4) 0 var(--sp-6);
    border-top: 1px solid var(--color-border-light);
    position:   absolute;
    top:        var(--navbar-height);
    left:       0;
    right:      0;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--navbar-height) - var(--promo-height));
    overflow-y: auto;
}

.navbar__mobile.open { display: block; }

.navbar__mobile-link {
    display:         block;
    padding:         var(--sp-3) var(--container-padding);
    font-size:       var(--fs-sm);
    font-weight:     500;
    color:           var(--color-text-primary);
    border-bottom:   1px solid var(--color-border-light);
    transition:      all var(--ease-fast);
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active {
    color:      var(--color-brown-pale);
    background: var(--color-cream-deep);
}

.navbar__mobile-search {
    padding: var(--sp-4) var(--container-padding);
    border-bottom: 1px solid var(--color-border-light);
}

/* ============================================================
   9. HERO - ROUNDED IMAGE CARD WITH OVERLAY
   ============================================================ */
.hero {
    padding: var(--sp-6) 0 var(--sp-8);
    background: var(--color-cream);
}

.hero__card {
    position:        relative;
    max-width:       1240px;
    margin:          0 auto;
    border-radius:   var(--radius-lg);
    overflow:        hidden;
    aspect-ratio:    16/8;
    background:      var(--color-brown-medium) no-repeat center center;
    background-size: cover;
    display:         flex;
    align-items:     center;
    justify-content: center;
    box-shadow:      var(--shadow-card);
    min-height:      380px;
}

@media (max-width: 768px) {
    .hero__card {
        aspect-ratio: 4/5;
        min-height:   500px;
    }
}

.hero__overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        to bottom,
        rgba(45,30,15,0.25) 0%,
        rgba(45,30,15,0.45) 50%,
        rgba(45,30,15,0.55) 100%
    );
}

.hero__content {
    position:   relative;
    z-index:    2;
    text-align: center;
    padding:    var(--sp-6);
    max-width:  650px;
}

.hero__title {
    font-size:      clamp(2rem, 5vw, var(--fs-5xl));
    font-weight:    700;
    color:          var(--color-white);
    line-height:    1.1;
    margin-bottom:  var(--sp-4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size:     clamp(0.875rem, 1.5vw, var(--fs-base));
    color:         rgba(255,255,255,0.92);
    margin-bottom: var(--sp-6);
    line-height:   1.6;
    font-weight:   400;
    max-width:     500px;
    margin-left:   auto;
    margin-right:  auto;
}

.hero__actions {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             var(--sp-3);
    flex-wrap:       wrap;
}

/* ============================================================
   10. PRODUCT CARD - CLEAN MINIMAL
   ============================================================ */
.product-card {
    position:       relative;
    background:     transparent;
    display:        flex;
    flex-direction: column;
    transition:     all var(--ease-base);
}

.product-card__image-wrap {
    position:     relative;
    aspect-ratio: 4/5;
    overflow:     hidden;
    background:   var(--color-cream-deep);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-3);
    display:      block;
}

.product-card__image {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

/* Badges */
.product-card__badges {
    position:       absolute;
    top:            var(--sp-3);
    left:           var(--sp-3);
    display:        flex;
    flex-direction: column;
    gap:            var(--sp-1);
    z-index:        2;
}

.product-card__badge {
    padding:       0.25rem 0.6rem;
    font-size:     10px;
    font-weight:   600;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

.product-card__badge--featured {
    background: var(--color-brown-dark);
    color:      var(--color-white);
}

.product-card__badge--new {
    background: var(--color-white);
    color:      var(--color-brown-dark);
}

.product-card__badge--sale {
    background: var(--color-error);
    color:      var(--color-white);
}

.product-card__badge--out {
    background: rgba(61,40,23,0.85);
    color:      var(--color-white);
}

/* Out of stock overlay */
.product-card__out-overlay {
    position:        absolute;
    inset:           0;
    background:      rgba(255,255,255,0.6);
    display:         flex;
    align-items:     center;
    justify-content: center;
    z-index:         3;
    border-radius:   var(--radius-md);
}

/* Card body - clean text layout */
.product-card__body {
    display:        flex;
    flex-direction: column;
    gap:            var(--sp-1);
    padding:        0 var(--sp-1);
}

.product-card__name {
    font-size:   var(--fs-sm);
    font-weight: 600;
    color:       var(--color-text-primary);
    line-height: 1.4;
    transition:  color var(--ease-fast);
    margin:      0;
}

.product-card:hover .product-card__name {
    color: var(--color-brown-pale);
}

.product-card__price {
    display:     flex;
    align-items: baseline;
    gap:         var(--sp-2);
    margin-top:  var(--sp-1);
}

.product-card__price-current {
    font-size:   var(--fs-sm);
    font-weight: 500;
    color:       var(--color-text-secondary);
}

.product-card__price-original {
    font-size:       var(--fs-xs);
    color:           var(--color-text-light);
    text-decoration: line-through;
}

/* Add to cart link */
.product-card__add-link {
    display:         inline-flex;
    align-items:     center;
    gap:             4px;
    margin-top:      var(--sp-2);
    font-size:       var(--fs-xs);
    font-weight:     600;
    color:           var(--color-brown-pale);
    text-decoration: none;
    border:          none;
    background:      none;
    cursor:          pointer;
    padding:         0;
    text-align:      left;
    transition:      gap var(--ease-fast), color var(--ease-fast);
    border-bottom:   1px solid var(--color-brown-pale);
    padding-bottom:  2px;
    width:           fit-content;
}

.product-card__add-link:hover {
    color: var(--color-brown-dark);
    border-bottom-color: var(--color-brown-dark);
    gap:   8px;
}

.product-card__add-link:disabled {
    color: var(--color-text-light);
    border-bottom-color: var(--color-text-light);
    cursor: not-allowed;
}

/* ============================================================
   11. TRUST STRIP - ICONS IN ROW
   ============================================================ */
.trust-strip {
    background: var(--color-cream-deep);
    padding:    var(--sp-10) 0;
}

.trust-strip__grid {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   var(--sp-6);
}

@media (min-width: 768px) {
    .trust-strip__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    text-align: center;
    padding:    var(--sp-4) var(--sp-2);
}

.trust-item__icon {
    width:           40px;
    height:          40px;
    margin:          0 auto var(--sp-3);
    color:           var(--color-brown-dark);
    display:         flex;
    align-items:     center;
    justify-content: center;
}

.trust-item__icon svg {
    width:  28px;
    height: 28px;
}

.trust-item__title {
    font-size:     var(--fs-sm);
    font-weight:   700;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-2);
}

.trust-item__text {
    font-size:   var(--fs-xs);
    color:       var(--color-text-muted);
    margin:      0;
    line-height: 1.6;
}

/* ============================================================
   12. CATEGORIES GRID
   ============================================================ */
.categories-section {
    padding:    var(--sp-16) 0;
    background: var(--color-cream);
}

.category-card {
    position:      relative;
    aspect-ratio:  3/4;
    overflow:      hidden;
    border-radius: var(--radius-md);
    background:    var(--color-cream-deep);
    display:       block;
    text-decoration: none;
    transition:    transform var(--ease-base);
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card__image {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card__image {
    transform: scale(1.06);
}

.category-card__overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        to top,
        rgba(45,30,15,0.75) 0%,
        rgba(45,30,15,0.15) 50%,
        rgba(45,30,15,0) 100%
    );
}

.category-card__content {
    position:   absolute;
    bottom:     var(--sp-5);
    left:       var(--sp-5);
    right:      var(--sp-5);
    z-index:    2;
}

.category-card__name {
    font-size:     var(--fs-xl);
    font-weight:   600;
    color:         var(--color-white);
    margin-bottom: var(--sp-1);
}

.category-card__count {
    font-size: var(--fs-xs);
    color:     rgba(255,255,255,0.85);
    font-weight: 400;
}

/* ============================================================
   13. SECTIONS BACKGROUNDS
   ============================================================ */
.featured-products,
.new-arrivals,
.section-cream {
    background: var(--color-cream);
}

.section-white { background: var(--color-white); }
.section-deep  { background: var(--color-cream-deep); }

/* Category section on home */
.category-section {
    padding:    var(--sp-12) 0;
}

.category-section__header {
    display:       flex;
    align-items:   center;
    justify-content: space-between;
    margin-bottom: var(--sp-6);
    gap:           var(--sp-4);
}

.category-section__title {
    font-size:   var(--fs-xl);
    font-weight: 700;
    color:       var(--color-text-primary);
    margin:      0;
}

.category-section__link {
    font-size:       var(--fs-xs);
    font-weight:     600;
    color:           var(--color-brown-pale);
    text-decoration: none;
    display:         flex;
    align-items:     center;
    gap:             var(--sp-1);
    transition:      gap var(--ease-fast), color var(--ease-fast);
    padding-bottom:  2px;
    border-bottom:   1px solid var(--color-brown-pale);
}

.category-section__link:hover {
    color: var(--color-brown-dark);
    border-bottom-color: var(--color-brown-dark);
    gap:   var(--sp-2);
}

/* ============================================================
   14. MAKEUP BANNER
   ============================================================ */
.makeup-banner {
    background: var(--color-cream-deep);
    padding:    var(--sp-16) 0;
    position:   relative;
    overflow:   hidden;
}

.makeup-banner__inner {
    display:       grid;
    grid-template-columns: 1fr;
    gap:           var(--sp-10);
    align-items:   center;
}

@media (min-width: 768px) {
    .makeup-banner__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.makeup-banner__content {
    text-align: center;
}

@media (min-width: 768px) {
    .makeup-banner__content { text-align: left; }
}

.makeup-banner__eyebrow {
    font-size:      var(--fs-xs);
    font-weight:    600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color:          var(--color-brown-pale);
    margin-bottom:  var(--sp-3);
    display:        block;
}

.makeup-banner__title {
    font-size:     clamp(1.5rem, 3vw, var(--fs-3xl));
    font-weight:   700;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-4);
    line-height:   1.15;
}

.makeup-banner__text {
    color:         var(--color-text-secondary);
    margin-bottom: var(--sp-6);
    line-height:   1.75;
    max-width:     480px;
}

@media (max-width: 767px) {
    .makeup-banner__text { margin-left: auto; margin-right: auto; }
}

.makeup-banner__actions {
    display:     flex;
    gap:         var(--sp-3);
    flex-wrap:   wrap;
}

@media (max-width: 767px) {
    .makeup-banner__actions { justify-content: center; }
}

.makeup-banner__image {
    width:         100%;
    aspect-ratio:  4/5;
    object-fit:    cover;
    border-radius: var(--radius-lg);
    box-shadow:    var(--shadow-lg);
    max-width:     420px;
    margin:        0 auto;
}

/* ============================================================
   15. PRODUCT DETAIL
   ============================================================ */
.product-detail {
    padding: var(--sp-8) 0 var(--sp-12);
}

.product-detail__grid {
    display: grid;
    gap:     var(--sp-8);
    align-items: start;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .product-detail__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--sp-8);
    }
}

@media (min-width: 1024px) {
    .product-detail__grid {
        grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
        gap: var(--sp-12);
    }
}

/* Gallery - responsive sizing */
.product-gallery {
    position: relative;
}

@media (min-width: 1024px) {
    .product-gallery {
        position: sticky;
        top:      calc(var(--navbar-height) + var(--sp-6));
        align-self: start;
    }
}

.product-gallery__main {
    overflow:      hidden;
    background:    var(--color-cream-deep);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-3);
    width:         100%;
    aspect-ratio:  1 / 1;
    max-height:    500px;
}

@media (min-width: 768px) {
    .product-gallery__main {
        aspect-ratio: 3 / 4;
        max-height:   550px;
    }
}

@media (min-width: 1024px) {
    .product-gallery__main {
        aspect-ratio: 3 / 4;
        max-height:   600px;
    }
}

.product-gallery__main img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    cursor:     zoom-in;
    transition: opacity 0.3s ease;
}

.product-gallery__main img:hover { transform: scale(1.04); }

.product-gallery__thumbs {
    display:               grid;
    grid-template-columns: repeat(5, 1fr);
    gap:                   var(--sp-2);
}

.product-gallery__thumb {
    aspect-ratio:  1;
    overflow:      hidden;
    border:        2px solid transparent;
    cursor:        pointer;
    background:    var(--color-cream-deep);
    transition:    border-color var(--ease-fast);
    border-radius: var(--radius-sm);
}

.product-gallery__thumb img {
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.product-gallery__thumb:hover { border-color: var(--color-brown-pale); }
.product-gallery__thumb.active { border-color: var(--color-brown-dark); }

/* Product info */
.product-info__category {
    font-size:      var(--fs-xs);
    font-weight:    600;
    color:          var(--color-brown-pale);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom:  var(--sp-3);
    display:        block;
}

.product-info__name {
    font-size:     clamp(1.5rem, 3vw, var(--fs-3xl));
    font-weight:   700;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-4);
    line-height:   1.2;
    letter-spacing: -0.01em;
}

.product-info__price {
    display:        flex;
    align-items:    baseline;
    gap:            var(--sp-3);
    margin-bottom:  var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom:  1px solid var(--color-border-light);
}

.product-info__price-current {
    font-size:   var(--fs-2xl);
    font-weight: 700;
    color:       var(--color-text-primary);
}

.product-info__price-original {
    font-size:       var(--fs-lg);
    color:           var(--color-text-light);
    text-decoration: line-through;
}

.product-info__price-save {
    font-size:     var(--fs-xs);
    font-weight:   600;
    color:         var(--color-error);
    background:    var(--color-error-light);
    padding:       0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

/* Variations */
.product-info__variations { margin-bottom: var(--sp-6); }

.variation-label {
    font-size:     var(--fs-sm);
    font-weight:   600;
    color:         var(--color-text-primary);
    margin-bottom: var(--sp-3);
    display:       block;
}

.variation-label span {
    font-weight: 400;
    color:       var(--color-text-secondary);
}

.size-options {
    display:        flex;
    flex-wrap:      wrap;
    gap:            var(--sp-2);
    margin-bottom:  var(--sp-5);
}

.size-btn {
    min-width:     44px;
    height:        44px;
    padding:       0 var(--sp-3);
    border:        1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size:     var(--fs-sm);
    font-weight:   500;
    color:         var(--color-text-primary);
    background:    var(--color-white);
    cursor:        pointer;
    transition:    all var(--ease-fast);
}

.size-btn:hover {
    border-color: var(--color-brown-pale);
    color:        var(--color-brown-dark);
}

.size-btn.active {
    border-color: var(--color-brown-dark);
    background:   var(--color-brown-dark);
    color:        var(--color-white);
}

.size-btn.out-of-stock {
    color:      var(--color-text-light);
    background: var(--color-cream-deep);
    cursor:     not-allowed;
    position:   relative;
}

.size-btn.out-of-stock::after {
    content:    '';
    position:   absolute;
    top:        50%;
    left:       10%;
    right:      10%;
    height:     1px;
    background: var(--color-text-light);
    transform:  rotate(-20deg);
}

/* Color swatches */
.color-options {
    display:       flex;
    flex-wrap:     wrap;
    gap:           var(--sp-2);
    margin-bottom: var(--sp-5);
}

.color-swatch {
    width:         32px;
    height:        32px;
    border-radius: var(--radius-full);
    border:        3px solid transparent;
    cursor:        pointer;
    transition:    all var(--ease-fast);
    box-shadow:    inset 0 0 0 1px rgba(0,0,0,0.1);
    position:      relative;
}

.color-swatch:hover { transform: scale(1.15); }

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--color-white),
                0 0 0 4px var(--color-brown-dark);
}

/* Quantity */
.quantity-selector {
    display:        flex;
    align-items:    center;
    border:         1px solid var(--color-border);
    border-radius:  var(--radius-full);
    width:          fit-content;
    margin-bottom:  var(--sp-6);
    overflow:       hidden;
}

.quantity-btn {
    width:       40px;
    height:      40px;
    background:  var(--color-cream-light);
    border:      none;
    font-size:   var(--fs-md);
    color:       var(--color-text-primary);
    cursor:      pointer;
    display:     flex;
    align-items: center;
    justify-content: center;
    transition:  background var(--ease-fast);
}

.quantity-btn:hover {
    background: var(--color-cream-deep);
}

.quantity-input {
    width:        50px;
    height:       40px;
    border:       none;
    text-align:   center;
    font-size:    var(--fs-sm);
    font-weight:  600;
    color:        var(--color-text-primary);
    outline:      none;
    background:   var(--color-white);
}

/* Actions */
.product-info__actions {
    display:       grid;
    gap:           var(--sp-3);
    margin-bottom: var(--sp-6);
}

@media (min-width: 480px) {
    .product-info__actions { grid-template-columns: 1fr auto; }
}

.product-info__description {
    padding-top:  var(--sp-6);
    border-top:   1px solid var(--color-border-light);
    margin-bottom: var(--sp-6);
}

.product-info__description h4 {
    font-size:     var(--fs-sm);
    font-weight:   600;
    margin-bottom: var(--sp-3);
}

.product-info__description p {
    font-size:   var(--fs-sm);
    line-height: 1.8;
    color:       var(--color-text-secondary);
}

/* ============================================================
   16. CART PAGE
   ============================================================ */
.cart-page {
    padding:    var(--sp-10) 0 var(--sp-12);
    min-height: 60vh;
}

.cart-page__grid { display: grid; gap: var(--sp-8); }

@media (min-width: 1024px) {
    .cart-page__grid { grid-template-columns: 1fr 380px; align-items: start; }
}

.cart-table {
    width:           100%;
    border-collapse: separate;
    border-spacing:  0;
    background:      var(--color-white);
    border-radius:   var(--radius-md);
    overflow:        hidden;
}

.cart-table th {
    font-size:      var(--fs-xs);
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color:          var(--color-text-muted);
    padding:        var(--sp-3) var(--sp-4);
    border-bottom:  1px solid var(--color-border);
    text-align:     left;
    background:     var(--color-cream-light);
}

.cart-table td {
    padding:        var(--sp-4);
    border-bottom:  1px solid var(--color-border-light);
    vertical-align: middle;
}

.cart-table tr:last-child td { border-bottom: none; }

.cart-item__image {
    width:         80px;
    height:        100px;
    object-fit:    cover;
    border-radius: var(--radius-sm);
}

.cart-item__name {
    font-size:     var(--fs-sm);
    font-weight:   600;
    margin-bottom: var(--sp-1);
}

.cart-item__meta {
    font-size: var(--fs-xs);
    color:     var(--color-text-muted);
}

.cart-item__price {
    font-weight: 600;
    color:       var(--color-text-primary);
    white-space: nowrap;
}

.cart-item__remove {
    background:    none;
    border:        none;
    color:         var(--color-text-light);
    cursor:        pointer;
    padding:       var(--sp-2);
    border-radius: var(--radius-full);
    transition:    all var(--ease-fast);
    display:       flex;
}

.cart-item__remove:hover {
    color:      var(--color-error);
    background: var(--color-error-light);
}

/* Cart summary */
.cart-summary {
    background:    var(--color-cream-deep);
    padding:       var(--sp-6);
    border-radius: var(--radius-md);
    position:      sticky;
    top:           calc(var(--navbar-height) + var(--sp-6));
}

.cart-summary__title {
    font-size:      var(--fs-lg);
    font-weight:    700;
    margin-bottom:  var(--sp-5);
    padding-bottom: var(--sp-4);
    border-bottom:  1px solid var(--color-border);
}

.cart-summary__row {
    display:         flex;
    justify-content: space-between;
    padding:         var(--sp-2) 0;
    font-size:       var(--fs-sm);
}

.cart-summary__row--total {
    border-top:  2px solid var(--color-brown-dark);
    margin-top:  var(--sp-3);
    padding-top: var(--sp-4);
    font-weight: 700;
    font-size:   var(--fs-base);
}

.cart-summary__label { color: var(--color-text-secondary); }
.cart-summary__value { font-weight: 600; color: var(--color-text-primary); }

.cart-summary__note {
    font-size:  var(--fs-xs);
    color:      var(--color-text-muted);
    margin-top: var(--sp-4);
    text-align: center;
}

.cart-empty {
    text-align: center;
    padding:    var(--sp-20) var(--sp-6);
    background: var(--color-white);
    border-radius: var(--radius-md);
}

.cart-empty__icon {
    width:  64px;
    height: 64px;
    margin: 0 auto var(--sp-4);
    color:  var(--color-text-light);
    opacity: 0.4;
}

.cart-empty__title {
    font-size:     var(--fs-xl);
    font-weight:   600;
    color:         var(--color-text-secondary);
    margin-bottom: var(--sp-3);
}

/* ============================================================
   17. CHECKOUT PAGE
   ============================================================ */
.checkout-page { padding: var(--sp-10) 0 var(--sp-12); }

.checkout-page__grid { display: grid; gap: var(--sp-8); }

@media (min-width: 1024px) {
    .checkout-page__grid { grid-template-columns: 1fr 400px; align-items: start; }
}

.checkout-card {
    background:    var(--color-white);
    padding:       var(--sp-6);
    margin-bottom: var(--sp-6);
    border-radius: var(--radius-md);
}

.checkout-card__title {
    font-size:      var(--fs-lg);
    font-weight:    700;
    margin-bottom:  var(--sp-5);
    padding-bottom: var(--sp-4);
    border-bottom:  1px solid var(--color-border-light);
    display:        flex;
    align-items:    center;
    gap:            var(--sp-3);
}

.checkout-step-number {
    width:           28px;
    height:          28px;
    background:      var(--color-brown-dark);
    color:           var(--color-white);
    border-radius:   var(--radius-full);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       var(--fs-xs);
    font-weight:     700;
    flex-shrink:     0;
}

/* Delivery options */
.delivery-option {
    border:         1px solid var(--color-border);
    border-radius:  var(--radius-md);
    padding:        var(--sp-4);
    margin-bottom:  var(--sp-3);
    cursor:         pointer;
    transition:     all var(--ease-fast);
    display:        flex;
    align-items:    flex-start;
    gap:            var(--sp-3);
}

.delivery-option:hover { border-color: var(--color-brown-pale); background: var(--color-cream-light); }
.delivery-option.selected { border-color: var(--color-brown-dark); background: var(--color-cream-light); }

.delivery-option input[type="radio"] {
    accent-color: var(--color-brown-dark);
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.delivery-option__name { font-weight: 600; font-size: var(--fs-sm); margin-bottom: var(--sp-1); }
.delivery-option__meta { font-size: var(--fs-xs); color: var(--color-text-muted); }
.delivery-option__fee {
    margin-left: auto;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--color-brown-dark);
    white-space: nowrap;
}

/* Payment */
.payment-option {
    border:         1px solid var(--color-border);
    border-radius:  var(--radius-md);
    padding:        var(--sp-4);
    margin-bottom:  var(--sp-3);
    cursor:         pointer;
    transition:     all var(--ease-fast);
    display:        flex;
    align-items:    center;
    gap:            var(--sp-3);
}

.payment-option:hover { border-color: var(--color-brown-pale); }
.payment-option.selected { border-color: var(--color-brown-dark); background: var(--color-cream-light); }
.payment-option input[type="radio"] { accent-color: var(--color-brown-dark); width: 18px; height: 18px; }

/* Checkout summary */
.checkout-summary {
    background:    var(--color-cream-deep);
    padding:       var(--sp-6);
    border-radius: var(--radius-md);
    position:      sticky;
    top:           calc(var(--navbar-height) + var(--sp-6));
}

.checkout-summary__title {
    font-size:      var(--fs-lg);
    font-weight:    700;
    margin-bottom:  var(--sp-5);
    padding-bottom: var(--sp-4);
    border-bottom:  1px solid var(--color-border);
}

.checkout-summary__item {
    display:       flex;
    gap:           var(--sp-3);
    padding:       var(--sp-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.checkout-summary__item:last-of-type { border-bottom: none; }

.checkout-summary__item-img {
    width:         60px;
    height:        75px;
    object-fit:    cover;
    border-radius: var(--radius-sm);
    flex-shrink:   0;
}

.checkout-summary__item-name  { font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--sp-1); }
.checkout-summary__item-meta  { font-size: var(--fs-xs); color: var(--color-text-muted); }
.checkout-summary__item-price { margin-left: auto; font-weight: 700; font-size: var(--fs-sm); white-space: nowrap; }

.checkout-summary__totals {
    margin-top:  var(--sp-4);
    padding-top: var(--sp-4);
    border-top:  1px solid var(--color-border);
}

.checkout-summary__row {
    display:         flex;
    justify-content: space-between;
    font-size:       var(--fs-sm);
    padding:         var(--sp-2) 0;
    color:           var(--color-text-secondary);
}

.checkout-summary__row--total {
    border-top:  2px solid var(--color-brown-dark);
    margin-top:  var(--sp-3);
    padding-top: var(--sp-3);
    font-weight: 700;
    font-size:   var(--fs-base);
    color:       var(--color-text-primary);
}

/* ============================================================
   18. CONFIRMATION PAGE
   ============================================================ */
.confirmation-page {
    padding:    var(--sp-16) 0;
    text-align: center;
    min-height: 70vh;
}

.confirmation-icon {
    width:           72px;
    height:          72px;
    background:      var(--color-success-light);
    border-radius:   var(--radius-full);
    display:         flex;
    align-items:     center;
    justify-content: center;
    margin:          0 auto var(--sp-5);
    color:           var(--color-success);
}

.confirmation-title { font-size: var(--fs-3xl); font-weight: 700; margin-bottom: var(--sp-3); }
.confirmation-number { font-size: var(--fs-lg); color: var(--color-brown-pale); font-weight: 700; margin-bottom: var(--sp-4); }
.confirmation-message { color: var(--color-text-secondary); max-width: 500px; margin: 0 auto var(--sp-8); }
.confirmation-actions { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-10); }

.confirmation-order-box {
    max-width:     600px;
    margin:        0 auto var(--sp-10);
    background:    var(--color-cream-deep);
    border-radius: var(--radius-md);
    padding:       var(--sp-6);
    text-align:    left;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-page { padding: var(--sp-10) 0 var(--sp-12); }

.contact-card {
    background:    var(--color-white);
    padding:       var(--sp-8);
    text-align:    center;
    border-radius: var(--radius-md);
    transition:    all var(--ease-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform:  translateY(-3px);
}

.contact-card__icon {
    width:           56px;
    height:          56px;
    background:      var(--color-cream-deep);
    border-radius:   var(--radius-full);
    display:         flex;
    align-items:     center;
    justify-content: center;
    margin:          0 auto var(--sp-4);
    color:           var(--color-brown-dark);
}

.contact-card__label {
    font-size:      var(--fs-xs);
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color:          var(--color-text-muted);
    margin-bottom:  var(--sp-2);
}

.contact-card__value {
    font-size:     var(--fs-lg);
    color:         var(--color-text-primary);
    font-weight:   600;
    margin-bottom: var(--sp-4);
}

.contact-location {
    background:    var(--color-cream-deep);
    padding:       var(--sp-8);
    margin-top:    var(--sp-8);
    border-radius: var(--radius-md);
}

/* ============================================================
   20. MAKEUP PAGE
   ============================================================ */
.makeup-page { padding: var(--sp-10) 0 var(--sp-12); }

.makeup-hero {
    background:    var(--color-cream-deep);
    padding:       var(--sp-16) 0;
    margin-bottom: var(--sp-12);
    border-radius: var(--radius-lg);
}

.makeup-hero__inner {
    display:     flex;
    align-items: center;
    gap:         var(--sp-10);
    padding:     0 var(--sp-6);
}

@media (max-width: 768px) {
    .makeup-hero__inner { flex-direction: column; text-align: center; }
}

.makeup-hero__photo {
    flex-shrink:   0;
    width:         280px;
    height:        360px;
    object-fit:    cover;
    border-radius: var(--radius-md);
    box-shadow:    var(--shadow-lg);
}

.makeup-hero__content { flex: 1; }

.makeup-gallery {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   var(--sp-4);
    margin-bottom:         var(--sp-12);
}

@media (min-width: 768px) { .makeup-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .makeup-gallery { grid-template-columns: repeat(4, 1fr); } }

.makeup-gallery__item {
    aspect-ratio:  1;
    overflow:      hidden;
    border-radius: var(--radius-md);
}

.makeup-gallery__item img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.makeup-gallery__item:hover img { transform: scale(1.08); }

.booking-section {
    background:    var(--color-cream-deep);
    padding:       var(--sp-12);
    border-radius: var(--radius-md);
}

.booking-divider {
    display:     flex;
    align-items: center;
    gap:         var(--sp-4);
    margin:      var(--sp-8) 0;
}

.booking-divider__line { flex: 1; height: 1px; background: var(--color-border); }

.booking-divider__text {
    font-size:      var(--fs-sm);
    font-weight:    600;
    color:          var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space:    nowrap;
}

/* ============================================================
   21. FILTER BAR
   ============================================================ */
.filter-bar {
    background:    var(--color-cream-light);
    border-bottom: 1px solid var(--color-border-light);
    padding:       var(--sp-4) 0;
    position:      sticky;
    top:           var(--navbar-height);
    z-index:       calc(var(--z-sticky) - 1);
}

.filter-bar__inner {
    display:     flex;
    align-items: center;
    gap:         var(--sp-4);
    flex-wrap:   wrap;
}

.filter-bar__tabs {
    display:     flex;
    align-items: center;
    gap:         var(--sp-2);
    flex-wrap:   wrap;
    flex:        1;
}

.filter-bar__tab {
    padding:        0.5rem 1.25rem;
    font-size:      var(--fs-xs);
    font-weight:    600;
    color:          var(--color-text-secondary);
    background:     var(--color-white);
    border:         1px solid var(--color-border-light);
    border-radius:  var(--radius-full);
    cursor:         pointer;
    transition:     all var(--ease-fast);
    white-space:    nowrap;
    text-decoration: none;
}

.filter-bar__tab:hover {
    border-color: var(--color-brown-pale);
    color:        var(--color-brown-dark);
}

.filter-bar__tab.active {
    background:   var(--color-brown-dark);
    border-color: var(--color-brown-dark);
    color:        var(--color-white);
}

.filter-bar__sort {
    display:     flex;
    align-items: center;
    gap:         var(--sp-2);
    flex-shrink: 0;
}

.filter-bar__sort-label {
    font-size:   var(--fs-xs);
    color:       var(--color-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.filter-bar__sort select {
    padding:       0.45rem 2rem 0.45rem 0.75rem;
    font-size:     var(--fs-sm);
    border:        1px solid var(--color-border);
    border-radius: var(--radius-full);
    background:    var(--color-white);
    color:         var(--color-text-primary);
    font-weight:   500;
    cursor:        pointer;
    outline:       none;
    min-width:     160px;
    -webkit-appearance: none;
    appearance:    none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238B7355' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat:   no-repeat;
    background-position: right 0.6rem center;
}

.filter-bar__count {
    font-size: var(--fs-sm);
    color:     var(--color-text-muted);
}

/* ============================================================
   22. BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: var(--sp-4) 0;
}

.breadcrumb__list {
    display:     flex;
    align-items: center;
    flex-wrap:   wrap;
    gap:         var(--sp-2);
}

.breadcrumb__item {
    display:     flex;
    align-items: center;
    gap:         var(--sp-2);
    font-size:   var(--fs-xs);
    color:       var(--color-text-muted);
    font-weight: 500;
}

.breadcrumb__item a {
    color: var(--color-text-muted);
    transition: color var(--ease-fast);
}

.breadcrumb__item a:hover { color: var(--color-brown-dark); }
.breadcrumb__item.active { color: var(--color-brown-dark); }
.breadcrumb__separator { color: var(--color-border); }

/* ============================================================
   23. PAGINATION
   ============================================================ */
.pagination {
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap:             var(--sp-2);
    margin-top:      var(--sp-10);
}

.pagination__btn {
    min-width:       40px;
    height:          40px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    border:          1px solid var(--color-border);
    border-radius:   var(--radius-full);
    font-size:       var(--fs-sm);
    font-weight:     600;
    color:           var(--color-text-primary);
    background:      var(--color-white);
    cursor:          pointer;
    transition:      all var(--ease-fast);
    text-decoration: none;
    padding:         0 var(--sp-3);
}

.pagination__btn:hover { border-color: var(--color-brown-dark); color: var(--color-brown-dark); }
.pagination__btn.active { background: var(--color-brown-dark); border-color: var(--color-brown-dark); color: var(--color-white); }
.pagination__btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ============================================================
   24. FOOTER - CREAM LIGHT
   ============================================================ */
.footer {
    background:  var(--color-cream-light);
    color:       var(--color-text-secondary);
    padding-top: var(--sp-16);
    border-top:  1px solid var(--color-border-light);
}

.footer__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   var(--sp-8);
    padding-bottom:        var(--sp-10);
    border-bottom:         1px solid var(--color-border-light);
}

@media (min-width: 768px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__logo {
    height:        44px;
    width:         auto;
    margin-bottom: var(--sp-4);
}

.footer__logo-text {
    font-size:     var(--fs-xl);
    font-weight:   600;
    font-style:    italic;
    color:         var(--color-brown-dark);
    margin-bottom: var(--sp-4);
}

.footer__brand-text {
    font-size:     var(--fs-sm);
    line-height:   1.75;
    color:         var(--color-text-muted);
    margin-bottom: var(--sp-5);
    max-width:     320px;
}

.footer__social {
    display:     flex;
    align-items: center;
    gap:         var(--sp-3);
}

.footer__social-link {
    width:           38px;
    height:          38px;
    border-radius:   var(--radius-full);
    border:          1px solid var(--color-border);
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           var(--color-text-muted);
    transition:      all var(--ease-fast);
}

.footer__social-link:hover {
    background:   var(--color-brown-dark);
    border-color: var(--color-brown-dark);
    color:        var(--color-white);
    transform:    translateY(-2px);
}

.footer__heading {
    font-size:      var(--fs-sm);
    font-weight:    700;
    color:          var(--color-text-primary);
    margin-bottom:  var(--sp-4);
}

.footer__links {
    display:        flex;
    flex-direction: column;
    gap:            var(--sp-3);
}

.footer__link {
    font-size:  var(--fs-sm);
    color:      var(--color-text-muted);
    transition: color var(--ease-fast);
}

.footer__link:hover { color: var(--color-brown-dark); }

.footer__contact-item {
    display:       flex;
    align-items:   flex-start;
    gap:           var(--sp-2);
    font-size:     var(--fs-sm);
    color:         var(--color-text-muted);
    margin-bottom: var(--sp-3);
}

.footer__contact-icon {
    color:       var(--color-brown-pale);
    flex-shrink: 0;
    margin-top:  2px;
}

.footer__bottom {
    padding:   var(--sp-5) 0;
    font-size: var(--fs-xs);
    color:     var(--color-text-light);
}

.footer__bottom-inner {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    flex-wrap:       wrap;
    gap:             var(--sp-3);
}

.footer__payment-note {
    display:     flex;
    align-items: center;
    gap:         var(--sp-2);
    font-size:   var(--fs-xs);
    color:       var(--color-text-light);
}

.footer__payment-dot {
    width:         6px;
    height:        6px;
    border-radius: var(--radius-full);
    background:    var(--color-brown-pale);
    flex-shrink:   0;
}

/* ============================================================
   25. SIMILAR PRODUCTS
   ============================================================ */
.similar-products {
    padding:    var(--sp-12) 0;
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--sp-12);
}

/* ============================================================
   26. UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-brown   { color: var(--color-brown-dark); }
.text-tan     { color: var(--color-brown-pale); }
.text-white   { color: var(--color-text-white); }
.text-muted   { color: var(--color-text-muted); }
.text-dark    { color: var(--color-text-primary); }
.text-sm      { font-size: var(--fs-sm); }
.text-xs      { font-size: var(--fs-xs); }
.text-lg      { font-size: var(--fs-lg); }
.text-bold    { font-weight: 700; }
.text-medium  { font-weight: 500; }

.bg-white   { background: var(--color-white); }
.bg-cream   { background: var(--color-cream); }
.bg-deep    { background: var(--color-cream-deep); }

.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--sp-4); }
.mt-8  { margin-top: var(--sp-8); }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-8  { margin-bottom: var(--sp-8); }

.d-none   { display: none; }
.d-block  { display: block; }
.d-flex   { display: flex; }
.w-full   { width: 100%; }

.divider {
    border:     none;
    border-top: 1px solid var(--color-border-light);
    margin:     var(--sp-6) 0;
}

/* ============================================================
   27. RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
    h1 { font-size: var(--fs-3xl); }
    h2 { font-size: var(--fs-2xl); }
    h3 { font-size: var(--fs-xl); }

    .navbar__inner {
        grid-template-columns: auto 1fr auto;
    }
}

@media (min-width: 768px) { .hide-tablet { display: none !important; } }
@media (min-width: 1024px) { .hide-desktop { display: none !important; } }