*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

html,body{
  width:100%;
  overflow-x:hidden;
  background:#f8f3ef;
  color:#222;
}

/* Offer bar */
.offer-bar{
  background:#4b0f16;
  color:white;
  padding:8px 0;
  font-size:15px;
  font-weight:bold;
}

/* Header */
.header{
  background:#fffaf4;
  padding:18px 5%;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:1000;
}

.top-header{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}

.search-icon{
  font-size:24px;
  color:#111;
}

.logo{
  text-align:center;
  font-size:38px;
  color:#d4af37;
  font-weight:bold;
}

.header-icons{
  justify-self:end;
  display:flex;
  gap:22px;
}

.header-icons i{
  color:#111;
  font-size:22px;
}

.nav{
  display:flex;
  justify-content:center;
  gap:45px;
  margin-top:18px;
}

.nav a{
  color:#333;
  font-size:20px;
  text-decoration:none;
  font-weight:600;
}

/* Banner */
.hero-banner img{
  width:100%;
  height:auto;
  display:block;
}

/* Sections */
.categories,
.shop,
.about,
.contact,
.video-section,
.maternity-section{
  padding:60px 8%;
  text-align:center;
  background:#f8f3ef;
}

.categories h2,
.shop h2,
.video-section h2,
.trending-heading,
.maternity-section h2{
  font-size:38px;
  color:#000;
  margin-bottom:30px;
}

/* Category */
.category-box{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.category-box div{
  background:#fffaf4;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  font-weight:bold;
}

/* Videos */
.video-grid{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:nowrap;
}

.video-grid video{
  width:48%;
  max-width:250px;
  height:400px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.18);
}

/* Product grid */
.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.product-card{
  background:#fffaf4;
  border:1px solid #e8d9ce;
  border-radius:16px;
  padding:10px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
  width:100%;
  height:280px;
  object-fit:contain;
  object-position:center;
  background:white;
  border-radius:12px;
}

.product-card h3,
.product-info h3{
  font-size:16px;
  margin:8px 0;
}

.discount{
  color:#0a8f2f;
  font-size:15px;
  font-weight:bold;
}

.old-price{
  color:#999;
  text-decoration:line-through;
  font-size:13px;
  margin-right:6px;
}

.new-price{
  color:#111;
  font-size:20px;
  font-weight:700;
}

.price{
  font-size:20px;
  font-weight:600;
}

/* Trending slider */
.trending-section{
  padding:50px 0;
  background:#f8f3ef;
  overflow:hidden;
  text-align:center;
}

.trending-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scrollProducts 25s linear infinite;
}

.trending-track:hover{
  animation-play-state:paused;
}

.trending-card{
  min-width:220px;
  background:#fffaf4;
  border:1px solid #e8d9ce;
  border-radius:14px;
  padding:10px;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.trending-card img{
  width:100%;
  height:280px;
  object-fit:contain;
  background:white;
  border-radius:10px;
}

.trending-card h3{
  font-size:16px;
  margin-top:10px;
}

@keyframes scrollProducts{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Product details page */
.product-details{
  display:flex;
  gap:50px;
  padding:70px 8%;
  background:#fffaf4;
  align-items:center;
}

.product-image{
  width:50%;
  text-align:center;
}

.product-image img{
  width:100%;
  max-width:480px;
  height:620px;
  object-fit:contain;
  background:white;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.product-info-box{
  width:50%;
}

.product-info-box h1{
  font-size:38px;
  margin-bottom:15px;
}

.product-info-box h2{
  font-size:30px;
  color:#0a8f35;
  margin-bottom:20px;
}

#checkoutBtn{
  background:#d4af37;
  color:#111;
  padding:15px 30px;
  border:none;
  border-radius:8px;
  font-weight:bold;
  font-size:17px;
  cursor:pointer;
}

/* Footer */
footer{
  background:#111;
  color:white;
  padding:30px;
  text-align:center;
}


/* Mobile */
@media(max-width:768px){
  .logo{
    font-size:28px;
  }

  .nav{
    gap:18px;
    flex-wrap:wrap;
  }

  .nav a{
    font-size:15px;
  }

  .categories,
  .shop,
  .about,
  .contact,
  .video-section,
  .maternity-section{
    padding:40px 4%;
  }

  .category-box{
    grid-template-columns:repeat(2,1fr);
  }

  .products{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .product-card img{
    height:180px;
  }

  .product-card h3,
  .product-info h3{
    font-size:13px;
  }

  .new-price{
    font-size:16px;
  }

  .video-grid video{
    width:48%;
    height:280px;
  }

  .trending-card{
    min-width:150px;
  }

  .trending-card img{
    height:180px;
  }

  .trending-track{
    animation-duration:18s;
  }

  .product-details{
    flex-direction:column;
  }

  .product-image,
  .product-info-box{
    width:100%;
  }

  .product-image img{
    height:450px;
  }
}
/* BLACK TOP STRIP */
.offer-bar{
  background:#111 !important;
  color:#fff !important;
  padding:8px 0 !important;
  font-size:15px !important;
  font-weight:bold !important;
}
.logo{
    font-family: Georgia, serif !important;
    font-size:48px !important;
    color:#111 !important;
    letter-spacing:3px;
}

.header{
    background:#fff !important;
}

.nav a{
    color:#111 !important;
    text-transform:uppercase;
    font-size:16px !important;
    letter-spacing:1px;
}
.search-box input{
  padding:10px 14px;
  width:220px;
  border:1px solid #ddd;
  border-radius:25px;
  outline:none;
}
.search-box{
  display:flex;
  align-items:center;
  gap:8px;
}

#clearSearch{
  border:none;
  background:#111;
  color:white;
  width:30px;
  height:30px;
  border-radius:50%;
  cursor:pointer;
}
.product-image{
    overflow:hidden;
    border-radius:18px;
}

.product-image img{
    transition:0.4s ease;
}

.product-image img:hover{
    transform:scale(1.15);
}
.active-size{
    background:#111 !important;
    color:white !important;
}
.thumb-gallery{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:18px;
}

.thumb-gallery img{
  width:80px;
  height:100px;
  object-fit:contain;
  border:1px solid #ddd;
  border-radius:8px;
  cursor:pointer;
  background:white;
}

.thumb-gallery img:hover{
  border:2px solid #111;
}
.product-card,
.trending-card{
  cursor:pointer;
}
.product-image{
    display:flex;
    flex-direction:column;
    align-items:center;
}

#productImage{
    width:100%;
    max-width:500px;
    height:600px;
    object-fit:contain;
    background:white;
}

.thumb-gallery{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:15px;
}

.thumb-gallery img{
    width:90px;
    height:110px;
    object-fit:cover;
    border:2px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    background:white;
}

.thumb-gallery img:hover{
    border:2px solid #111;
}
.product-info-box .thumb-gallery{
    display:none !important;
}
.product-image .thumb-gallery{
    display:flex !important;
    justify-content:center;
    gap:12px;
}
#productImage{
  cursor: zoom-in;
  transition: 0.3s;
}

#productImage:hover{
  transform: scale(1.03);
}

.thumb-gallery img{
  cursor:pointer;
  transition:0.3s;
}

.thumb-gallery img:hover{
  transform:scale(1.1);
  border:2px solid #d4af37;
}
.active-thumb{
  border:2px solid #d4af37 !important;
}
/* PREMIUM PRODUCT PAGE FIX */

.product-details{
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
  padding:70px 8%;
}

.product-image{
  background:#fffaf4;
  padding:20px;
  border-radius:20px;
}

#productImage{
  width:100%;
  height:650px;
  object-fit:contain;
  background:white;
  border-radius:16px;
}

.product-info-box{
  background:#fffaf4;
  padding:30px;
  border-radius:18px;
}

.product-info-box h1{
  font-size:42px;
  margin:12px 0;
}

.thumb-gallery{
  margin-top:18px;
}

.thumb-gallery img{
  width:85px;
  height:105px;
  object-fit:contain;
}

#checkoutBtn{
  width:100%;
  margin-top:20px;
  background:#111;
  color:white;
}

.related-products{
  padding:60px 8%;
  background:#f8f3ef;
}

.related-products h2{
  text-align:center;
  font-size:36px;
  margin-bottom:30px;
}

@media(max-width:768px){
  .product-details{
    grid-template-columns:1fr;
    gap:25px;
    padding:35px 4%;
  }

  #productImage{
    height:430px;
  }

  .product-info-box h1{
    font-size:28px;
  }
}
.reviews-section{
  padding:60px 8%;
  background:#fffaf4;
}

.reviews-section h2{
  text-align:center;
  margin-bottom:30px;
  font-size:34px;
}

.review-card{
  background:white;
  border:1px solid #e8d9ce;
  border-radius:14px;
  padding:20px;
  margin-bottom:15px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.review-card h4{
  margin-top:10px;
}
.faq-section{
  padding:60px 8%;
  background:#f8f3ef;
}

.faq-section h2{
  text-align:center;
  font-size:34px;
  margin-bottom:30px;
}

.faq-box{
  background:white;
  border:1px solid #e8d9ce;
  border-radius:12px;
  padding:20px;
  margin-bottom:15px;
}

.faq-box h3{
  margin-bottom:8px;
}
.size-guide-btn{
  margin-top:15px;
  color:#d4af37;
  cursor:pointer;
  font-weight:bold;
}

.size-popup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:9999;
}

.size-popup-content{
  background:white;
  width:90%;
  max-width:500px;
  margin:80px auto;
  padding:25px;
  border-radius:12px;
}

.close-size{
  float:right;
  font-size:28px;
  cursor:pointer;
}

.size-popup table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

.size-popup th,
.size-popup td{
  border:1px solid #ddd;
  padding:10px;
  text-align:center;
}
.shipping-section{
  padding:60px 8%;
  background:#fffaf4;
}

.shipping-section h2{
  text-align:center;
  font-size:34px;
  margin-bottom:30px;
}

.shipping-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.shipping-card{
  background:white;
  border:1px solid #e8d9ce;
  border-radius:14px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.shipping-card h3{
  margin-bottom:10px;
}

@media(max-width:768px){
  .shipping-grid{
    grid-template-columns:1fr;
  }
}
.mobile-sticky-buy{
  display:none;
}

@media(max-width:768px){
  .mobile-sticky-buy{
    display:flex;
    gap:10px;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:white;
    padding:10px;
    box-shadow:0 -3px 15px rgba(0,0,0,0.15);
    z-index:9999;
  }

  .mobile-sticky-buy button{
    flex:1;
    padding:15px;
    border:2px solid #111;
    border-radius:8px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
  }

  .mobile-add-cart{
    background:white;
    color:#111;
  }

  .mobile-buy-now{
    background:#111;
    color:white;
  }
}
.back-to-top{
  position:fixed;
  right:20px;
  bottom:85px;
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:#111;
  color:white;
  font-size:22px;
  cursor:pointer;
  z-index:9999;
}
.wishlist-box{
  margin:15px 0;
}

#wishlistBtn{
  background:#fff;
  border:1px solid #ddd;
  padding:12px 18px;
  border-radius:8px;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
}

#wishlistBtn:hover{
  background:#f8f3ef;
}
/* MOBILE HEADER FIX */

@media (max-width:768px){

.logo{
    font-size:32px !important;
    text-align:center;
    width:100%;
    display:block;
    margin:10px 0;
}

.header{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:10px;
}

.nav{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    width:100%;
    text-align:center;
    margin-top:10px;
}

.nav a{
    font-size:14px;
    font-weight:600;
}

.search-container,
.search-box{
    width:90%;
    margin:10px auto;
}

.search-box input{
    width:100%;
}

.hero-banner img,
.banner img{
    width:100%;
    height:auto;
    display:block;
}

}
/* PREMIUM MOBILE HEADER */

.mobile-menu-btn{
  display:none;
}

@media(max-width:768px){

  .top-header{
    display:grid;
    grid-template-columns:40px 1fr 70px;
    align-items:center;
    width:100%;
  }

  .mobile-menu-btn{
    display:block;
    font-size:28px;
    cursor:pointer;
  }

  .logo{
    font-size:28px !important;
    text-align:center;
    white-space:nowrap;
    overflow:visible;
  }

  .header-icons{
    display:flex;
    gap:14px;
    justify-content:flex-end;
  }

  .search-box{
    width:100%;
    margin-top:12px;
  }

  .search-box input{
    width:100%;
  }

  .nav{
    display:none;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:15px;
  }

  .nav.active{
    display:grid;
  }

  .nav a{
    font-size:16px !important;
    padding:10px;
    background:#fffaf4;
    border:1px solid #eee;
    border-radius:8px;
  }
}
.bottom-nav{
  display:none;
}

@media(max-width:768px){
  .bottom-nav{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:white;
    justify-content:space-around;
    padding:10px 0;
    box-shadow:0 -3px 15px rgba(0,0,0,0.15);
    z-index:9999;
    border-radius:18px 18px 0 0;
  }

  .bottom-nav a{
    text-decoration:none;
    color:#111;
    font-size:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:3px;
  }

  .bottom-nav span{
    font-size:11px;
    font-weight:bold;
  }

  body{
    padding-bottom:70px;
  }
}
.category-box div{
  cursor:pointer;
  transition:0.3s;
}

.category-box div:hover{
  transform:translateY(-5px);
  background:#111;
  color:white;
}
.product-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

#addToCartBtn,
.buy-now-btn{
  flex:1;
  min-width:0;
  padding:14px 10px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

#addToCartBtn{
  background:white;
  border:2px solid #111;
  color:#111;
}

.buy-now-btn{
  background:#111;
  color:white;
  border:2px solid #111;
}
.cart-page{
  padding:60px 8%;
}

.cart-page h1{
  text-align:center;
  margin-bottom:30px;
}

.cart-item{
  display:flex;
  gap:20px;
  background:white;
  padding:15px;
  border-radius:12px;
  margin-bottom:15px;
}

.cart-item img{
  width:100px;
  height:130px;
  object-fit:contain;
}

.cart-item button{
  padding:8px 14px;
  background:#111;
  color:white;
  border:none;
  border-radius:6px;
}
.checkout-form{
  margin-top:30px;
  background:white;
  padding:25px;
  border-radius:14px;
}

.checkout-form input,
.checkout-form textarea{
  width:100%;
  padding:14px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:8px;
}

.checkout-form textarea{
  height:100px;
}

.checkout-form button{
  width:100%;
  padding:15px;
  background:#111;
  color:white;
  border:none;
  border-radius:8px;
  font-weight:bold;
}
.cart-link{
  position:relative;
  color:#111;
}

#cartCount{
  position:absolute;
  top:-10px;
  right:-12px;
  background:#111;
  color:white;
  font-size:11px;
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}
.success-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#f8f3ef;
  padding:20px;
}

.success-page h1{
  font-size:38px;
  margin-bottom:15px;
}

.success-page a{
  margin-top:25px;
  background:#111;
  color:white;
  padding:14px 25px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}
.admin-page{
  padding:60px 8%;
  background:#f8f3ef;
  min-height:100vh;
}

.admin-page h1{
  text-align:center;
  margin-bottom:30px;
}

