/* =========================================================
   TOKENS
========================================================= */
:root{
    --bg:#F8F5EF;
    --surface:#FFFFFF;
    --surface-2:#F2ECE4;

    --line:#E5DCCF;

    --amber:#C7853F;
    --amber-soft:#D89A56;

    --text:#2C241E;
    --text-light:#6B6259;

    --sale:#B85A36;
    --out:#A89D92;

    --radius:12px;

    --font-display:'Fraunces', serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-body);
    padding-top: 80px;
}

button{ font-family: inherit; cursor: pointer; }
input{ font-family: inherit; }

button:focus-visible, input:focus-visible, a:focus-visible{
  outline: 2px solid var(--amber-soft);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   HEADER - FIXED
========================================================= */
.site-header{
    background:rgba(248,245,239,.95);
    border-bottom:1px solid var(--line);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand{ display:flex; align-items:center; gap: 8px; }
.brand-mark{ color: var(--amber); font-size: 1.1rem; }
.brand-name{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.brand-name em{ font-style: italic; color: var(--amber-soft); font-weight: 400; }

/* =========================================================
   LOGO STYLES
========================================================= */

/* Header Logo */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Hero Logo */
.hero-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hide the star icon when using logo */
.brand .brand-mark {
  display: none;
}

/* Hide the text logo when using image logo */
.brand .brand-name {
  display: none;
}

/* Responsive logo */
@media (max-width: 700px) {
  .hero-logo {
    max-width: 170px;
  }
  .brand-logo {
    height: 32px;
  }
}

.cart-btn{
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s ease;
}
.cart-btn:hover{ border-color: var(--amber); }

.cart-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.cart-count{
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* =========================================================
   HERO - BALANCED & PROFESSIONAL
========================================================= */

.hero {
    position: relative;
    background: linear-gradient(145deg, #1a1410 0%, #2c1f16 40%, #1a1410 100%);
    padding: 50px 24px 55px;
    text-align: center;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* Subtle glow effects */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 133, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(216, 154, 86, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid rgba(216, 154, 86, 0.2);
    border-radius: 999px;
    color: var(--amber-soft);
    font-size: 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(216, 154, 86, 0.05);
}

/* Logo */
.hero-logo-wrapper {
    margin-bottom: 12px;
}

/* Tagline */
.hero-tagline {
    margin: 6px 0 10px;
    color: var(--amber-soft);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    font-family: var(--font-display);
}

/* Sub text */
.hero-sub {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-features div {
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hero-features div:hover {
    background: rgba(199, 133, 63, 0.1);
    border-color: rgba(199, 133, 63, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 700px) {
    .hero {
        padding: 35px 20px 40px;
        min-height: 320px;
        margin-bottom: 20px;
    }
    
    .hero-logo {
        max-width: 170px;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
        margin-bottom: 14px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-sub {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .hero-features {
        gap: 8px;
        margin-top: 18px;
    }
    
    .hero-features div {
        font-size: 0.7rem;
        padding: 5px 14px;
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   SEARCH BAR
========================================================= */

.search-section {
    max-width: 1100px;
    margin: 10px auto 30px;
    padding: 0 24px;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    max-width: 560px;
    margin: 0 auto;
    min-height: 58px;
}

.search-container:focus-within {
    border-color: var(--amber);
    box-shadow: 0 4px 20px rgba(199, 133, 63, 0.12);
    transform: translateY(-1px);
}

.search-icon {
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.7;
}

#searchInput {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 10px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    font-family: var(--font-body);
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
}

#searchInput::placeholder {
    color: var(--text-light);
    opacity: 0.7;
    font-weight: 400;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--amber);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.search-btn:hover {
    background: #d39a4f;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(199, 133, 63, 0.3);
}

.search-btn:active {
    transform: scale(0.95);
}

.search-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* Responsive */
@media (max-width: 700px) {
    .search-section {
        padding: 0 20px;
        margin: 0 auto 25px;
    }
    
    .search-container {
        padding: 6px 6px 6px 20px;
        border-radius: 50px;
        max-width: 100%;
        min-height: 50px;
    }
    
    #searchInput {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .search-icon {
        font-size: 0.85rem;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 0 16px;
        margin: 0 auto 20px;
    }
    
    .search-container {
        padding: 4px 4px 4px 16px;
        border-radius: 40px;
        min-height: 44px;
    }
    
    #searchInput {
        padding: 10px 6px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        width: 36px;
        height: 36px;
    }
    
    .search-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* =========================================================
   PRODUCT GRID
========================================================= */
.grid-wrap{ max-width: 1100px; margin: 24px auto 60px; padding: 0 24px; }
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.empty-state{ text-align:center; color: var(--text-light); padding: 40px 0; }

.p-card{
    position:relative;
    background:var(--surface);
    border:1px solid rgba(199,133,63,.18);
    border-radius:24px;
    padding:24px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 8px 20px rgba(44,36,30,.05);
}
.p-card:hover{
    transform:translateY(-6px);
    border-color:rgba(199,133,63,.4);
    box-shadow:0 20px 45px rgba(44,36,30,.10);
}
.p-card:hover{ border-color: var(--amber); }
.p-card.out-of-stock{ opacity: 0.55; }

.p-card-top{ display: flex; justify-content: space-between; gap: 10px; }
.p-brand{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 0 0 4px;
}
.p-name{
font-size:1.45rem;
font-weight:500;
line-height:1.2;
}
.p-notes{
font-size:.84rem;
line-height:1.7;
color:#AA9B8C;
}
.status-badge{
  font-size: 0.66rem;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: 999px;
  height: fit-content;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-badge.available{ background: rgba(201,138,62,0.15); color: var(--amber-soft); }
.status-badge.sale{ background: rgba(181,80,47,0.2); color: #e08b64; }
.status-badge.out{ background: rgba(90,80,72,0.3); color: var(--text-light); }

/* =========================================================
   SIZE BUTTONS
========================================================= */
.size-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 8px;
}

.size-btn{
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.1s ease;
  cursor: pointer;
}

.size-btn:hover:not(:disabled) {
  border-color: var(--amber);
  transform: translateY(-1px);
}

.size-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.size-btn.selected {
  border-color: var(--amber);
  background: rgba(199, 133, 63, 0.12);
  box-shadow: 0 0 0 2px var(--amber) inset;
}

/* the vial gauge — signature element */
.vial{
  width: 14px;
  height: 30px;
  border: 1px solid var(--text-light);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.vial-fill{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  transition: height 0.2s ease;
}
.size-ml{ font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-light); }
.size-price{ font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; }
.size-price .strike{ text-decoration: line-through; color: var(--text-light); font-size: 0.68rem; margin-right: 3px; }
.size-price .now{ color: var(--amber-soft); }

/* =========================================================
   CART ACTIONS - Select Size & Add to Cart
========================================================= */

/* Selected price display */
.selected-price {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--amber);
  margin: 12px 0 8px 0;
  font-family: var(--font-mono);
}

/* Cart actions container */
.cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

/* =========================================================
   SELECT SIZE BUTTON - Same as Add to Cart
========================================================= */
.select-size-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  background: var(--amber);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  opacity: 0.5;
  transition: all 0.15s ease;
}

.select-size-btn:hover {
  opacity: 0.6;
}

/* =========================================================
   ADD TO CART BUTTON
========================================================= */
.add-to-cart-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  background: var(--amber);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-body);
}

.add-to-cart-btn:hover {
  background: #d39a4f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199, 133, 63, 0.3);
}

.add-to-cart-btn:active {
  transform: scale(0.97);
}

/* =========================================================
   QUANTITY SELECTOR
========================================================= */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border-radius: 12px;
  padding: 4px 6px;
}

.qty-selector button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.qty-selector button:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: white;
}

.qty-display {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  text-align: center;
  color: var(--text-light);
  font-size: 0.78rem;
  padding: 30px 24px 60px;
}

/* =========================================================
   TOAST NOTIFICATION
========================================================= */
.toast {
  position: fixed;
  top: 80px;
  right: -400px;
  background: var(--surface);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 360px;
  min-width: 280px;
}

.toast.show {
  right: 24px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
}

.toast-message {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.toast-product-name {
  font-weight: 600;
  color: var(--amber);
}

@media (max-width: 600px) {
  .toast {
    right: -100%;
    max-width: calc(100vw - 32px);
    min-width: unset;
    padding: 14px 18px;
    top: 70px;
  }
  
  .toast.show {
    right: 16px;
    left: 16px;
    width: auto;
  }
  
  .toast-message {
    font-size: 0.85rem;
  }
}

/* =========================================================
   CART DRAWER
========================================================= */
.drawer-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}
.drawer-overlay.open{ opacity: 1; pointer-events: auto; }

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 31;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open{ transform: translateX(0); }

.drawer-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--bg);
}
.drawer-header h2{ 
  font-family: var(--font-display); 
  margin: 0; 
  font-size: 1.3rem; 
  font-weight: 600;
}
.drawer-close{
  background: none; 
  border: none; 
  color: var(--text-light); 
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
}
.drawer-close:hover{ color: var(--text); }

.drawer-body{
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   CART ITEMS
========================================================= */
.cart-empty-msg{ 
  color: var(--text-light); 
  font-size: 0.95rem; 
  text-align: center; 
  margin: 40px 0; 
}

.cart-item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info .ci-name{ 
  font-family: var(--font-display); 
  font-size: 0.95rem; 
  font-weight: 500;
  margin: 0 0 2px; 
  color: var(--text);
}

.cart-item-info .ci-size{ 
  font-family: var(--font-mono); 
  font-size: 0.75rem; 
  color: var(--text-light);
  margin: 0;
}

.cart-item-right{ 
  text-align: right; 
  display: flex; 
  flex-direction: column; 
  align-items: flex-end; 
  gap: 6px; 
  flex-shrink: 0;
}

.ci-price{ 
  font-family: var(--font-mono); 
  font-size: 0.9rem; 
  font-weight: 600;
  color: var(--amber);
}

.qty-stepper{ 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.qty-stepper button{
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-stepper button:hover{ 
  border-color: var(--amber);
  background: var(--amber);
  color: white;
}

.qty-stepper span{ 
  font-family: var(--font-mono); 
  font-size: 0.9rem; 
  font-weight: 500;
  min-width: 20px; 
  text-align: center; 
}

.ci-remove{
  background: none; 
  border: none; 
  color: var(--text-light); 
  font-size: 0.7rem;
  text-decoration: underline; 
  padding: 0;
  cursor: pointer;
}
.ci-remove:hover{ color: var(--sale); }

/* =========================================================
   DELIVERY SECTION
========================================================= */
.delivery-section{ 
  margin-top: 24px; 
}

.delivery-section h3{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin: 0 0 12px;
  font-weight: 600;
}

.delivery-option{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.delivery-option:hover{ border-color: var(--amber); }

.delivery-option input{ 
  accent-color: var(--amber);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.delivery-label{ 
  flex: 1; 
  font-size: 0.85rem;
  color: var(--text);
}

.delivery-price{ 
  font-family: var(--font-mono); 
  font-size: 0.85rem; 
  color: var(--amber-soft);
  font-weight: 500;
}

/* =========================================================
   CUSTOMER DETAILS SECTION
========================================================= */
.customer-section{ 
  margin-top: 24px; 
}

.customer-section h3{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin: 0 0 12px;
  font-weight: 600;
}

.customer-section input{
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}

.customer-section input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(199, 133, 63, 0.15);
}

.customer-section input::placeholder{ 
  color: var(--text-light); 
}

.required-note {
  font-size: 0.7rem;
  color: var(--text-light);
  margin: 4px 0 0 0;
  font-style: italic;
}

/* =========================================================
   DRAWER SUMMARY - AT THE END
========================================================= */
.drawer-summary{
  border-top: 1px solid var(--line);
  padding: 16px 24px 20px;
  background: var(--surface);
  flex-shrink: 0;
}

.summary-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 4px 0;
}

.summary-row .label {
  font-weight: 400;
}

.summary-row .value {
  font-family: var(--font-mono);
  font-weight: 500;
}

.summary-row.total-row{
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.summary-row.total-row .value {
  color: var(--amber);
  font-size: 1.1rem;
}

.action-buttons{ 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-top: 14px; 
}

.btn{
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-body);
}

.btn-primary{
  background: var(--amber);
  color: white;
}

.btn-primary:hover{
  background: #d39a4f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199, 133, 63, 0.25);
}

.btn-secondary{ 
  background: transparent; 
  border: 1px solid var(--line); 
  color: var(--text); 
}

.btn-secondary:hover{ 
  border-color: var(--amber);
  background: rgba(199, 133, 63, 0.05);
}

.copy-confirm{ 
  text-align: center; 
  color: var(--amber-soft); 
  font-size: 0.78rem; 
  margin: 8px 0 0; 
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 650px) {
  .filter-bar {
    justify-content: center;
  }
  .search-group {
    max-width: none;
  }
  
  .cart-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .qty-selector {
    flex: 1;
    justify-content: center;
  }
  
  .add-to-cart-btn {
    flex: 2;
    min-width: 120px;
  }
  
  .select-size-btn {
    flex: 2;
    min-width: 120px;
  }
  
  .cart-drawer {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .size-row {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  
  .drawer-header {
    padding: 14px 18px;
  }
  
  .drawer-body {
    padding: 16px 18px;
  }
  
  .drawer-summary {
    padding: 14px 18px 16px;
  }
}