.admin-card{
  background:white;
  padding:25px;
  border-radius:14px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.admin-product{
  display:flex;
  gap:15px;
  margin:15px 0;
  padding:12px;
  border:1px solid #eee;
  border-radius:10px;
}

.admin-product img{
  width:90px;
  height:110px;
  object-fit:contain;
}
/* PREMIUM CART PAGE */

.cart-page{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.cart-page h1{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.cart-item{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.cart-item img{
    width:140px;
    height:180px;
    object-fit:cover;
    border-radius:12px;
}

.cart-item h3{
    font-size:22px;
    margin-bottom:10px;
}

.cart-item p{
    font-size:18px;
    font-weight:600;
}

.cart-item button{
    margin-top:10px;
    background:#111;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
}

#cartTotal{
    color:#111;
    font-size:32px;
    font-weight:bold;
}

.checkout-form{
    margin-top:40px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.checkout-form h2{
    margin-bottom:20px;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.checkout-form button{
    width:100%;
    background:#111;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

@media(max-width:768px){

    .cart-item{
        flex-direction:column;
        text-align:center;
    }

    .cart-item img{
        width:220px;
        height:auto;
    }

    .cart-page h1{
        font-size:30px;
    }
}
.checkout-form select{
  width:100%;
  padding:15px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:10px;
}
#paymentMethod{
  font-size:16px;
  background:white;
  cursor:pointer;
}
.order-summary{
  background:white;
  padding:25px;
  border-radius:15px;
  margin:25px 0;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.summary-row{
  display:flex;
  justify-content:space-between;
  margin:12px 0;
}

.total-row{
  font-size:22px;
  font-weight:bold;
}
.coupon-box{
  display:flex;
  gap:10px;
  margin:20px 0;
}

.coupon-box input{
  flex:1;
  padding:13px;
  border:1px solid #ddd;
  border-radius:8px;
}

.coupon-box button{
  padding:13px 20px;
  background:#111;
  color:white;
  border:none;
  border-radius:8px;
}

.checkout-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header-btn{
  background:#111;
  color:white;
  padding:11px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

.checkout-page{
  min-height:calc(100vh - 80px);
  background:#f8f3ef;
  padding:42px 8% 70px;
}

.checkout-title{
  max-width:1100px;
  margin:0 auto 24px;
}

.checkout-title p{
  color:#8a6a19;
  font-weight:bold;
  text-transform:uppercase;
  font-size:13px;
}

.checkout-title h1{
  margin-top:6px;
  font-size:38px;
  color:#111;
}

.checkout-layout{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap:24px;
  align-items:start;
}

.checkout-panel{
  background:white;
  border:1px solid #eadfd6;
  border-radius:14px;
  padding:26px;
  box-shadow:0 8px 24px rgba(0,0,0,0.07);
}

.checkout-section-heading{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:22px;
}

.checkout-section-heading span{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:white;
  border-radius:50%;
  font-weight:bold;
  flex:0 0 auto;
}

.checkout-section-heading h2{
  font-size:22px;
  margin-bottom:4px;
}

.checkout-section-heading p{
  color:#666;
  font-size:14px;
}

.checkout-details label{
  display:block;
  margin:14px 0 7px;
  font-weight:bold;
  color:#222;
}

.checkout-details input,
.checkout-details textarea,
.checkout-details select{
  width:100%;
  border:1px solid #d9d1ca;
  border-radius:10px;
  padding:14px;
  font-size:15px;
  background:#fff;
  outline:none;
}

.checkout-details textarea{
  min-height:115px;
  resize:vertical;
}

.checkout-details input:focus,
.checkout-details textarea:focus,
.checkout-details select:focus{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(17,17,17,0.08);
}

.checkout-payment-box{
  margin-top:18px;
  padding:18px;
  background:#fffaf4;
  border:1px solid #e5d6ca;
  border-radius:14px;
}

.payment-box-title{
  margin-bottom:14px;
}

.payment-box-title h3{
  font-size:20px;
  margin-bottom:4px;
}

.payment-box-title p{
  color:#666;
  font-size:14px;
}

.payment-options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.payment-option{
  min-height:62px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border:1px solid #d9d1ca;
  border-radius:10px;
  background:#fff;
  color:#111;
  font-weight:bold;
  cursor:pointer;
  text-align:left;
}

.payment-option.active{
  border-color:#111;
  background:#fff;
  box-shadow:0 0 0 3px rgba(17,17,17,0.08);
}

.payment-option.disabled{
  opacity:0.45;
  cursor:not-allowed;
}

.payment-option:disabled,
.payment-option.disabled{
  pointer-events:auto;
}

.premium-checkout-page .payment-option.disabled:hover,
.payment-option:disabled:hover{
  transform:none;
}

.payment-option span:last-child{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.payment-option small{
  color:#666;
  font-size:12px;
  font-weight:600;
}

.upi-app-chips{
  display:flex;
  flex-direction:row !important;
  flex-wrap:wrap;
  gap:5px;
  margin-top:7px;
}

.upi-app-chips em{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:4px 7px;
  border-radius:999px;
  background:#f6f7f3;
  border:1px solid #dfe5ec;
  color:#27364a;
  font-size:11px;
  font-style:normal;
  font-weight:900;
}

.upi-app-chips em:hover{
  border-color:#111;
  background:white;
}

.brand-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
  align-items:center;
}

.brand-chips.compact{
  gap:5px;
  margin-top:7px;
}

.brand-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:24px;
  padding:4px 8px;
  border-radius:6px;
  border:1px solid #dde3ea;
  background:#fff;
  color:#111;
  font-size:10px;
  font-weight:900;
  font-style:normal;
  letter-spacing:0;
  box-shadow:0 3px 10px rgba(18, 24, 32, 0.08);
}

.phonepe-logo{
  color:#fff !important;
  background:#5f259f !important;
  border-color:#5f259f !important;
}

.gpay-logo{
  color:#1a73e8 !important;
  background:linear-gradient(90deg, #fff 0 52%, #e6f4ea 52% 100%) !important;
  border-color:#d9e7ff !important;
}

.paytm-logo{
  color:#00baf2 !important;
  background:#f4fbff !important;
  border-color:#c9ecfb !important;
}

.visa-logo{
  color:#1434cb !important;
  background:#fff !important;
  border-color:#dbe2ff !important;
}

.mastercard-logo{
  color:#fff !important;
  background:linear-gradient(90deg, #eb001b 0 50%, #f79e1b 50% 100%) !important;
  border-color:#f0b08b !important;
}

.rupay-logo{
  color:#0b7f41 !important;
  background:#fff !important;
  border-color:#cfe8d9 !important;
}

.bank-logo{
  color:#0f4c81 !important;
  background:#f3f8ff !important;
  border-color:#d7e7f9 !important;
}

.wallet-logo{
  color:#e21b5a !important;
  background:#fff5f8 !important;
  border-color:#f6c8d7 !important;
}

.cod-option{
  grid-column:1 / -1;
}

.payment-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:white;
  font-size:13px;
  font-weight:bold;
  flex:0 0 auto;
}

.payment-icon.phonepe{
  background:#5f259f;
}

.payment-icon.gpay{
  background:#1a73e8;
}

.payment-icon.paytm{
  background:#00baf2;
}

.payment-icon.upi{
  background:#111;
}

.payment-icon.card{
  background:#7a4b27;
}

.payment-icon.emi{
  background:#8b5a46;
}

.payment-icon.netbanking{
  background:#6d7788;
}

.payment-icon.wallet{
  background:#5c6f4f;
}

.payment-icon.paylater{
  background:#be123c;
}

.payment-icon.cod{
  background:#0a8f35;
}

.payment-note{
  margin-top:10px;
  color:#666;
  font-size:14px;
  line-height:1.5;
}

.upi-id-box{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px;
  background:white;
  border:1px dashed #111;
  border-radius:10px;
}

.upi-id-box small{
  display:block;
  color:#666;
  font-weight:bold;
  margin-bottom:3px;
}

.upi-id-box strong{
  color:#111;
  word-break:break-all;
}

.upi-id-box button{
  padding:9px 14px;
  border:none;
  border-radius:8px;
  background:#111;
  color:white;
  font-weight:bold;
  cursor:pointer;
  flex:0 0 auto;
}

.place-order-btn{
  width:100%;
  margin-top:22px;
  padding:15px;
  border:none;
  border-radius:10px;
  background:#111;
  color:white;
  font-size:17px;
  font-weight:bold;
  cursor:pointer;
}

.checkout-summary-card{
  position:sticky;
  top:92px;
}

.checkout-product{
  display:flex;
  gap:14px;
  padding:14px;
  background:#fffaf4;
  border:1px solid #eadfd6;
  border-radius:12px;
  margin-bottom:20px;
}

.checkout-product img{
  width:96px;
  height:128px;
  object-fit:contain;
  background:white;
  border-radius:10px;
  flex:0 0 auto;
}

.checkout-product h3{
  font-size:17px;
  margin-bottom:8px;
}

.checkout-product p{
  color:#666;
  font-size:14px;
}

.checkout-price-row{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:13px 0;
  border-bottom:1px solid #eee;
  color:#444;
}

.checkout-price-row strong{
  color:#111;
}

.checkout-total-row{
  border-bottom:none;
  font-size:20px;
  margin-top:4px;
}

.checkout-trust{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-top:18px;
}

.checkout-trust span{
  background:#f8f3ef;
  border-radius:8px;
  padding:10px 12px;
  font-weight:bold;
  font-size:14px;
}

@media(max-width:768px){
  .checkout-header{
    flex-direction:row;
    justify-content:space-between;
    gap:12px;
  }

  .checkout-page{
    padding:28px 4% 44px;
  }

  .checkout-title h1{
    font-size:28px;
  }

  .checkout-layout{
    grid-template-columns:1fr;
  }

  .checkout-summary-card{
    position:static;
    order:-1;
  }

  .checkout-panel{
    padding:20px;
  }

  .checkout-product img{
    width:84px;
    height:112px;
  }

  .payment-options{
    grid-template-columns:1fr;
  }
}

/* Final mobile header fixes */
.header{
  width:100%;
}

.top-header{
  width:100%;
}

@media(max-width:768px){
  .header{
    padding:10px 12px !important;
  }

  .top-header{
    display:grid !important;
    grid-template-columns:38px minmax(0, 1fr) 58px;
    grid-template-areas:
      "menu logo icons"
      "search search search";
    gap:8px;
    align-items:center;
  }

  .mobile-menu-btn{
    grid-area:menu;
  }

  .logo{
    grid-area:logo;
    width:auto !important;
    min-width:0;
    margin:0 !important;
    display:block;
    text-align:center;
    font-size:24px !important;
    line-height:1.15;
    letter-spacing:0 !important;
    white-space:nowrap;
    overflow:visible;
  }

  .header-icons{
    grid-area:icons;
    gap:12px !important;
    justify-content:flex-end;
  }

  .search-box{
    grid-area:search;
    width:100% !important;
    margin:0 !important;
  }

  .search-box input{
    width:100% !important;
  }
}

/* Premium storefront refresh */
.storefront-page{
  background:#f6f0eb;
}

.storefront-page a{
  color:inherit;
}

.offer-bar{
  overflow:hidden;
}

.offer-track{
  display:flex;
  gap:42px;
  width:max-content;
  padding-left:100%;
  animation:offerScroll 28s linear infinite;
}

.offer-track span{
  white-space:nowrap;
  text-transform:uppercase;
  letter-spacing:0;
  font-size:13px;
}

@keyframes offerScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-100%); }
}

.storefront-header{
  box-shadow:0 3px 18px rgba(0,0,0,0.04);
}

.storefront-header .logo{
  text-decoration:none;
}

.storefront-header .search-box{
  max-width:320px;
  background:#f8f3ef;
  border:1px solid #e3d8cf;
  border-radius:999px;
  padding:0 12px;
}

.storefront-header .search-box input{
  border:none;
  background:transparent;
  width:100%;
}

.collection-hero{
  position:relative;
  min-height:0;
  overflow:hidden;
  background:#f8f3ef;
}

.collection-hero img{
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:contain;
  display:block;
}

.collection-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.58), rgba(0,0,0,0.12), rgba(0,0,0,0));
}

.hero-copy{
  position:absolute;
  left:8%;
  bottom:70px;
  z-index:2;
  color:white;
  max-width:520px;
}

.hero-copy p{
  font-weight:bold;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:0;
}

.hero-copy h1{
  margin:12px 0 24px;
  font-size:48px;
  line-height:1.05;
  letter-spacing:0;
}

.hero-copy a{
  display:inline-block;
  background:white;
  color:#111;
  text-decoration:none;
  padding:13px 22px;
  border-radius:8px;
  font-weight:bold;
}

.collection-links{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:20px 8%;
  background:white;
  border-bottom:1px solid #eee;
}

.collection-links button,
.filter-block button{
  border:1px solid #d9d1ca;
  background:white;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:bold;
  white-space:nowrap;
}

.collection-links button.active,
.filter-block button.active{
  background:#111;
  color:white;
  border-color:#111;
}

.collection-page-section{
  text-align:left;
  padding:48px 8%;
}

.collection-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}

.breadcrumb{
  color:#777;
  font-size:14px;
  margin-bottom:8px;
}

.collection-heading h2{
  margin:0 0 6px;
  font-size:38px;
}

#productCount{
  color:#666;
  font-size:15px;
}

.collection-tools{
  display:flex;
  align-items:center;
  gap:10px;
}

.collection-tools button,
.collection-tools select{
  border:1px solid #d9d1ca;
  background:white;
  border-radius:8px;
  padding:11px 12px;
  font-weight:bold;
}

.collection-shell{
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.filter-panel{
  position:sticky;
  top:118px;
  background:white;
  border:1px solid #eadfd6;
  border-radius:12px;
  padding:18px;
}

.filter-block{
  padding:16px 0;
  border-bottom:1px solid #eee;
}

.filter-block:last-child{
  border-bottom:none;
}

.filter-block h3{
  font-size:15px;
  margin-bottom:12px;
  text-transform:uppercase;
}

.filter-block label,
.filter-block button{
  display:flex;
  width:100%;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  text-align:left;
}

.color-filter span{
  width:16px;
  height:16px;
  border-radius:50%;
  border:1px solid #d9d1ca;
}

.premium-product-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.premium-card{
  background:white;
  border-radius:8px;
  border:1px solid #eadfd6;
  padding:0;
  overflow:hidden;
  box-shadow:none;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.product-media{
  position:relative;
  background:#fffaf4;
}

.product-media img{
  width:100%;
  height:390px;
  object-fit:contain;
  border-radius:0;
  background:#fffaf4;
}

.product-badges{
  position:absolute;
  top:12px;
  left:12px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  z-index:2;
}

.product-badges span{
  background:white;
  color:#111;
  border:1px solid #e6ddd5;
  border-radius:999px;
  padding:5px 9px;
  font-size:11px;
  font-weight:bold;
}

.quick-view-btn{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  border:none;
  background:#111;
  color:white;
  padding:12px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
  opacity:0;
  transform:translateY(8px);
  transition:0.25s ease;
}

.premium-card:hover .quick-view-btn{
  opacity:1;
  transform:translateY(0);
}

.product-card-info{
  padding:15px;
}

.product-rating{
  color:#777;
  font-size:13px;
  margin-bottom:5px;
}

.product-card-info h3{
  font-size:16px;
  min-height:40px;
}

.product-card-info .price-box{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}

.product-card-info .discount{
  color:#126b37;
  font-size:13px;
}

.delivery-timeline{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:8px;
  color:#5f4638;
  font-size:13px;
  font-weight:700;
}

.delivery-timeline i{
  color:#126b37;
}

.delivery-timeline.compact{
  justify-content:center;
  margin-top:6px;
  font-size:12px;
}

.card-buy-btn{
  width:100%;
  margin-top:12px;
  padding:11px;
  border:1px solid #111;
  background:white;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}

.empty-products{
  grid-column:1 / -1;
  background:white;
  padding:30px;
  border-radius:8px;
  text-align:center;
}

.section-heading{
  text-align:center;
  margin-bottom:28px;
}

.section-heading p{
  color:#8a6a19;
  font-weight:bold;
  text-transform:uppercase;
  font-size:13px;
}

.premium-videos{
  background:white;
}

.store-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  padding:42px 8%;
  background:white;
}

.store-benefits div{
  border:1px solid #eadfd6;
  border-radius:8px;
  padding:22px;
  text-align:center;
}

.store-benefits i{
  font-size:26px;
  margin-bottom:10px;
}

.premium-about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  text-align:left;
  align-items:center;
}

.premium-about h2{
  font-size:34px;
  line-height:1.15;
}

.store-footer{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
  text-align:left;
  padding:42px 8%;
}

.store-footer a{
  display:block;
  color:white;
  text-decoration:none;
  margin-top:8px;
}

.quick-view-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:10000;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.quick-view-modal.active{
  display:flex;
}

.quick-view-card{
  position:relative;
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:24px;
  background:white;
  max-width:720px;
  width:100%;
  border-radius:10px;
  padding:24px;
}

.quick-view-card img{
  width:100%;
  height:360px;
  object-fit:contain;
  background:#fffaf4;
  border-radius:8px;
}

.quick-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#111;
  color:white;
  cursor:pointer;
}

#quickViewOpen{
  margin-top:18px;
  width:100%;
  padding:13px;
  border:none;
  background:#111;
  color:white;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}

@media(max-width:1024px){
  .premium-product-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:768px){
  .collection-hero{
    min-height:0;
  }

  .collection-hero img{
    height:auto;
    max-height:none;
  }

  .hero-copy{
    left:5%;
    right:5%;
    bottom:36px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .collection-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .collection-tools{
    width:100%;
  }

  .collection-tools select{
    flex:1;
  }

  .collection-shell{
    grid-template-columns:1fr;
  }

  .filter-panel{
    display:none;
    position:static;
  }

  .filter-panel.active{
    display:block;
  }

  .premium-product-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
  }

  .product-media img{
    height:230px;
  }

  .quick-view-btn{
    opacity:1;
    transform:none;
    position:static;
    margin:0 10px 10px;
    width:calc(100% - 20px);
  }

  .product-card-info{
    padding:12px;
  }

  .product-card-info h3{
    font-size:14px;
    min-height:36px;
  }

  .store-benefits,
  .premium-about,
  .store-footer,
  .quick-view-card{
    grid-template-columns:1fr;
  }

  .quick-view-card img{
    height:260px;
  }
}

/* Customer account dashboard */
.account-page{
  min-height:calc(100vh - 80px);
  background:#f6f0eb;
  padding:42px 8% 70px;
}

.account-hero{
  max-width:1180px;
  margin:0 auto 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#111;
  color:white;
  border-radius:14px;
  padding:28px;
}

.account-hero p{
  text-transform:uppercase;
  font-weight:bold;
  font-size:13px;
  margin-bottom:8px;
}

.account-hero h1{
  font-size:36px;
  margin-bottom:6px;
}

.account-hero a{
  background:white;
  color:#111;
  text-decoration:none;
  padding:12px 18px;
  border-radius:8px;
  font-weight:bold;
  white-space:nowrap;
}

.account-hero-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.account-hero-actions button{
  min-height:44px;
  border:1px solid rgba(255,255,255,0.55);
  border-radius:8px;
  background:transparent;
  color:white;
  padding:10px 16px;
  font-weight:bold;
  cursor:pointer;
}

.account-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.auth-panel{
  max-width:1180px;
  margin:0 auto 24px;
}

.auth-panel .account-section-title button{
  width:auto;
  margin:0;
  padding:10px 16px;
}

.auth-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.otp-only-grid{
  grid-template-columns:minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items:stretch;
}

.otp-auth-box{
  padding:16px;
  border:1px solid #eadfd6;
  border-radius:12px;
  background:#fffaf6;
}

.primary-otp-auth{
  display:grid;
  gap:11px;
  padding:22px;
  background:linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

.primary-otp-auth p{
  color:#675f59;
  line-height:1.45;
  margin-bottom:2px;
}

.auth-safe-pill{
  display:inline-flex;
  width:max-content;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border-radius:999px;
  background:#eef8f1;
  color:#1f7a3b;
  font-size:12px;
  font-weight:900;
}

.otp-auth-box small{
  display:block;
  margin-top:8px;
  color:#675f59;
  font-weight:700;
}

.otp-auth-box input{
  margin-bottom:0;
}

.otp-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
}

.otp-row button{
  min-height:46px;
  padding:0 16px;
  white-space:nowrap;
}

.auth-benefits-box{
  padding:22px;
  border:1px solid #eadfd6;
  border-radius:12px;
  background:#111;
  color:white;
}

.auth-benefits-box h3{
  margin-bottom:14px;
}

.auth-benefits-box ul{
  display:grid;
  gap:12px;
  list-style:none;
}

.auth-benefits-box li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#f6f0eb;
  font-weight:800;
}

.auth-benefits-box i{
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:12px;
}

.auth-grid h3{
  margin-bottom:10px;
}

.auth-grid input{
  margin-bottom:10px;
}

.account-panel{
  background:white;
  border:1px solid #eadfd6;
  border-radius:14px;
  padding:22px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.profile-panel{
  position:sticky;
  top:100px;
}

.account-panel h2{
  font-size:22px;
  margin-bottom:14px;
}

.account-panel label{
  display:block;
  margin:13px 0 7px;
  font-weight:bold;
}

.account-panel input,
.account-panel textarea{
  width:100%;
  padding:13px;
  border:1px solid #d9d1ca;
  border-radius:10px;
  outline:none;
}

.account-panel textarea{
  min-height:105px;
  resize:vertical;
}

.account-panel button{
  width:100%;
  margin-top:16px;
  padding:13px;
  border:none;
  border-radius:10px;
  background:#111;
  color:white;
  font-weight:bold;
  cursor:pointer;
}

.account-note{
  margin-top:10px;
  color:#126b37;
  font-weight:bold;
}

.account-main{
  display:grid;
  gap:20px;
}

.account-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.account-stats div{
  background:white;
  border:1px solid #eadfd6;
  border-radius:12px;
  padding:18px;
}

.account-stats span{
  display:block;
  font-size:30px;
  font-weight:bold;
  margin-bottom:4px;
}

.account-stats p{
  color:#666;
  font-weight:bold;
}

.account-section-title{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:16px;
}

.account-section-title p{
  color:#666;
}

.account-section-title a,
.empty-account a{
  color:#111;
  font-weight:bold;
}

.account-order-card{
  display:grid;
  grid-template-columns:92px minmax(0,1fr);
  gap:14px;
  padding:14px;
  border:1px solid #eee;
  border-radius:12px;
  margin-bottom:12px;
}

.account-order-card img{
  width:92px;
  height:118px;
  object-fit:contain;
  background:#fffaf4;
  border-radius:10px;
}

.order-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
  color:#666;
  font-size:13px;
}

.order-meta strong{
  color:#126b37;
}

.account-order-card h3{
  font-size:17px;
  margin-bottom:6px;
}

.account-order-card small{
  display:block;
  margin-top:6px;
  color:#666;
}

.empty-account{
  background:#fffaf4;
  border-radius:12px;
  padding:24px;
  text-align:center;
}

.empty-account p{
  margin:8px 0 14px;
  color:#666;
}

.account-actions{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.account-actions a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px;
  background:#fffaf4;
  border:1px solid #eadfd6;
  border-radius:10px;
  color:#111;
  text-decoration:none;
  font-weight:bold;
}

@media(max-width:768px){
  .account-page{
    padding:24px 4% 90px;
  }

  .account-hero{
    flex-direction:column;
    align-items:flex-start;
  }

  .account-hero-actions,
  .account-hero-actions a,
  .account-hero-actions button{
    width:100%;
  }

  .account-hero-actions a,
  .account-hero-actions button{
    justify-content:center;
    text-align:center;
  }

  .account-hero h1{
    font-size:28px;
  }

  .account-grid{
    grid-template-columns:1fr;
  }

  .auth-grid{
    grid-template-columns:1fr;
  }

  .otp-only-grid{
    grid-template-columns:1fr;
  }

  .otp-row,
  .product-otp-row{
    grid-template-columns:1fr;
  }

  .profile-panel{
    position:static;
  }

  .account-stats,
  .account-actions{
    grid-template-columns:1fr;
  }

  .account-section-title{
    flex-direction:column;
  }
}

/* Boutique storefront rebuild */
.boutique-home{
  --ink:#171312;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --line:#ddd7cf;
  --wine:#5b111d;
  --sage:#eaf1ec;
  --blush:#f7eef1;
  --gold:#a87b2d;
  background:var(--paper);
  color:var(--ink);
}

.boutique-home .offer-bar{
  background:var(--ink) !important;
  color:white !important;
}

.boutique-home .offer-track span{
  font-size:12px;
  letter-spacing:0;
}

.boutique-header{
  background:rgba(255,255,255,0.96) !important;
  border-bottom:1px solid var(--line);
  padding:16px 6% 12px !important;
  backdrop-filter:blur(10px);
}

.boutique-top-header{
  display:grid !important;
  grid-template-columns:1fr minmax(260px, 440px) auto;
  grid-template-areas:"logo search icons";
  gap:22px;
  align-items:center;
}

.boutique-logo{
  grid-area:logo;
  justify-self:start;
  width:auto !important;
  margin:0 !important;
  color:var(--ink) !important;
  font-family:Georgia, serif !important;
  font-size:34px !important;
  line-height:1;
  letter-spacing:0 !important;
  text-decoration:none;
  white-space:nowrap;
}

.boutique-search{
  grid-area:search;
  width:100%;
  max-width:none !important;
  margin:0 !important;
  background:#f3f5f2 !important;
  border:1px solid var(--line) !important;
  border-radius:999px;
}

.boutique-search input{
  font-size:14px;
}

.boutique-icons{
  grid-area:icons;
  justify-self:end;
}

.boutique-nav{
  margin-top:15px !important;
  gap:30px !important;
}

.boutique-nav a{
  position:relative;
  color:var(--ink) !important;
  font-size:13px !important;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing:0 !important;
}

.boutique-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:2px;
  background:var(--wine);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.2s ease;
}

.boutique-nav a:hover::after{
  transform:scaleX(1);
}

.boutique-hero{
  position:relative;
  min-height:520px;
  height:auto;
  aspect-ratio:1717 / 916;
  overflow:hidden;
  background:var(--ink);
}

.boutique-hero picture,
.boutique-hero img{
  display:block;
  width:100%;
  height:100%;
}

.boutique-hero img{
  object-fit:contain;
  object-position:center;
  opacity:0.88;
}

.boutique-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(8,7,7,0.78), rgba(8,7,7,0.28), rgba(8,7,7,0.06));
}

.boutique-hero-copy{
  position:absolute;
  left:6%;
  bottom:54px;
  z-index:2;
  max-width:590px;
  color:white;
}

.boutique-hero-copy p,
.editorial-copy p,
.occasion-card p,
.newsletter-band p{
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  color:#d6b16d;
  margin-bottom:10px;
}

.boutique-hero-copy h1{
  font-size:clamp(40px, 5vw, 72px);
  line-height:1;
  letter-spacing:0;
  margin-bottom:16px;
}

.boutique-hero-copy span{
  display:block;
  max-width:470px;
  font-size:18px;
  line-height:1.5;
  color:#f5f0ea;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.hero-actions a,
.editorial-copy a,
.newsletter-band button,
.occasion-card button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 19px;
  border:1px solid var(--ink);
  border-radius:6px;
  background:var(--ink);
  color:white;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.hero-actions .secondary-action{
  border-color:white;
  background:rgba(255,255,255,0.12);
  color:white;
}

.boutique-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
}

.boutique-strip span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:58px;
  background:var(--surface);
  font-size:14px;
  font-weight:800;
  text-align:center;
}

.category-showcase,
.occasion-edit,
.newsletter-band{
  padding:58px 6%;
}

.left-heading{
  text-align:left;
}

.left-heading h2,
.collection-heading h2,
.section-heading h2{
  color:var(--ink);
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.08;
  margin-bottom:0;
}

.section-heading p,
.left-heading p{
  color:var(--gold);
  letter-spacing:0;
}

.category-showcase-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  grid-auto-rows:260px;
  gap:14px;
  margin-top:24px;
}

.category-tile{
  position:relative;
  overflow:hidden;
  border:0;
  border-radius:8px;
  background:var(--ink);
  cursor:pointer;
  padding:0;
}

.category-tile.large-tile{
  grid-row:span 2;
}

.category-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  opacity:0.92;
  transition:transform 0.28s ease;
}

.category-tile:hover img{
  transform:scale(1.04);
}

.category-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.58));
}

.category-tile span{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:1;
  color:white;
  font-size:23px;
  font-weight:800;
  text-align:left;
}

.boutique-shop{
  padding:58px 6% !important;
  background:#f6f7f3 !important;
}

.boutique-shop .collection-heading{
  margin-bottom:16px;
}

.boutique-pills{
  padding:0 0 22px !important;
  background:transparent !important;
  border:0 !important;
}

.boutique-pills button,
.boutique-shop .filter-block button,
.boutique-shop .collection-tools button,
.boutique-shop .collection-tools select{
  border-radius:6px;
}

.boutique-shop .collection-shell{
  grid-template-columns:250px minmax(0,1fr);
  gap:26px;
}

.boutique-shop .filter-panel{
  border-radius:8px;
  box-shadow:none;
}

.boutique-shop .premium-product-grid{
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.boutique-home .premium-card{
  border-radius:8px;
  background:white;
  border:1px solid var(--line);
  box-shadow:none;
}

.boutique-home .product-media{
  background:#f3f5f2;
}

.boutique-home .product-media img{
  width:100%;
  height:clamp(280px, 28vw, 430px);
  object-fit:contain;
  background:#f3f5f2;
}

.boutique-home .product-card-info{
  padding:14px;
}

.boutique-home .product-card-info h3{
  font-size:15px;
  min-height:42px;
}

.boutique-home .product-rating{
  color:var(--gold);
  font-size:12px;
  font-weight:800;
}

.boutique-home .quick-view-btn,
.boutique-home .card-buy-btn{
  border-radius:6px;
}

.editorial-row{
  display:grid;
  grid-template-columns:1fr 0.82fr;
  gap:42px;
  align-items:center;
  padding:70px 6%;
  background:var(--wine);
  color:white;
}

.editorial-copy{
  max-width:620px;
}

.editorial-copy h2{
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.05;
  letter-spacing:0;
  margin-bottom:22px;
}

.editorial-copy a{
  background:white;
  color:var(--ink);
  border-color:white;
}

.editorial-image{
  min-height:520px;
  border-radius:8px;
  overflow:hidden;
  background:#f3f5f2;
}

.editorial-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.boutique-trending{
  background:var(--paper) !important;
  padding:58px 0 !important;
}

.boutique-trending .trending-card{
  border-radius:8px;
  border:1px solid var(--line);
  box-shadow:none;
  background:white;
}

.boutique-trending .trending-card img{
  height:300px;
  object-fit:contain;
  background:#f3f5f2;
  border-radius:6px;
}

.occasion-edit{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  background:var(--sage);
}

.occasion-card{
  display:grid;
  grid-template-columns:0.85fr 1fr;
  min-height:360px;
  overflow:hidden;
  border-radius:8px;
  background:white;
  border:1px solid var(--line);
}

.occasion-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.occasion-card div{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:32px;
}

.occasion-card h3{
  font-size:31px;
  line-height:1.12;
  margin-bottom:20px;
}

.boutique-videos{
  background:white !important;
}

.boutique-videos .video-grid{
  gap:20px;
}

.boutique-videos video{
  width:min(42vw, 330px);
  max-width:330px;
  height:520px;
  border-radius:8px;
  box-shadow:none;
  border:1px solid var(--line);
  background:#111;
}

.boutique-benefits{
  background:#f6f7f3 !important;
  padding:46px 6% !important;
}

.boutique-benefits div{
  border-radius:8px;
  background:white;
  box-shadow:none;
}

.newsletter-band{
  display:grid;
  grid-template-columns:1fr minmax(320px, 520px);
  gap:28px;
  align-items:center;
  background:var(--blush);
}

.newsletter-band h2{
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.08;
}

.newsletter-band form{
  display:flex;
  gap:10px;
}

.newsletter-band input{
  min-width:0;
  flex:1;
  border:1px solid var(--line);
  border-radius:6px;
  padding:14px;
  font-size:15px;
}

.boutique-footer{
  background:var(--ink);
  color:white;
}

.quick-view-card{
  border-radius:8px;
}

@media(max-width:1180px){
  .boutique-shop .premium-product-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media(max-width:940px){
  .boutique-top-header{
    grid-template-columns:1fr auto;
    grid-template-areas:
      "logo icons"
      "search search";
  }

  .boutique-search{
    max-width:none;
  }

  .boutique-nav{
    gap:18px !important;
  }

  .boutique-shop .collection-shell{
    grid-template-columns:1fr;
  }

  .boutique-shop .filter-panel{
    display:none;
    position:static;
  }

  .boutique-shop .filter-panel.active{
    display:block;
  }

  .editorial-row,
  .newsletter-band{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .boutique-header{
    padding:10px 12px !important;
  }

  .boutique-top-header{
    grid-template-columns:38px minmax(0,1fr) 66px;
    grid-template-areas:
      "menu logo icons"
      "search search search";
    gap:8px;
  }

  .boutique-top-header .mobile-menu-btn{
    grid-area:menu;
    display:block;
    width:38px;
    height:38px;
    border:0;
    background:transparent;
    color:var(--ink);
    font-size:24px;
  }

  .boutique-logo{
    justify-self:center;
    font-size:23px !important;
  }

  .boutique-icons{
    gap:10px !important;
  }

  .boutique-nav{
    display:none;
    grid-template-columns:1fr;
    gap:8px !important;
    margin-top:12px !important;
  }

  .boutique-nav.active{
    display:grid;
  }

  .boutique-nav a{
    padding:12px;
    border:1px solid var(--line);
    border-radius:6px;
    background:#f6f7f3;
    text-align:center;
  }

  .boutique-nav a::after{
    display:none;
  }

  .boutique-hero{
    min-height:560px;
    aspect-ratio:auto;
  }

  .boutique-hero img{
    object-position:center top;
  }

  .boutique-hero::after{
    background:linear-gradient(180deg, rgba(8,7,7,0.08), rgba(8,7,7,0.34) 36%, rgba(8,7,7,0.92) 100%);
  }

  .boutique-hero-copy{
    left:18px;
    right:18px;
    bottom:26px;
  }

  .boutique-hero-copy h1{
    font-size:38px;
  }

  .boutique-hero-copy span{
    font-size:15px;
  }

  .hero-actions a{
    flex:1;
    min-width:145px;
  }

  .boutique-strip{
    grid-template-columns:1fr;
  }

  .boutique-strip span{
    min-height:46px;
  }

  .category-showcase,
  .occasion-edit,
  .newsletter-band{
    padding:40px 14px;
  }

  .category-showcase-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:210px;
    gap:10px;
  }

  .category-tile.large-tile{
    grid-column:1 / -1;
    grid-row:auto;
    height:300px;
  }

  .category-tile span{
    font-size:19px;
    left:14px;
    right:14px;
    bottom:14px;
  }

  .boutique-shop{
    padding:40px 14px !important;
  }

  .boutique-shop .collection-heading{
    align-items:flex-start;
  }

  .boutique-shop .collection-tools{
    width:100%;
    display:grid;
    grid-template-columns:auto auto 1fr;
  }

  .boutique-shop .collection-tools select{
    width:100%;
  }

  .boutique-shop .premium-product-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
  }

  .boutique-home .product-media img{
    height:220px;
  }

  .boutique-home .product-card-info{
    padding:11px;
  }

  .boutique-home .product-card-info h3{
    font-size:13px;
    min-height:36px;
  }

  .boutique-home .new-price{
    font-size:15px;
  }

  .boutique-home .old-price,
  .boutique-home .discount{
    font-size:12px;
  }

  .editorial-row{
    grid-template-columns:1fr;
    gap:24px;
    padding:44px 14px;
  }

  .editorial-image{
    min-height:360px;
  }

  .occasion-edit{
    grid-template-columns:1fr;
  }

  .occasion-card{
    grid-template-columns:1fr;
  }

  .occasion-card img{
    height:300px;
  }

  .occasion-card div{
    padding:24px;
  }

  .occasion-card h3{
    font-size:26px;
  }

  .boutique-videos video{
    width:48%;
    height:360px;
  }

  .newsletter-band form{
    flex-direction:column;
  }
}

@media(max-width:420px){
  .boutique-home .product-media img{
    height:190px;
  }

  .boutique-home .card-buy-btn,
  .boutique-home .quick-view-btn{
    font-size:12px;
    padding:10px 8px;
  }
}

/* Premium payment checkout */
.premium-checkout-page{
  --ink:#171312;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --line:#ddd7cf;
  --wine:#5b111d;
  --sage:#eaf1ec;
  --blush:#f7eef1;
  --gold:#a87b2d;
  background:var(--paper);
  color:var(--ink);
  min-height:100vh;
}

.checkout-offer-bar{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  padding:8px 18px;
  background:var(--ink);
  color:white;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  text-align:center;
}

.premium-checkout-header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 6%;
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.checkout-logo{
  font-family:Georgia, serif;
  font-size:34px;
  font-weight:bold;
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
}

.checkout-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.checkout-header-actions a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:6px;
  color:var(--ink);
  background:white;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.premium-checkout-shell{
  padding:42px 6% 72px;
  background:
    linear-gradient(135deg, rgba(234,241,236,0.72), rgba(247,238,241,0.38) 48%, rgba(255,255,255,0) 48%),
    var(--paper);
}

.premium-checkout-title{
  max-width:1180px;
  margin:0 auto 26px;
}

.premium-checkout-title p,
.premium-section-heading p,
.premium-payment-title p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin:0 0 8px;
}

.premium-checkout-title h1{
  font-size:clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:0 0 20px;
  color:var(--ink);
}

.checkout-progress{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.checkout-progress span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:8px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:white;
  color:#6f6862;
  font-weight:800;
  font-size:13px;
}

.checkout-progress b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#ece7e1;
  color:var(--ink);
  font-size:12px;
}

.checkout-progress span.active{
  color:var(--ink);
  border-color:var(--ink);
}

.checkout-progress span.active b{
  background:var(--ink);
  color:white;
}

.premium-checkout-layout{
  max-width:1180px;
  grid-template-columns:minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap:24px;
}

.premium-checkout-card,
.premium-summary-card{
  border:1px solid var(--line);
  border-radius:10px;
  padding:26px;
  background:rgba(255,255,255,0.96);
  box-shadow:0 20px 46px rgba(30,24,22,0.08);
}

.premium-section-heading{
  align-items:center;
  margin-bottom:24px;
}

.premium-section-heading span{
  background:var(--wine);
}

.premium-section-heading h2{
  margin:0;
  font-size:24px;
  line-height:1.15;
  color:var(--ink);
}

.checkout-field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.delivery-form-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:12px;
}

.delivery-field{
  position:relative;
  grid-column:span 2;
}

.delivery-field.wide{
  grid-column:1 / -1;
}

.delivery-field:nth-of-type(2),
.delivery-field:nth-of-type(3){
  grid-column:span 3;
}

.delivery-field label{
  position:absolute;
  top:10px;
  left:13px;
  z-index:1;
  margin:0 !important;
  color:#65717f !important;
  font-size:12px !important;
  font-weight:500 !important;
  text-transform:none !important;
  pointer-events:none;
}

.delivery-field input,
.delivery-field select{
  width:100%;
  min-height:62px;
  padding:24px 38px 9px 13px !important;
  border:1px solid #d9dde3 !important;
  border-radius:14px !important;
  background:white !important;
  color:#111 !important;
  font:inherit;
}

.delivery-field input:focus,
.delivery-field select:focus{
  outline:none;
  border-color:#111 !important;
  box-shadow:0 0 0 2px rgba(17,17,17,0.08) !important;
}

.address-search-field i,
.phone-help-field i{
  position:absolute;
  right:14px;
  top:42px;
  color:#777;
  pointer-events:none;
}

.phone-help-field small{
  display:block;
  margin-top:7px;
  color:#6d625b;
  font-size:12px;
  line-height:1.35;
}

.save-info-row{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin:14px 0 0 !important;
  color:#111 !important;
  font-size:15px !important;
  font-weight:500 !important;
  text-transform:none !important;
}

.save-info-row input{
  width:22px !important;
  height:22px;
  min-height:22px !important;
  padding:0 !important;
  border-radius:7px !important;
}

.premium-checkout-page .checkout-details label{
  margin:15px 0 7px;
  font-size:13px;
  text-transform:uppercase;
  color:#544d47;
}

.premium-checkout-page .checkout-details input,
.premium-checkout-page .checkout-details textarea,
.premium-checkout-page .checkout-details select{
  border-radius:7px;
  background:#fff;
  border:1px solid var(--line);
}

.premium-checkout-page .checkout-details input:focus,
.premium-checkout-page .checkout-details textarea:focus,
.premium-checkout-page .checkout-details select:focus{
  border-color:var(--wine);
  box-shadow:0 0 0 3px rgba(91,17,29,0.08);
}

.premium-payment-box{
  margin-top:22px;
  border-radius:10px;
  border:1px solid #e4d8d0;
  background:#fffaf7;
  padding:20px;
}

.premium-payment-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.premium-payment-title h3{
  font-size:24px;
  line-height:1.15;
  margin:0;
}

.payment-status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:7px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:#7b736d;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.payment-status-pill.ready{
  background:#e7f4ec;
  border-color:#badbc7;
  color:#126b37;
}

.premium-payment-options{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.premium-checkout-page .payment-option{
  position:relative;
  min-height:76px;
  border-radius:8px;
  border:1px solid var(--line);
  background:white;
  padding:14px 42px 14px 14px;
  transition:transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.premium-checkout-page .payment-option:hover{
  transform:translateY(-2px);
  border-color:var(--wine);
}

.premium-checkout-page .payment-option.active{
  border-color:var(--wine);
  box-shadow:0 0 0 3px rgba(91,17,29,0.08);
  background:#fff;
}

.premium-checkout-page .payment-option > i{
  position:absolute;
  top:14px;
  right:14px;
  width:22px;
  height:22px;
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--wine);
  color:white;
  font-size:11px;
}

.premium-checkout-page .payment-option.active > i{
  display:flex;
}

.premium-checkout-page .payment-icon{
  width:42px;
  height:42px;
}

.payment-icon.card{
  background:#7a4b27;
}

.selected-payment-preview{
  display:flex;
  gap:13px;
  align-items:flex-start;
  margin-top:16px;
  padding:15px;
  border-radius:8px;
  background:var(--sage);
  border:1px solid #d5e2da;
}

.selected-payment-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--ink);
  color:white;
  flex:0 0 auto;
}

.selected-payment-preview strong{
  display:block;
  margin-bottom:4px;
}

.premium-checkout-page .payment-note{
  margin:0;
  color:#635b55;
}

.payment-secure-line{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
  margin-top:14px;
}

.payment-secure-line span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:38px;
  padding:9px;
  border-radius:8px;
  background:white;
  border:1px solid var(--line);
  color:#4f4842;
  font-size:12px;
  font-weight:800;
  text-align:center;
}

.premium-checkout-page .upi-id-box{
  border-radius:8px;
  border-color:var(--wine);
}

.premium-place-order{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  border-radius:8px;
  background:var(--ink);
}

.premium-place-order:disabled{
  opacity:0.65;
  cursor:not-allowed;
}

.premium-summary-card{
  top:102px;
}

.premium-summary-product{
  border-radius:10px;
  background:#f6f7f3;
  border:1px solid var(--line);
}

.premium-summary-product img{
  width:110px;
  height:148px;
  border-radius:8px;
  background:white;
}

.premium-summary-product small{
  display:block;
  color:var(--gold);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.summary-coupon-box{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:13px;
  margin:18px 0 6px;
  border-radius:8px;
  background:var(--blush);
  color:var(--wine);
  font-weight:900;
}

.premium-checkout-page .checkout-price-row{
  color:#554e48;
}

.premium-checkout-page .checkout-total-row{
  font-size:23px;
  color:var(--ink);
}

.premium-checkout-trust span{
  display:flex;
  align-items:center;
  gap:9px;
  background:#fff;
  border:1px solid var(--line);
}

.premium-checkout-trust i{
  color:#126b37;
}

.checkout-help-card{
  margin-top:18px;
  padding:16px;
  border-radius:8px;
  background:var(--ink);
  color:white;
}

.checkout-help-card strong{
  display:block;
  margin-bottom:6px;
}

.checkout-help-card p{
  color:#efe8e2;
  margin-bottom:12px;
  line-height:1.45;
}

.checkout-help-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ink);
  background:white;
  padding:9px 12px;
  border-radius:6px;
  text-decoration:none;
  font-weight:900;
}

@media(max-width:900px){
  .checkout-offer-bar{
    gap:16px;
    flex-wrap:wrap;
  }

  .premium-checkout-layout{
    grid-template-columns:1fr;
  }

  .premium-summary-card{
    position:static;
    order:-1;
  }
}

@media(max-width:768px){
  .premium-checkout-header{
    padding:14px;
    align-items:flex-start;
  }

  .checkout-logo{
    font-size:26px;
  }

  .checkout-header-actions{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .checkout-header-actions a{
    min-height:36px;
    padding:8px 10px;
    font-size:12px;
  }

  .premium-checkout-shell{
    padding:28px 14px 48px;
  }

  .checkout-progress{
    gap:8px;
  }

  .checkout-progress span{
    font-size:12px;
    padding:7px 10px;
  }

  .premium-checkout-card,
  .premium-summary-card{
    padding:20px;
  }

  .checkout-field-grid,
  .delivery-form-grid,
  .premium-payment-options,
  .payment-secure-line{
    grid-template-columns:1fr;
  }

  .delivery-field,
  .delivery-field:nth-of-type(2),
  .delivery-field:nth-of-type(3){
    grid-column:1 / -1;
  }

  .premium-payment-title{
    flex-direction:column;
  }

  .premium-summary-product img{
    width:92px;
    height:124px;
  }
}

/* Premium order confirmation */
.premium-order-page{
  --ink:#171312;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --line:#ddd7cf;
  --wine:#5b111d;
  --sage:#eaf1ec;
  --blush:#f7eef1;
  --gold:#a87b2d;
  min-height:100vh;
  background:var(--paper);
  color:var(--ink);
}

.premium-order-header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 6%;
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.order-logo{
  font-family:Georgia, serif;
  font-size:34px;
  font-weight:bold;
  color:var(--ink);
  text-decoration:none;
}

.premium-order-header nav{
  display:flex;
  gap:10px;
}

.premium-order-header nav a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:6px;
  color:var(--ink);
  background:white;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.premium-order-shell{
  padding:42px 6% 76px;
  background:
    radial-gradient(circle at top left, rgba(234,241,236,0.95), transparent 32%),
    linear-gradient(135deg, rgba(247,238,241,0.8), rgba(255,255,255,0) 46%),
    var(--paper);
}

.order-confirmation-hero{
  max-width:920px;
  margin:0 auto 30px;
  text-align:center;
}

.order-success-mark{
  width:76px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  border-radius:50%;
  background:#e7f4ec;
  color:#126b37;
  font-size:32px;
  border:1px solid #badbc7;
}

.order-confirmation-hero p,
.order-card-heading p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.order-confirmation-hero h1{
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.04;
  margin-bottom:14px;
}

.order-confirmation-hero span{
  display:block;
  max-width:650px;
  margin:auto;
  color:#5d554f;
  font-size:17px;
  line-height:1.55;
}

.order-confirmation-layout{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(340px,0.82fr);
  gap:24px;
  align-items:start;
}

.order-confirmation-card{
  background:rgba(255,255,255,0.96);
  border:1px solid var(--line);
  border-radius:10px;
  padding:26px;
  box-shadow:0 20px 46px rgba(30,24,22,0.08);
}

.order-card-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.order-card-heading h2{
  margin:0;
  font-size:25px;
  line-height:1.15;
}

.order-card-heading > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:8px 12px;
  border-radius:999px;
  background:#e7f4ec;
  color:#126b37;
  font-size:12px;
  font-weight:900;
}

.success-product-row{
  display:grid;
  grid-template-columns:104px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#f6f7f3;
  margin-bottom:12px;
}

.success-product-row img{
  width:104px;
  height:136px;
  object-fit:contain;
  border-radius:8px;
  background:white;
}

.success-product-row span{
  display:block;
  color:var(--gold);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.success-product-row h3{
  font-size:18px;
  margin-bottom:6px;
}

.success-product-row p{
  color:#6c635d;
}

.success-product-row strong{
  font-size:18px;
  white-space:nowrap;
}

.order-total-panel{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:18px;
}

.order-total-panel div{
  padding:15px;
  border:1px solid var(--line);
  border-radius:8px;
  background:white;
}

.order-total-panel span{
  display:block;
  color:#6c635d;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:7px;
}

.order-total-panel strong{
  font-size:17px;
}

.order-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.order-actions a,
.order-actions button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:12px 16px;
  border:1px solid var(--ink);
  border-radius:6px;
  background:var(--ink);
  color:white;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}

.order-actions .secondary-order-action,
.order-actions button{
  background:white;
  color:var(--ink);
}

.compact-heading{
  margin-bottom:16px;
}

.customer-summary{
  display:grid;
  gap:8px;
  padding:15px;
  border-radius:10px;
  background:#f6f7f3;
  border:1px solid var(--line);
}

.customer-summary span{
  color:#6c635d;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.customer-summary strong{
  margin-bottom:6px;
  line-height:1.45;
}

.order-timeline{
  margin-top:20px;
}

.order-timeline h3{
  font-size:20px;
  margin-bottom:14px;
}

.timeline-step{
  display:grid;
  grid-template-columns:36px minmax(0,1fr);
  gap:12px;
  position:relative;
  padding-bottom:18px;
}

.timeline-step:not(:last-child)::after{
  content:"";
  position:absolute;
  left:17px;
  top:38px;
  bottom:2px;
  width:2px;
  background:var(--line);
}

.timeline-step i{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:white;
  border:1px solid var(--line);
  color:var(--wine);
  z-index:1;
}

.timeline-step.active i{
  background:#e7f4ec;
  color:#126b37;
  border-color:#badbc7;
}

.timeline-step strong{
  display:block;
  margin-bottom:4px;
}

.timeline-step span{
  color:#6c635d;
  line-height:1.4;
}

.order-support-box{
  margin-top:8px;
  padding:16px;
  border-radius:8px;
  background:var(--ink);
  color:white;
}

.order-support-box strong{
  display:block;
  margin-bottom:6px;
}

.order-support-box p{
  color:#efe8e2;
  margin-bottom:12px;
}

.order-support-box a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:6px;
  background:white;
  color:var(--ink);
  text-decoration:none;
  font-weight:900;
}

@media(max-width:900px){
  .order-confirmation-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .premium-order-header{
    padding:14px;
  }

  .order-logo{
    font-size:26px;
  }

  .premium-order-header nav a{
    min-height:36px;
    padding:8px 10px;
    font-size:12px;
  }

  .premium-order-shell{
    padding:30px 14px 54px;
  }

  .order-confirmation-card{
    padding:20px;
  }

  .order-card-heading{
    flex-direction:column;
  }

  .success-product-row{
    grid-template-columns:86px minmax(0,1fr);
  }

  .success-product-row img{
    width:86px;
    height:112px;
  }

  .success-product-row strong{
    grid-column:1 / -1;
  }

  .order-total-panel{
    grid-template-columns:1fr;
  }

  .order-actions a,
  .order-actions button{
    flex:1 1 100%;
  }
}

@media print{
  .premium-order-header,
  .order-actions,
  .order-support-box{
    display:none;
  }

  .premium-order-shell{
    padding:0;
    background:white;
  }

  .order-confirmation-card{
    box-shadow:none;
  }
}

/* Premium my orders page */
.premium-orders-page{
  --ink:#171312;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --line:#ddd7cf;
  --wine:#5b111d;
  --sage:#eaf1ec;
  --blush:#f7eef1;
  --gold:#a87b2d;
  min-height:100vh;
  background:var(--paper);
  color:var(--ink);
}

.premium-orders-shell{
  padding:42px 6% 76px;
  background:
    radial-gradient(circle at top left, rgba(234,241,236,0.95), transparent 30%),
    linear-gradient(135deg, rgba(247,238,241,0.75), rgba(255,255,255,0) 45%),
    var(--paper);
}

.orders-hero{
  max-width:1180px;
  margin:0 auto 28px;
}

.orders-hero p,
.orders-toolbar p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.orders-hero h1{
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.04;
  margin-bottom:12px;
}

.orders-hero span{
  display:block;
  max-width:620px;
  color:#5d554f;
  font-size:17px;
  line-height:1.55;
}

.orders-dashboard{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.orders-summary-panel{
  display:grid;
  gap:14px;
  position:sticky;
  top:102px;
}

.orders-summary-card,
.orders-support-card,
.orders-list-panel{
  background:rgba(255,255,255,0.96);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 20px 46px rgba(30,24,22,0.08);
}

.orders-summary-card{
  padding:20px;
}

.orders-summary-card span{
  display:block;
  font-size:36px;
  font-weight:900;
  margin-bottom:4px;
}

.orders-summary-card p{
  color:#6c635d;
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
}

.orders-support-card{
  padding:18px;
  background:var(--ink);
  color:white;
}

.orders-support-card strong{
  display:block;
  margin-bottom:7px;
}

.orders-support-card p{
  color:#efe8e2;
  line-height:1.45;
  margin-bottom:12px;
}

.orders-support-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:6px;
  background:white;
  color:var(--ink);
  text-decoration:none;
  font-weight:900;
}

.orders-list-panel{
  padding:24px;
}

.orders-toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.orders-toolbar h2{
  font-size:30px;
  line-height:1.1;
}

.orders-filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.orders-filters button{
  min-height:36px;
  padding:8px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:white;
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}

.orders-filters button.active{
  background:var(--ink);
  color:white;
  border-color:var(--ink);
}

.orders-list{
  display:grid;
  gap:14px;
}

.orders-history-card{
  display:grid;
  grid-template-columns:104px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#f6f7f3;
}

.orders-history-card img{
  width:104px;
  height:136px;
  object-fit:contain;
  border-radius:8px;
  background:white;
}

.orders-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.orders-card-top span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
}

.orders-card-top strong{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:white;
  color:#6c635d;
  border:1px solid var(--line);
  font-size:11px;
  text-transform:uppercase;
}

.orders-card-top strong.paid{
  background:#e7f4ec;
  border-color:#badbc7;
  color:#126b37;
}

.orders-card-top strong.cod{
  background:#fff6df;
  border-color:#f0d89d;
  color:#8a5a00;
}

.orders-card-top strong.pending{
  background:var(--blush);
  border-color:#e7cfd7;
  color:var(--wine);
}

.orders-card-top strong.cancelled{
  background:#f3f4f6;
  border-color:#d7dbe1;
  color:#5b6470;
}

.orders-history-info h3{
  font-size:18px;
  margin-bottom:6px;
}

.orders-history-info p{
  color:#6c635d;
  margin-bottom:10px;
}

.orders-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.orders-card-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 9px;
  border-radius:999px;
  background:white;
  border:1px solid var(--line);
  color:#544d47;
  font-size:12px;
  font-weight:800;
}

.orders-card-actions{
  display:grid;
  gap:8px;
}

.orders-card-actions button,
.orders-card-actions a,
.orders-empty-state a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 13px;
  border:1px solid var(--ink);
  border-radius:6px;
  background:var(--ink);
  color:white;
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
}

.orders-card-actions a{
  background:white;
  color:var(--ink);
}

.orders-card-actions .cancel-order-btn{
  background:#fff5f3;
  border-color:#e6b8ae;
  color:#8c2418;
}

.orders-empty-state{
  padding:42px 18px;
  text-align:center;
  background:#f6f7f3;
  border:1px dashed var(--line);
  border-radius:10px;
}

.orders-empty-state i{
  font-size:34px;
  color:var(--gold);
  margin-bottom:12px;
}

.orders-empty-state h3{
  font-size:24px;
  margin-bottom:8px;
}

.orders-empty-state p{
  color:#6c635d;
  margin-bottom:16px;
}

.account-header-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media(max-width:960px){
  .orders-dashboard{
    grid-template-columns:1fr;
  }

  .orders-summary-panel{
    position:static;
    grid-template-columns:repeat(3,1fr);
  }

  .orders-support-card{
    grid-column:1 / -1;
  }
}

@media(max-width:768px){
  .premium-orders-shell{
    padding:30px 14px 88px;
  }

  .orders-summary-panel{
    grid-template-columns:1fr;
  }

  .orders-list-panel{
    padding:18px;
  }

  .orders-toolbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .orders-history-card{
    grid-template-columns:86px minmax(0,1fr);
  }

  .orders-history-card img{
    width:86px;
    height:112px;
  }

  .orders-card-actions{
    grid-column:1 / -1;
    grid-template-columns:1fr 1fr;
  }

  .account-header-actions{
    justify-content:center;
  }
}

/* Premium product detail page */
.premium-product-page{
  --ink:#171312;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --line:#ddd7cf;
  --wine:#5b111d;
  --sage:#eaf1ec;
  --blush:#f7eef1;
  --gold:#a87b2d;
  min-height:100vh;
  background:var(--paper);
  color:var(--ink);
}

.product-offer-bar{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  padding:8px 18px;
  background:var(--ink);
  color:white;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  text-align:center;
}

.premium-product-header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 6%;
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.product-logo{
  font-family:Georgia, serif;
  font-size:34px;
  font-weight:bold;
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
}

.premium-product-header nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.premium-product-header nav a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:6px;
  color:var(--ink);
  background:white;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

.product-menu-toggle{
  display:none;
}

.premium-product-shell{
  padding:34px 6% 80px;
  background:
    radial-gradient(circle at top left, rgba(234,241,236,0.96), transparent 30%),
    linear-gradient(135deg, rgba(247,238,241,0.75), rgba(255,255,255,0) 44%),
    var(--paper);
}

.product-breadcrumb{
  max-width:1240px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  color:#6c635d;
  font-size:13px;
  font-weight:800;
}

.product-breadcrumb a{
  color:var(--ink);
  text-decoration:none;
}

.premium-product-layout{
  max-width:1240px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap:28px;
  align-items:start;
}

.premium-product-gallery,
.premium-product-info{
  background:rgba(255,255,255,0.96);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 20px 46px rgba(30,24,22,0.08);
}

.premium-product-gallery{
  position:sticky;
  top:104px;
  padding:18px;
}

.gallery-badges{
  position:absolute;
  top:30px;
  left:30px;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.gallery-badges span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:white;
  border:1px solid var(--line);
  font-size:11px;
  font-weight:900;
}

.main-product-frame{
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:#f6f7f3;
  overflow:hidden;
}

.premium-product-page #productImage{
  width:100%;
  max-width:560px;
  height:640px;
  object-fit:contain;
  background:transparent;
  border-radius:0;
  cursor:default;
  transition:transform 0.22s ease;
}

.premium-product-page #productImage:hover{
  transform:scale(1.02);
}

.premium-thumb-gallery{
  display:grid !important;
  grid-template-columns:repeat(5, 1fr);
  gap:10px;
  margin-top:14px;
}

.premium-thumb-gallery img{
  width:100%;
  height:94px;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:7px;
  background:#f6f7f3;
  cursor:pointer;
  transition:transform 0.18s ease, border-color 0.18s ease;
}

.premium-thumb-gallery img:hover,
.premium-thumb-gallery img.active-thumb{
  transform:translateY(-2px);
  border-color:var(--wine) !important;
}

.premium-product-info{
  width:auto !important;
  padding:28px;
  background:rgba(255,255,255,0.98) !important;
}

.premium-product-info .product-label,
.product-story-card p,
.product-order-process p,
.product-size-chart-section .section-heading p,
.premium-related-products .section-heading p,
.premium-reviews-section .section-heading p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:8px;
}

.premium-product-info h1{
  font-size:clamp(34px, 4vw, 54px) !important;
  line-height:1.04;
  margin:0 0 12px !important;
  color:var(--ink);
}

.product-rating-line{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.product-rating-line span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  background:#f6f7f3;
  border:1px solid var(--line);
  color:#544d47;
  font-size:12px;
  font-weight:800;
}

.product-rating-line i{
  color:var(--gold);
}

.premium-price-box{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 6px;
}

.premium-price-box .discount{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#e7f4ec;
  color:#126b37;
  font-size:12px;
}

.premium-price-box .old-price{
  font-size:18px;
}

.premium-price-box .new-price{
  font-size:32px;
  color:var(--ink);
}

.price-note{
  color:#6c635d;
  font-size:13px;
  margin-bottom:18px;
}

.premium-product-info .product-desc{
  color:#4f4842;
  line-height:1.65;
  font-size:15px;
  margin-bottom:18px;
}

.product-choice-panel{
  padding:16px;
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fffaf7;
}

.choice-heading,
.quantity-choice-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.choice-heading h3,
.quantity-choice-panel h3{
  font-size:17px;
}

.choice-heading button{
  border:1px solid var(--ink);
  border-radius:999px;
  background:white;
  color:var(--ink);
  padding:8px 12px;
  font-weight:900;
  cursor:pointer;
}

.premium-size-box{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:8px;
  margin-top:12px;
}

.premium-size-box button{
  min-height:44px;
  border:1px solid var(--line);
  border-radius:7px;
  background:white;
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}

.premium-size-box button.active-size{
  background:var(--ink) !important;
  color:white !important;
  border-color:var(--ink);
}

.quantity-choice-panel p{
  color:#6c635d;
  font-size:13px;
}

.quantity-stepper{
  display:flex;
  align-items:center;
  gap:8px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:999px;
  background:white;
}

.quantity-stepper button{
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:var(--ink);
  color:white;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}

.quantity-stepper strong{
  min-width:28px;
  text-align:center;
}

.premium-wishlist{
  margin:16px 0 0;
}

.premium-wishlist button{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:7px;
  background:white;
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}

.premium-product-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}

.premium-product-actions button{
  min-height:52px;
  border-radius:7px;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.premium-product-actions #addToCartBtn{
  border:1px solid var(--ink);
  background:white;
  color:var(--ink);
}

.premium-product-actions .buy-now-btn{
  border:1px solid var(--ink);
  background:var(--ink);
  color:white;
}

.product-payment-note{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:16px;
}

.product-payment-note div{
  display:grid;
  gap:5px;
  padding:13px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#f6f7f3;
}

.product-payment-note i{
  color:var(--wine);
  font-size:18px;
}

.product-payment-note span{
  color:#6c635d;
  line-height:1.4;
  font-size:13px;
}

.product-service-strip{
  max-width:1240px;
  margin:26px auto 0;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

.product-service-strip div{
  display:grid;
  gap:6px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:10px;
  background:white;
}

.product-service-strip i{
  color:var(--wine);
  font-size:22px;
}

.product-service-strip span{
  color:#6c635d;
  line-height:1.4;
  font-size:13px;
}

.product-story-grid,
.product-size-chart-section,
.product-info-tabs,
.premium-reviews-section,
.premium-related-products{
  max-width:1240px;
  margin:26px auto 0;
}

.product-story-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:18px;
}

.product-story-card,
.product-order-process,
.size-chart-table-card,
.measure-guide-card,
.product-info-tabs details{
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  padding:24px;
  box-shadow:0 18px 38px rgba(30,24,22,0.06);
}

.product-story-card h2,
.product-order-process h2,
.product-size-chart-section h2{
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.08;
  margin-bottom:16px;
}

.product-story-card ul{
  display:grid;
  gap:10px;
  padding-left:20px;
  color:#4f4842;
  line-height:1.55;
}

.product-process-step{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:12px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.product-process-step:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.product-process-step span{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--ink);
  color:white;
  font-weight:900;
}

.product-process-step strong{
  display:block;
  margin-bottom:4px;
}

.product-process-step small{
  color:#6c635d;
}

.product-size-chart-section{
  padding:28px;
  border-radius:10px;
  background:var(--sage);
  border:1px solid #d5e2da;
}

.size-chart-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap:18px;
  margin-top:18px;
}

.size-chart-table-card{
  overflow:auto;
  padding:0;
}

.product-size-chart{
  width:100%;
  min-width:620px;
  border-collapse:collapse;
  background:white;
}

.product-size-chart th,
.product-size-chart td{
  padding:15px;
  border-bottom:1px solid var(--line);
  text-align:left;
}

.product-size-chart th{
  background:var(--ink);
  color:white;
  font-size:13px;
  text-transform:uppercase;
}

.product-size-chart td:first-child{
  font-weight:900;
  color:var(--wine);
}

.measure-guide-card{
  box-shadow:none;
}

.measure-guide-card h3{
  font-size:22px;
  margin-bottom:14px;
}

.measure-guide-card div{
  display:grid;
  gap:4px;
  padding:11px 0;
  border-bottom:1px solid var(--line);
}

.measure-guide-card span,
.measure-guide-card p{
  color:#6c635d;
  line-height:1.45;
}

.measure-guide-card p{
  margin-top:14px;
  font-weight:800;
}

.product-info-tabs{
  display:grid;
  gap:10px;
}

.product-info-tabs details{
  padding:0;
  overflow:hidden;
}

.product-info-tabs summary{
  padding:18px 22px;
  cursor:pointer;
  font-weight:900;
  list-style:none;
}

.product-info-tabs summary::-webkit-details-marker{
  display:none;
}

.product-info-tabs p{
  padding:0 22px 20px;
  color:#4f4842;
  line-height:1.6;
}

.premium-reviews-section{
  padding:0;
  background:transparent;
}

.premium-review-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.premium-review-grid .review-card{
  margin:0;
  border-radius:10px;
  box-shadow:0 18px 38px rgba(30,24,22,0.06);
}

.premium-review-grid .review-card strong{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--gold);
}

.premium-related-products{
  padding:0;
  background:transparent;
}

.premium-related-products .premium-product-grid{
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.premium-size-popup{
  background:rgba(20,16,15,0.62);
}

.premium-size-popup-content{
  max-width:820px;
  border-radius:10px;
  position:relative;
  overflow:auto;
}

.premium-size-popup-content p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.premium-size-popup-content h2{
  margin:6px 0 16px;
}

.premium-size-popup-content table{
  min-width:620px;
}

.premium-size-popup-content th{
  background:var(--ink);
  color:white;
}

.premium-size-popup-content .close-size{
  float:none;
  position:absolute;
  right:18px;
  top:18px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:var(--ink);
  color:white;
  font-size:18px;
}

.product-auth-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(20,16,15,0.62);
  z-index:10050;
}

.product-auth-modal.active{
  display:flex;
}

.product-auth-card{
  position:relative;
  width:min(460px, 100%);
  max-height:calc(100vh - 36px);
  overflow:auto;
  padding:26px;
  border-radius:12px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 28px 70px rgba(0,0,0,0.24);
}

.product-auth-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:var(--ink);
  color:white;
  cursor:pointer;
  font-weight:900;
}

.product-auth-card > p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:7px;
}

.product-auth-card h2{
  font-size:28px;
  line-height:1.1;
  margin-bottom:8px;
}

.product-auth-subtitle{
  display:block;
  color:#6c635d;
  line-height:1.45;
  margin-bottom:16px;
}

.product-auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:5px;
  margin-bottom:14px;
  border-radius:10px;
  background:#f6f7f3;
}

.product-auth-tabs button{
  min-height:42px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}

.product-auth-tabs button.active{
  background:white;
  box-shadow:0 6px 16px rgba(30,24,22,0.08);
}

.product-auth-form{
  display:none;
  gap:10px;
}

.product-auth-form.active{
  display:grid;
}

.product-auth-form input{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:12px;
  font:inherit;
}

.product-auth-form button[type="submit"]{
  min-height:48px;
  border:0;
  border-radius:8px;
  background:var(--ink);
  color:white;
  font-weight:900;
  cursor:pointer;
}

.product-otp-box{
  display:grid;
  gap:10px;
  margin:14px 0;
  padding:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fffaf7;
}

.primary-product-otp{
  margin-top:16px;
  padding:16px;
  background:linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

.product-otp-box span{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:var(--ink);
}

.product-otp-box input{
  width:100%;
  min-height:44px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:11px 12px;
  font:inherit;
}

.product-otp-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
}

.product-otp-box button{
  min-height:44px;
  border:0;
  border-radius:8px;
  background:var(--ink);
  color:white;
  padding:0 14px;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
}

.product-otp-box small{
  color:#6c635d;
  font-weight:800;
  line-height:1.4;
}

.product-forgot-btn{
  justify-self:center;
  border:0;
  background:transparent;
  color:var(--wine);
  font-weight:900;
  cursor:pointer;
}

.product-auth-link{
  justify-self:center;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}

.product-forgot-panel{
  display:grid;
  gap:7px;
  margin-top:12px;
  padding:13px;
  border-radius:8px;
  background:#fffaf7;
  border:1px solid var(--line);
}

.product-forgot-panel[hidden]{
  display:none;
}

.product-forgot-panel span{
  color:#6c635d;
  line-height:1.45;
}

.product-forgot-panel a{
  color:var(--wine);
  font-weight:900;
}

.product-auth-message{
  margin-top:12px;
  color:var(--wine);
  font-weight:900;
  min-height:20px;
}

.premium-back-top{
  right:22px;
  bottom:92px;
}

@media(max-width:1080px){
  .premium-product-layout{
    grid-template-columns:1fr;
  }

  .premium-product-gallery{
    position:relative;
    top:auto;
  }

  .product-service-strip,
  .premium-review-grid,
  .premium-related-products .premium-product-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .product-offer-bar{
    flex-wrap:wrap;
    gap:14px;
  }

  .premium-product-header{
    padding:14px;
    align-items:flex-start;
  }

  .product-logo{
    font-size:25px;
  }

  .premium-product-header nav{
    gap:7px;
  }

  .premium-product-header nav a{
    min-height:34px;
    padding:8px 9px;
    font-size:12px;
  }

  .premium-product-shell{
    padding:22px 14px 94px;
  }

  .main-product-frame{
    min-height:420px;
  }

  .premium-product-page #productImage{
    height:420px;
  }

  .premium-thumb-gallery{
    grid-template-columns:repeat(4, 1fr);
  }

  .premium-thumb-gallery img{
    height:78px;
  }

  .premium-product-info{
    padding:20px;
  }

  .premium-size-box{
    grid-template-columns:repeat(3, 1fr);
  }

  .product-payment-note,
  .product-service-strip,
  .product-story-grid,
  .size-chart-layout,
  .premium-review-grid,
  .premium-related-products .premium-product-grid{
    grid-template-columns:1fr;
  }

  .product-size-chart-section{
    padding:18px;
  }

  .product-size-chart,
  .premium-size-popup-content table{
    min-width:560px;
  }

  .premium-mobile-sticky-buy{
    display:flex;
  }

  .premium-mobile-sticky-buy button{
    border-radius:7px;
  }
}

@media(max-width:420px){
  .premium-product-actions{
    grid-template-columns:1fr;
  }

  .main-product-frame{
    min-height:350px;
  }

  .premium-product-page #productImage{
    height:350px;
  }
}

/* Product page mobile polish */
@media(max-width:768px){
  .premium-product-page{
    overflow-x:hidden;
  }

  .premium-product-page .product-offer-bar{
    width:100%;
    padding:9px 10px;
    justify-content:flex-start;
    gap:8px;
    overflow-x:auto;
    flex-wrap:nowrap;
    scrollbar-width:none;
  }

  .premium-product-page .product-offer-bar::-webkit-scrollbar{
    display:none;
  }

  .premium-product-page .product-offer-bar span{
    flex:0 0 auto;
    font-size:11px;
    white-space:nowrap;
  }

  .premium-product-page .premium-product-header{
    position:sticky;
    top:0;
    z-index:50;
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    padding:12px;
  }

  .premium-product-page .product-logo{
    width:100%;
    font-size:24px;
    line-height:1.1;
    text-align:center;
    white-space:normal;
  }

  .premium-product-page .premium-product-header nav{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:6px;
  }

  .premium-product-page .premium-product-header nav a{
    min-width:0;
    min-height:36px;
    padding:8px 4px;
    justify-content:center;
    font-size:11px;
    line-height:1;
    text-align:center;
  }

  .premium-product-page .premium-product-shell{
    width:100%;
    padding:14px 10px 108px;
  }

  .premium-product-page .product-breadcrumb{
    margin-bottom:12px;
    font-size:11px;
  }

  .premium-product-page .premium-product-layout,
  .premium-product-page .product-story-grid,
  .premium-product-page .size-chart-layout,
  .premium-product-page .premium-review-grid,
  .premium-product-page .product-payment-note,
  .premium-product-page .product-service-strip,
  .premium-product-page .premium-related-products .premium-product-grid{
    width:100%;
    max-width:100%;
    grid-template-columns:minmax(0, 1fr);
  }

  .premium-product-page .premium-product-gallery,
  .premium-product-page .premium-product-info,
  .premium-product-page .product-story-card,
  .premium-product-page .product-order-process,
  .premium-product-page .product-size-chart-section,
  .premium-product-page .product-info-tabs,
  .premium-product-page .premium-reviews-section,
  .premium-product-page .premium-related-products{
    width:100%;
    max-width:100%;
  }

  .premium-product-page .premium-product-gallery{
    padding:10px;
    border-radius:8px;
  }

  .premium-product-page .gallery-badges{
    top:18px;
    left:18px;
    right:18px;
  }

  .premium-product-page .main-product-frame{
    min-height:auto;
    aspect-ratio:4 / 5;
    width:100%;
  }

  .premium-product-page #productImage{
    width:100%;
    max-width:100%;
    height:100%;
    object-fit:contain;
  }

  .premium-product-page .premium-thumb-gallery{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:7px;
  }

  .premium-product-page .premium-thumb-gallery img{
    height:auto;
    aspect-ratio:1 / 1.25;
    min-width:0;
  }

  .premium-product-page .premium-product-info{
    padding:16px;
    border-radius:8px;
  }

  .premium-product-page .premium-product-info h1{
    font-size:30px !important;
    line-height:1.08;
    word-break:normal;
    overflow-wrap:anywhere;
  }

  .premium-product-page .premium-price-box .new-price{
    font-size:27px;
  }

  .premium-product-page .product-rating-line span{
    font-size:11px;
    padding:7px 8px;
  }

  .premium-product-page .product-choice-panel,
  .premium-product-page .product-story-card,
  .premium-product-page .product-order-process,
  .premium-product-page .measure-guide-card,
  .premium-product-page .product-info-tabs details{
    padding:14px;
    border-radius:8px;
  }

  .premium-product-page .choice-heading{
    align-items:flex-start;
  }

  .premium-product-page .choice-heading button{
    flex:0 0 auto;
    padding:8px 10px;
    font-size:12px;
  }

  .premium-product-page .premium-size-box{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:7px;
  }

  .premium-product-page .premium-size-box button{
    min-width:0;
    min-height:42px;
    padding:8px 4px;
    font-size:13px;
  }

  .premium-product-page .quantity-choice-panel{
    align-items:flex-start;
  }

  .premium-product-page .quantity-stepper{
    flex:0 0 auto;
  }

  .premium-product-page .premium-product-actions{
    grid-template-columns:1fr;
  }

  .premium-product-page .product-service-strip{
    gap:10px;
  }

  .premium-product-page .product-service-strip div{
    padding:14px;
  }

  .premium-product-page .product-story-card h2,
  .premium-product-page .product-order-process h2,
  .premium-product-page .product-size-chart-section h2{
    font-size:25px;
    line-height:1.14;
  }

  .premium-product-page .product-size-chart-section{
    padding:14px;
    overflow:hidden;
  }

  .premium-product-page .size-chart-table-card{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .premium-product-page .product-size-chart{
    min-width:520px;
    font-size:12px;
  }

  .premium-product-page .product-size-chart th,
  .premium-product-page .product-size-chart td{
    padding:11px 10px;
  }

  .premium-product-page .premium-size-popup{
    align-items:flex-end;
    padding:0;
  }

  .premium-product-page .premium-size-popup-content{
    width:100%;
    max-width:100%;
    max-height:86vh;
    border-radius:14px 14px 0 0;
    padding:18px 12px 22px;
    overflow:auto;
  }

  .premium-product-page .premium-size-popup-content table{
    min-width:520px;
    font-size:12px;
  }

  .premium-product-page .premium-size-popup-content th,
  .premium-product-page .premium-size-popup-content td{
    padding:10px 8px;
  }

  .product-auth-card{
    padding:22px 16px;
  }

  .product-auth-card h2{
    font-size:24px;
  }

  .premium-product-page .premium-mobile-sticky-buy{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    gap:8px;
    padding:9px 10px calc(9px + env(safe-area-inset-bottom));
    border-radius:0;
  }

  .premium-product-page .premium-mobile-sticky-buy button{
    min-width:0;
    min-height:46px;
    padding:10px 6px;
    font-size:14px;
    white-space:nowrap;
  }
}

@media(max-width:420px){
  .premium-product-page .premium-product-header nav{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .premium-product-page .premium-product-info h1{
    font-size:26px !important;
  }

  .premium-product-page .premium-thumb-gallery{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .premium-product-page .premium-size-box{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .premium-product-page .product-payment-note{
    gap:8px;
  }

  .premium-product-page .product-size-chart,
  .premium-product-page .premium-size-popup-content table{
    min-width:480px;
  }
}

/* Reviews and admin dashboard */
.review-compose-card{
  display:grid;
  grid-template-columns:minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap:18px;
  align-items:start;
  padding:20px;
  margin:18px 0;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 18px 38px rgba(30,24,22,0.06);
}

.review-compose-card h3{
  font-size:24px;
  margin-bottom:8px;
}

.review-compose-card p{
  color:#6c635d;
  line-height:1.5;
}

.review-form{
  display:grid;
  grid-template-columns:1fr 190px;
  gap:10px;
}

.review-form textarea{
  grid-column:1 / -1;
  min-height:92px;
  resize:vertical;
}

.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:7px;
  padding:13px;
  background:#fffaf7;
  color:var(--ink);
  font:inherit;
}

.review-form button{
  grid-column:1 / -1;
  min-height:46px;
  border:0;
  border-radius:7px;
  background:var(--ink);
  color:white;
  font-weight:900;
  cursor:pointer;
}

.review-message{
  grid-column:1 / -1;
  font-weight:800;
  color:var(--wine);
}

.admin-dashboard-page{
  background:var(--paper);
  color:var(--ink);
  min-height:100vh;
}

.admin-dashboard-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:22px 6%;
  background:white;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:10;
}

.admin-dashboard-header p{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:4px;
}

.admin-dashboard-header h1{
  font-family:Georgia, serif;
  font-size:34px;
}

.admin-dashboard-header nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.admin-dashboard-header a,
.admin-dashboard-header button{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border:1px solid var(--line);
  border-radius:7px;
  background:white;
  color:var(--ink);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
}

.admin-dashboard-header button{
  background:var(--ink);
  color:white;
  border-color:var(--ink);
}

.admin-dashboard-shell{
  width:min(1180px, calc(100% - 28px));
  margin:0 auto;
  padding:28px 0 80px;
}

.admin-summary-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-bottom:18px;
}

.admin-summary-grid div{
  padding:18px;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 14px 30px rgba(30,24,22,0.06);
}

.admin-summary-grid span{
  display:block;
  color:#6c635d;
  font-size:13px;
  margin-bottom:8px;
  font-weight:800;
}

.admin-summary-grid strong{
  font-size:28px;
}

.admin-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:18px;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  margin-bottom:14px;
}

.admin-toolbar h2{
  font-size:25px;
  margin-bottom:4px;
}

.admin-toolbar p{
  color:#6c635d;
}

.admin-toolbar input{
  width:min(420px, 100%);
  min-height:44px;
  border:1px solid var(--line);
  border-radius:7px;
  padding:12px;
  font:inherit;
}

.admin-pin-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  margin-bottom:14px;
  background:#fffaf7;
  border:1px solid var(--line);
  border-radius:10px;
}

.admin-pin-panel[hidden]{
  display:none;
}

.admin-pin-panel h3{
  font-size:22px;
  margin-bottom:4px;
}

.admin-pin-panel p{
  color:#6c635d;
}

.admin-pin-panel form{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.admin-pin-panel input{
  min-height:44px;
  width:190px;
  border:1px solid var(--line);
  border-radius:7px;
  padding:12px;
  font:inherit;
}

.admin-pin-panel button{
  min-height:44px;
  border:1px solid var(--ink);
  border-radius:7px;
  background:var(--ink);
  color:white;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
}

.admin-pin-panel button[type="button"]{
  background:white;
  color:var(--ink);
}

.admin-orders-list{
  display:grid;
  gap:14px;
}

.admin-order-card,
.admin-empty-state{
  padding:20px;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 18px 38px rgba(30,24,22,0.06);
}

.admin-order-top{
  display:flex;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid var(--line);
  padding-bottom:14px;
  margin-bottom:14px;
}

.admin-order-id{
  display:inline-flex;
  margin-bottom:7px;
  color:var(--wine);
  font-size:12px;
  font-weight:900;
}

.admin-order-top h3{
  font-size:22px;
  margin-bottom:4px;
}

.admin-order-top p,
.admin-order-info-grid small,
.admin-address-box small{
  color:#6c635d;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.admin-order-total{
  display:grid;
  justify-items:end;
  gap:8px;
}

.admin-order-total strong{
  font-size:24px;
}

.admin-status-pill{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:#fff3d9;
  color:#8a5600;
  font-size:12px;
  font-weight:900;
}

.admin-status-pill.paid,
.admin-status-pill.confirmed{
  background:#e7f4ec;
  color:#126b37;
}

.admin-status-pill.cash-on-delivery{
  background:#eef2f7;
  color:#27364a;
}

.admin-order-info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-bottom:12px;
}

.admin-order-info-grid div{
  display:grid;
  gap:5px;
  padding:13px;
  background:#fffaf7;
  border:1px solid var(--line);
  border-radius:8px;
}

.admin-order-info-grid a{
  color:var(--ink);
  font-weight:900;
  text-decoration:none;
}

.admin-address-box{
  padding:14px;
  margin-bottom:12px;
  background:var(--sage);
  border:1px solid #d5e2da;
  border-radius:8px;
}

.admin-address-box p{
  margin:7px 0 9px;
  line-height:1.45;
}

.admin-address-box a{
  color:var(--wine);
  font-weight:900;
}

.admin-products-list{
  display:grid;
  gap:10px;
}

.admin-product-row{
  display:grid;
  grid-template-columns:68px minmax(0, 1fr) auto;
  gap:12px;
  align-items:center;
  padding:10px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fffaf7;
}

.admin-product-row img{
  width:68px;
  height:86px;
  object-fit:contain;
  background:white;
  border-radius:6px;
}

.admin-product-row strong,
.admin-product-row span{
  display:block;
}

.admin-product-row span{
  margin-top:5px;
  color:#6c635d;
  font-size:13px;
}

@media(max-width:768px){
  .review-compose-card{
    grid-template-columns:1fr;
    padding:16px;
  }

  .review-form{
    grid-template-columns:1fr;
  }

  .admin-dashboard-header{
    display:grid;
    padding:16px 14px;
  }

  .admin-dashboard-header h1{
    font-size:28px;
  }

  .admin-dashboard-header nav,
  .admin-dashboard-header a,
  .admin-dashboard-header button{
    width:100%;
    justify-content:center;
  }

  .admin-summary-grid,
  .admin-order-info-grid{
    grid-template-columns:1fr;
  }

  .admin-toolbar,
  .admin-pin-panel,
  .admin-order-top{
    display:grid;
  }

  .admin-pin-panel form,
  .admin-pin-panel input,
  .admin-pin-panel button{
    width:100%;
  }

  .admin-order-total{
    justify-items:start;
  }

  .admin-product-row{
    grid-template-columns:58px minmax(0, 1fr);
  }

  .admin-product-row b{
    grid-column:2;
  }
}

/* Business admin console */
.admin-dashboard-page{
  background:#f5f1ec;
}

.admin-dashboard-header{
  padding:16px clamp(16px, 4vw, 54px);
  background:#111;
  color:#fff;
  border-bottom:0;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.admin-brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.admin-brand-lockup > span{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:8px;
  background:#1c1a18;
  font-size:22px;
  font-weight:900;
  font-family:Georgia, serif;
}

.admin-dashboard-header p{
  color:#f2c76c;
  letter-spacing:0;
}

.admin-dashboard-header h1{
  color:#fff;
  font-size:clamp(25px, 3vw, 38px);
  line-height:1;
}

.admin-dashboard-header a,
.admin-dashboard-header button{
  border-color:rgba(255,255,255,0.18);
  background:#1c1a18;
  color:#fff;
  border-radius:6px;
}

.admin-dashboard-header button{
  background:#fff;
  color:#111;
}

.admin-dashboard-shell{
  width:min(1240px, calc(100% - 28px));
  padding:24px 0 90px;
}

.admin-hero-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px;
  margin-bottom:14px;
  background:#fff;
  border:1px solid #e6ddd4;
  border-radius:8px;
  box-shadow:0 16px 34px rgba(31,24,20,0.07);
}

.admin-hero-panel p{
  color:#8b1f2f;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.admin-hero-panel h2{
  max-width:720px;
  margin:5px 0 8px;
  font-size:clamp(26px, 3.4vw, 44px);
  line-height:1.04;
  letter-spacing:0;
}

.admin-hero-panel span{
  color:#6d625b;
  font-weight:800;
}

.admin-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.admin-hero-actions a,
.admin-action-row a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 13px;
  border-radius:6px;
  border:1px solid #d8cfc6;
  background:#fff;
  color:#181615;
  text-decoration:none;
  font-weight:900;
}

.admin-hero-actions a:first-child,
.admin-action-row a:first-child{
  background:#181615;
  color:#fff;
  border-color:#181615;
}

.admin-summary-grid{
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
}

.admin-summary-grid div{
  position:relative;
  overflow:hidden;
  min-height:136px;
  display:grid;
  align-content:start;
  gap:6px;
  padding:17px;
  border-radius:8px;
}

.admin-summary-grid i{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:4px;
  border-radius:8px;
  background:#f6eadb;
  color:#8b1f2f;
}

.admin-summary-grid small{
  color:#81746b;
  font-size:12px;
  font-weight:800;
}

.admin-toolbar{
  border-radius:8px;
  box-shadow:0 14px 28px rgba(31,24,20,0.05);
}

.admin-toolbar h2{
  font-size:24px;
}

.admin-search-box{
  width:min(460px, 100%);
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 12px;
  border:1px solid #d8cfc6;
  border-radius:6px;
  background:#fbfaf8;
}

.admin-search-box i{
  color:#746960;
}

.admin-search-box input{
  width:100%;
  min-height:44px;
  border:0;
  padding:0;
  background:transparent;
  outline:0;
}

.admin-filter-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:0 0 14px;
}

.admin-filter-tabs button{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:1px solid #d8cfc6;
  border-radius:6px;
  background:#fff;
  color:#2a2420;
  font-weight:900;
  cursor:pointer;
}

.admin-filter-tabs button.active{
  background:#8b1f2f;
  border-color:#8b1f2f;
  color:#fff;
}

.admin-filter-tabs span{
  min-width:24px;
  min-height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 7px;
  border-radius:999px;
  background:rgba(0,0,0,0.08);
  font-size:12px;
}

.admin-filter-tabs button.active span{
  background:rgba(255,255,255,0.18);
}

.admin-pin-panel{
  border-radius:8px;
  background:#fff8ec;
  border-color:#ead8bd;
}

.admin-pin-panel h3{
  display:flex;
  gap:9px;
  align-items:center;
}

.admin-order-card,
.admin-empty-state{
  border-radius:8px;
}

.admin-order-card{
  position:relative;
  overflow:hidden;
}

.admin-order-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:#8b1f2f;
}

.admin-order-id{
  color:#8b1f2f;
  letter-spacing:0;
}

.admin-status-pill{
  border-radius:6px;
}

.admin-status-pill.pending,
.admin-status-pill.created{
  background:#fff4d9;
  color:#876018;
}

.admin-status-pill.cancelled,
.admin-status-pill.canceled{
  background:#fde8e8;
  color:#a32222;
}

.admin-order-info-grid div{
  border-radius:6px;
  background:#fbfaf8;
}

.admin-order-info-grid small,
.admin-address-box small{
  display:flex;
  gap:7px;
  align-items:center;
  letter-spacing:0;
}

.admin-address-box{
  background:#eef6ef;
  border-color:#d5e6d7;
  border-radius:6px;
}

.admin-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.admin-products-list h4{
  font-size:15px;
  margin-bottom:2px;
}

.admin-product-row{
  border-radius:6px;
}

.admin-empty-state{
  min-height:220px;
  display:grid;
  place-items:center;
  text-align:center;
}

.admin-empty-state i{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f6eadb;
  color:#8b1f2f;
  font-size:22px;
}

@media(max-width:1100px){
  .admin-summary-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:768px){
  .admin-dashboard-header{
    position:static;
    gap:14px;
  }

  .admin-brand-lockup{
    align-items:flex-start;
  }

  .admin-dashboard-header nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .admin-dashboard-header button{
    grid-column:1 / -1;
  }

  .admin-dashboard-shell{
    width:min(100% - 20px, 1240px);
    padding-top:14px;
  }

  .admin-hero-panel{
    display:grid;
    padding:16px;
  }

  .admin-hero-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    justify-content:stretch;
  }

  .admin-summary-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .admin-summary-grid div{
    min-height:126px;
    padding:14px;
  }

  .admin-summary-grid strong{
    font-size:24px;
  }

  .admin-toolbar{
    display:grid;
    padding:15px;
  }

  .admin-search-box{
    width:100%;
  }

  .admin-filter-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .admin-filter-tabs button:first-child{
    grid-column:1 / -1;
  }

  .admin-order-card{
    padding:16px;
  }

  .admin-action-row{
    display:grid;
    grid-template-columns:1fr;
  }
}

@media(max-width:420px){
  .admin-summary-grid{
    grid-template-columns:1fr;
  }

  .admin-hero-actions,
  .admin-dashboard-header nav{
    grid-template-columns:1fr;
  }

  .admin-product-row{
    grid-template-columns:54px minmax(0, 1fr);
  }
}

/* Product page phone menu */
@media(max-width:768px){
  .premium-product-page .premium-product-header{
    grid-template-columns:minmax(0, 1fr) 44px;
    align-items:center;
    gap:10px;
    padding:10px 12px;
  }

  .premium-product-page .product-logo{
    width:auto;
    text-align:left;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .premium-product-page .product-menu-toggle{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:8px;
    background:var(--ink);
    color:white;
    font-size:18px;
    cursor:pointer;
  }

  .premium-product-page .premium-product-header nav{
    grid-column:1 / -1;
    width:100%;
    display:none;
    grid-template-columns:1fr;
    gap:8px;
    padding:8px;
    border:1px solid var(--line);
    border-radius:10px;
    background:white;
    box-shadow:0 16px 34px rgba(30,24,22,0.12);
  }

  .premium-product-page .premium-product-header.menu-open nav{
    display:grid;
  }

  .premium-product-page .premium-product-header nav a{
    min-height:44px;
    padding:12px;
    justify-content:flex-start;
    font-size:14px;
    border-radius:7px;
  }
}

@media(max-width:420px){
  .premium-product-page .premium-product-header nav{
    grid-template-columns:1fr;
  }

  .premium-product-page .product-logo{
    font-size:23px;
  }
}

/* Premium cart page */
.premium-cart-page{
  --cart-ink:#171211;
  --cart-muted:#6d625b;
  --cart-line:#e6d9d0;
  --cart-paper:#f8f3ef;
  --cart-gold:#a87b2d;
  --cart-sage:#eaf1ec;
  min-height:100vh;
  background:var(--cart-paper);
  color:var(--cart-ink);
}

.cart-offer-bar{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  padding:8px 18px;
  background:var(--cart-ink);
  color:white;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  text-align:center;
}

.premium-cart-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 6%;
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--cart-line);
  backdrop-filter:blur(10px);
}

.cart-logo{
  font-family:Georgia, serif;
  font-size:34px;
  font-weight:bold;
  color:var(--cart-ink);
  text-decoration:none;
  white-space:nowrap;
}

.premium-cart-header nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.premium-cart-header nav a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--cart-line);
  border-radius:7px;
  color:var(--cart-ink);
  background:white;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

.premium-cart-shell{
  padding:34px 6% 80px;
  background:
    radial-gradient(circle at top left, rgba(234,241,236,0.96), transparent 30%),
    linear-gradient(135deg, rgba(247,238,241,0.78), rgba(255,255,255,0) 46%),
    var(--cart-paper);
}

.cart-hero-title{
  max-width:1240px;
  margin:0 auto 24px;
}

.cart-hero-title p,
.cart-panel-heading p{
  color:var(--cart-gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:7px;
}

.cart-hero-title h1{
  font-family:Georgia, serif;
  font-size:clamp(38px, 5vw, 68px);
  line-height:1;
  margin-bottom:10px;
}

.cart-hero-title span{
  color:var(--cart-muted);
  font-weight:800;
}

.premium-cart-layout{
  max-width:1240px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap:22px;
  align-items:start;
}

.premium-cart-left{
  display:grid;
  gap:18px;
}

.cart-list-panel,
.cart-checkout-panel,
.cart-summary-card{
  background:rgba(255,255,255,0.98);
  border:1px solid var(--cart-line);
  border-radius:10px;
  box-shadow:0 20px 44px rgba(30,24,22,0.08);
}

.cart-list-panel,
.cart-checkout-panel{
  padding:22px;
}

.cart-panel-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.cart-panel-heading h2{
  font-size:24px;
  line-height:1.15;
}

.cart-panel-heading a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border:1px solid var(--cart-ink);
  border-radius:7px;
  color:var(--cart-ink);
  background:white;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}

.premium-cart-items{
  display:grid;
  gap:12px;
}

.premium-cart-item{
  display:grid;
  grid-template-columns:116px minmax(0, 1fr) minmax(140px, auto);
  gap:16px;
  align-items:center;
  padding:14px;
  border:1px solid var(--cart-line);
  border-radius:9px;
  background:#fffaf7;
}

.cart-item-image{
  width:116px;
  aspect-ratio:4 / 5;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:white;
  overflow:hidden;
}

.cart-item-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.cart-item-info span{
  display:block;
  color:var(--cart-gold);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:6px;
}

.cart-item-info h3{
  font-size:20px;
  line-height:1.2;
  margin-bottom:7px;
}

.cart-item-info p{
  color:var(--cart-muted);
  line-height:1.45;
  font-size:13px;
}

.cart-item-price-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
}

.cart-item-price-line strong{
  font-size:18px;
}

.cart-item-price-line del{
  color:#998f88;
  font-size:13px;
}

.cart-item-controls{
  display:grid;
  justify-items:end;
  gap:11px;
}

.cart-qty-stepper{
  display:flex;
  align-items:center;
  gap:8px;
  padding:5px;
  border:1px solid var(--cart-line);
  border-radius:999px;
  background:white;
}

.cart-qty-stepper button{
  width:32px;
  height:32px;
  border:0;
  border-radius:50%;
  background:var(--cart-ink);
  color:white;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.cart-qty-stepper b{
  min-width:24px;
  text-align:center;
}

.cart-remove-btn{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 11px;
  border:1px solid #f0cfc9;
  border-radius:7px;
  background:#fff5f3;
  color:#8c2418;
  font-weight:900;
  cursor:pointer;
}

.premium-empty-cart{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px;
  border:1px dashed var(--cart-line);
  border-radius:10px;
  background:#fffaf7;
}

.premium-empty-cart i{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  border-radius:50%;
  background:var(--cart-ink);
  color:white;
  font-size:23px;
}

.premium-empty-cart h3{
  font-size:25px;
  margin-bottom:7px;
}

.premium-empty-cart p{
  color:var(--cart-muted);
  margin-bottom:18px;
}

.premium-empty-cart a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:7px;
  background:var(--cart-ink);
  color:white;
  text-decoration:none;
  font-weight:900;
}

.cart-field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.cart-checkout-panel label,
.cart-coupon-box label{
  display:block;
  margin-bottom:7px;
  font-size:13px;
  font-weight:900;
}

.cart-checkout-panel input,
.cart-checkout-panel textarea,
.cart-checkout-panel select,
.cart-coupon-box input{
  width:100%;
  border:1px solid var(--cart-line);
  border-radius:7px;
  padding:13px;
  background:#fffaf7;
  color:var(--cart-ink);
  font:inherit;
}

.cart-checkout-panel .delivery-field label{
  position:absolute;
  top:10px;
  left:13px;
  z-index:1;
  margin:0 !important;
  color:#65717f !important;
  font-size:12px !important;
  font-weight:500 !important;
  text-transform:none !important;
}

.cart-checkout-panel .delivery-field input,
.cart-checkout-panel .delivery-field select{
  min-height:62px;
  padding:24px 38px 9px 13px !important;
  border-radius:14px !important;
  background:white !important;
}

.cart-checkout-panel .save-info-row{
  margin-top:14px !important;
  font-size:15px;
  font-weight:500;
  text-transform:none;
}

.cart-checkout-panel textarea{
  min-height:104px;
  resize:vertical;
  margin-top:0;
}

.cart-payment-panel{
  margin-top:18px;
  padding:18px;
  border:1px solid var(--cart-line);
  border-radius:10px;
  background:#fffaf7;
}

.cart-payment-options{
  margin-top:12px;
}

.cart-payment-options .payment-option{
  border-radius:8px;
}

.cart-payment-options .payment-option > i{
  margin-left:auto;
  color:#1d7a3a;
  opacity:0;
}

.cart-payment-options .payment-option.active > i{
  opacity:1;
}

.premium-cart-summary{
  position:sticky;
  top:98px;
}

.cart-summary-card{
  padding:22px;
}

.compact-heading{
  margin-bottom:14px;
}

.cart-coupon-box{
  padding:14px;
  margin-bottom:16px;
  border:1px dashed var(--cart-line);
  border-radius:9px;
  background:#fffaf7;
}

.cart-coupon-box div{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:8px;
}

.cart-coupon-box button{
  min-height:44px;
  padding:0 14px;
  border:0;
  border-radius:7px;
  background:var(--cart-ink);
  color:white;
  font-weight:900;
  cursor:pointer;
}

.cart-coupon-box small{
  display:block;
  margin-top:8px;
  color:var(--cart-muted);
  line-height:1.4;
}

.premium-cart-summary .summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:13px 0;
  margin:0;
  border-bottom:1px solid var(--cart-line);
}

.premium-cart-summary .summary-row span{
  color:var(--cart-muted);
  font-weight:800;
}

.premium-cart-summary .summary-row strong{
  font-size:16px;
}

.premium-cart-summary .total-row{
  border-bottom:0;
  padding:18px 0;
}

.premium-cart-summary .total-row span,
.premium-cart-summary .total-row strong{
  color:var(--cart-ink);
  font-size:22px;
}

.cart-place-order-btn{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  border-radius:8px;
  background:var(--cart-ink);
  color:white;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}

.cart-place-order-btn:disabled{
  opacity:0.65;
  cursor:not-allowed;
}

.cart-trust-list{
  display:grid;
  gap:9px;
  margin-top:16px;
}

.cart-trust-list span{
  display:flex;
  align-items:center;
  gap:9px;
  padding:10px;
  border-radius:7px;
  background:var(--cart-sage);
  color:#374a3d;
  font-weight:900;
  font-size:13px;
}

.cart-trust-list i{
  color:#1e6e3a;
}

@media(max-width:1080px){
  .premium-cart-layout{
    grid-template-columns:1fr;
  }

  .premium-cart-summary{
    position:static;
  }
}

@media(max-width:768px){
  .cart-offer-bar{
    justify-content:flex-start;
    gap:10px;
    overflow-x:auto;
    flex-wrap:nowrap;
    scrollbar-width:none;
  }

  .cart-offer-bar::-webkit-scrollbar{
    display:none;
  }

  .cart-offer-bar span{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:11px;
  }

  .premium-cart-header{
    display:grid;
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .cart-logo{
    font-size:27px;
    text-align:center;
  }

  .premium-cart-header nav{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:7px;
  }

  .premium-cart-header nav a{
    min-width:0;
    min-height:36px;
    justify-content:center;
    padding:8px 5px;
    font-size:12px;
    text-align:center;
  }

  .premium-cart-shell{
    padding:22px 10px 92px;
  }

  .cart-list-panel,
  .cart-checkout-panel,
  .cart-summary-card{
    padding:15px;
    border-radius:8px;
  }

  .cart-panel-heading{
    display:grid;
    gap:10px;
  }

  .cart-panel-heading a{
    justify-content:center;
  }

  .premium-cart-item{
    grid-template-columns:86px minmax(0, 1fr);
    align-items:start;
    gap:12px;
    padding:11px;
  }

  .cart-item-image{
    width:86px;
  }

  .cart-item-info h3{
    font-size:17px;
  }

  .cart-item-controls{
    grid-column:1 / -1;
    grid-template-columns:1fr auto;
    justify-items:start;
    align-items:center;
    gap:10px;
  }

  .cart-remove-btn{
    grid-column:1 / -1;
    width:100%;
    justify-content:center;
  }

  .cart-field-grid,
  .payment-options{
    grid-template-columns:1fr;
  }

  .cart-coupon-box div{
    grid-template-columns:1fr;
  }
}

/* Mobile QA fixes */
@media(max-width:768px){
  .checkout-header{
    display:grid !important;
    grid-template-columns:1fr;
    gap:10px;
    align-items:center;
    padding:12px 14px !important;
  }

  .checkout-header .logo{
    width:100% !important;
    margin:0 !important;
    text-align:center !important;
    font-size:28px !important;
    line-height:1.05;
    white-space:normal;
    overflow:visible;
  }

  .account-header-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .account-header-actions .header-btn{
    width:100%;
    min-height:42px;
    padding:9px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:13px;
    line-height:1.15;
  }

  .account-page{
    padding:22px 14px 118px;
  }

  .account-hero,
  .account-panel{
    border-radius:10px;
  }

  .account-hero{
    padding:22px;
    margin-bottom:20px;
  }

  .account-hero h1{
    font-size:27px;
    line-height:1.08;
  }

  .primary-otp-auth,
  .auth-benefits-box{
    padding:18px;
  }

  .offer-bar,
  .product-offer-bar,
  .cart-offer-bar,
  .checkout-offer-bar{
    min-height:auto;
    overflow:hidden !important;
  }

  .product-offer-bar,
  .cart-offer-bar,
  .checkout-offer-bar{
    transform:none !important;
    animation:none !important;
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:8px 12px !important;
    white-space:normal !important;
  }

  .product-offer-bar span,
  .cart-offer-bar span,
  .checkout-offer-bar span{
    flex:0 1 auto !important;
    white-space:normal !important;
    text-align:center;
    line-height:1.25;
  }

  .premium-product-page .product-offer-bar,
  .cart-offer-bar{
    overflow-x:hidden !important;
  }

  .size-table-wrap,
  .premium-size-popup-content{
    max-width:100%;
    overflow-x:auto;
  }
}

@media(max-width:390px){
  .account-header-actions{
    grid-template-columns:1fr;
  }

  .checkout-header .logo{
    font-size:26px !important;
  }
}

@media(max-width:420px){
  .premium-cart-header nav{
    grid-template-columns:1fr;
  }

  .cart-hero-title h1{
    font-size:36px;
  }
}

@media(max-width:768px){
  body .header.checkout-header{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    gap:10px !important;
    padding:12px 14px !important;
  }

  body .header.checkout-header > .logo{
    order:1 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    display:block !important;
    text-align:center !important;
    font-size:28px !important;
    line-height:1.05 !important;
    white-space:normal !important;
  }

  body .header.checkout-header > .account-header-actions{
    order:2 !important;
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }
}

@media(max-width:390px){
  body .header.checkout-header > .account-header-actions{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:768px){
  .boutique-pills{
    display:flex !important;
    flex-wrap:wrap !important;
    overflow:visible !important;
    gap:8px !important;
  }

  .boutique-pills button{
    flex:1 1 calc(50% - 8px);
    min-width:0;
    white-space:normal;
  }

  .premium-product-page .product-size-chart,
  .premium-product-page .premium-size-popup-content table,
  .product-size-chart,
  .premium-size-popup-content table{
    min-width:0 !important;
    width:100% !important;
    table-layout:fixed;
  }

  .premium-product-page .product-size-chart th,
  .premium-product-page .product-size-chart td,
  .product-size-chart th,
  .product-size-chart td{
    padding:8px 4px !important;
    font-size:11px !important;
    line-height:1.25;
    word-break:break-word;
  }
}

@media(max-width:768px){
  body.boutique-home .offer-bar{
    min-height:34px !important;
    display:flex;
    align-items:center;
  }

  body.boutique-home .offer-track{
    width:max-content !important;
    max-width:none !important;
    min-width:max-content !important;
    margin-left:0 !important;
    padding:0 !important;
    flex-wrap:nowrap !important;
    justify-content:flex-start !important;
    gap:32px !important;
    white-space:nowrap !important;
    animation:none !important;
  }

  body.boutique-home .offer-track span{
    flex:0 0 auto !important;
    white-space:nowrap !important;
    font-size:11px !important;
    line-height:1;
  }

  .boutique-strip{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:1px !important;
  }

  .boutique-strip span{
    min-height:52px !important;
    padding:8px 5px;
    gap:5px;
    flex-direction:column;
    font-size:11px;
    line-height:1.2;
  }

  .boutique-strip i{
    font-size:15px;
  }
}

@keyframes mobileOfferScroll{
  from{ transform:translateX(100vw); }
  to{ transform:translateX(-100%); }
}

@keyframes mobileOfferSlide{
  from{ margin-left:100vw; }
  to{ margin-left:-920px; }
}
