/* ================================================
   VANVASTRA – FASHION STORE STYLESHEET
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..700&family=Work+Sans:ital,wght@0,300..700;1,300..600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #b26e57;
  --primary-dark: #9b5144;
  --primary-light: rgba(178,110,87,.1);
  --secondary: #2c2b29;
  --dark: #2c2b29;
  --brown: #d4b48b;
  --blush: #e7c2b9;
  --bg-light: #faf8f6;
  --bg-white: #fff;
  --border: #ece9e5;
  --text: #5a5450;
  --text-muted: #9a948f;
  --shadow-sm: 0 2px 8px rgba(44,43,41,.07);
  --shadow-md: 0 6px 24px rgba(44,43,41,.12);
  --shadow-lg: 0 12px 48px rgba(44,43,41,.16);
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s ease;
  --font: 'Work Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font); font-size: 14px; letter-spacing: 0.3px; color: var(--text); background: #fff; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); color: var(--secondary); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dark); }
p { margin: 0; line-height: 1.7; }
img { max-width: 100%; height: auto; }
button:focus { outline: none !important; box-shadow: none !important; }
section { padding: 70px 0; }

/* ============================================================
   ALERTS / NOTIFICATIONS
   ============================================================ */
#alert { z-index: 9999; pointer-events: all; }
#alert .alert {
  min-width: 340px; max-width: 380px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  border: 0; border-left: 4px solid var(--primary);
  background: #fff; padding: 14px 16px;
}
#alert .alert i { color: var(--primary); }
.alert-success { border-left-color: #2ecc71 !important; background: #f0faf5 !important; }
.alert-danger  { border-left-color: #e74c3c !important; background: #fdf3f2 !important; }
.alert-dismissible .btn-close { transition: var(--transition); }
.alert-dismissible .btn-close:hover { transform: rotate(90deg); }
@media(max-width:576px){ #alert .alert { min-width: 90vw; max-width: 90vw; } }

/* ============================================================
   BREADCRUMB / PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #4a3830 100%);
  padding: 52px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; font-size: 34px; font-weight: 800; margin-bottom: 8px; position: relative; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 15px; position: relative; }
.page-hero .breadcrumb { justify-content: center; margin-top: 14px; position: relative; background: transparent; padding: 0; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: 13px; }
.page-hero .breadcrumb-item a:hover { color: var(--primary); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: 13px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); }
.btn-primary:hover,.btn-primary:focus { background: var(--dark); border-color: var(--dark); color: #fff; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary) !important; border-color: var(--primary) !important; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-label { font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-control { font-size: 14px; border-color: var(--border); border-radius: var(--radius); height: 44px; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(178,110,87,.15); }
textarea.form-control { height: auto; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { margin: 0 0 40px; text-align: center; }
.section-heading h2 { font-weight: 800; font-size: 24px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.section-heading p { color: var(--text-muted); font-size: 15px; margin-top: 10px; }
.section-heading hr { width: 50px; border: none; border-top: 3px solid var(--primary); margin: 0 auto; opacity: 1; }

/* ============================================================
   TOP BAR
   ============================================================ */
#top { background: #1a1a1a; color: #aaa; padding: 7px 0; font-size: 13px; }
#top .list-inline { margin: 0; }
#top .list-inline-item > a { color: #9ca3af; transition: var(--transition); font-size: 13px; }
#top .list-inline-item > a:hover { color: var(--primary); }
.header-social { display: flex; align-items: center; gap: 12px; justify-content: end; }
.welcom-text { display: flex; align-items: center; gap: 8px; }
.welcom-text p { color: #9ca3af; font-size: 12px; }

/* ============================================================
   LOGO & HEADER
   ============================================================ */
#logo { text-align: center; padding: 4px 0; }
#logo h1 { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin: 0; line-height: 1.1; }
#logo h1 a { color: inherit; text-decoration: none; }
/* Transparent PNG logo — displays naturally at all sizes */
.site-logo {
  display: block;
  height: 54px;
  width: auto;
  margin: 0 auto;
}
@media(max-width: 991px){ .site-logo { height: 46px; } }
@media(max-width: 576px){ .site-logo { height: 38px; } }
#logo h1 span { color: var(--primary); }
#logo small { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); font-weight: 400; display: block; }

header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; box-shadow: var(--shadow-sm); }
.header-inner { padding: 6px 0; }

ul.header-lang-currency { margin: 0; }
.header-lang-currency li a { color: var(--dark); font-size: 12px; transition: var(--transition); display: flex; align-items: center; gap: 4px; }
.header-lang-currency li a:hover { color: var(--primary); }

/* Header Icons */
.head-icon { display: flex; align-items: center; gap: 6px; color: var(--dark); cursor: pointer; transition: var(--transition); padding: 7px; border-radius: var(--radius); }
.head-icon:hover { color: var(--primary); background: var(--primary-light); }
.head-icon svg { width: 22px; height: 22px; fill: currentColor; }

/* Account Dropdown */
.head-user .dropdown-toggle { color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.head-user .dropdown-toggle::after { display: none; }
.head-user svg { width: 22px; height: 22px; fill: var(--dark); transition: var(--transition); }
.head-user:hover .dropdown-toggle { color: var(--primary); }
.head-user:hover svg { fill: var(--primary); }
.account-dropdown { min-width: 210px; padding: 8px; border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-lg); }
.account-dropdown .dropdown-item { border-radius: var(--radius); padding: 9px 14px; transition: var(--transition); font-size: 13px; display: flex; align-items: center; gap: 10px; color: var(--dark); }
.account-dropdown .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.account-dropdown .dropdown-item i { width: 16px; text-align: center; }
.account-dropdown hr { margin: 4px 0; border-color: var(--border); }

/* Cart Dropdown */
#cart button.dropdown-toggle { border: none; padding: 7px; background: transparent; color: var(--dark); display: flex; align-items: center; gap: 6px; transition: var(--transition); border-radius: var(--radius); }
#cart button.dropdown-toggle::after { display: none; }
#cart svg { width: 24px; height: 24px; fill: var(--dark); transition: var(--transition); }
#cart:hover button.dropdown-toggle { color: var(--primary); background: var(--primary-light); }
#cart:hover svg { fill: var(--primary); }
.header-cart-items { display: block; max-height: 280px; overflow-y: auto; }
.cart-item-mini { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-mini img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-item-mini .item-info { flex: 1; min-width: 0; }
.cart-item-mini .item-name { font-size: 13px; font-weight: 600; color: var(--secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-mini .item-price { font-size: 13px; color: var(--primary); font-weight: 700; }
.header-item-remove { background: transparent; border: none; padding: 4px 6px; color: #ccc; font-size: 15px; transition: var(--transition); cursor: pointer; }
.header-item-remove:hover { color: #e74c3c; }
.header-cart-checkout .btn { flex: 1; }
#cart .dropdown-menu { min-width: 310px; padding: 16px; border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-lg); }
.cart-total-row { border-top: 2px solid var(--border); padding-top: 12px; margin-top: 8px; display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.menu-bg { background: var(--primary); }
.hsticky { background: var(--primary); transition: var(--transition); }
.fixed { position: fixed; z-index: 998; top: 0; box-shadow: 0 3px 20px rgba(0,0,0,.2); background: var(--dark) !important; left: 0; right: 0; transition: var(--transition); }

#menu { background: transparent; padding: 0; margin: 0; min-height: 48px; }
#menu .navbar-nav > li > a { color: rgba(255,255,255,.9); text-transform: capitalize; font-size: 14px; font-weight: 500; padding: 13px 15px; transition: var(--transition); display: flex; align-items: center; gap: 4px; }
#menu .navbar-nav > li > a:hover { color: #fff; opacity: 0.85; }
#menu .navbar-nav > li.active > a { color: #fff; font-weight: 700; }
#menu .dropdown-menu { border-radius: 0 0 var(--radius-md) var(--radius-md); border: none; box-shadow: var(--shadow-lg); padding: 8px; margin-top: 0; border-top: 3px solid var(--primary); animation: menuFadeIn .2s ease; }
@keyframes menuFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
#menu .dropdown-item { font-size: 13px; padding: 8px 14px; transition: var(--transition); color: var(--dark); border-radius: var(--radius); }
#menu .dropdown-item:hover { color: var(--primary) !important; background: var(--primary-light); padding-left: 18px; }
#menu .dropdown-inner { display: flex; }
#menu .dropdown-inner ul { min-width: 180px; }
@media(min-width:992px) { #menu .dropdown:hover .dropdown-menu { display: block; } }
#menu .navbar-toggler { border: none; }
.mobile-menu.offcanvas { width: 290px; }
.mobile-menu .offcanvas-header { background: var(--dark); padding: 14px 20px; }
.mobile-menu .offcanvas-title { color: #fff; font-size: 18px; font-weight: 700; }
.mobile-menu .btn-close { filter: invert(1); }
.mobile-menu .offcanvas-body { padding: 12px 0; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; color: var(--dark); font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-nav-link:hover { color: var(--primary); background: var(--primary-light); padding-left: 24px; }
.menu-bar-icon { color: #fff; font-size: 22px; padding: 10px 16px; display: inline-block; cursor: pointer; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide { position: relative; min-height: 560px; display: flex !important; align-items: center; background-size: cover; background-position: center; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 60px 0; max-width: 580px; }
.hero-content .sub-title { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--primary); margin-bottom: 16px; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.hero-content .sub-title::after { content: ''; display: inline-block; width: 40px; height: 2px; background: var(--primary); }
.hero-content h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 18px; color: #fff; }
.hero-content p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 32px; line-height: 1.8; max-width: 460px; }
.btn-hero-primary { background: var(--primary); color: #fff; padding: 14px 34px; border-radius: var(--radius); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: var(--transition); font-size: 13px; }
.btn-hero-primary:hover { background: #fff; color: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-hero-outline { background: transparent; color: #fff; padding: 14px 34px; border-radius: var(--radius); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: var(--transition); font-size: 13px; border: 2px solid rgba(255,255,255,.5); }
.btn-hero-outline:hover { background: #fff; color: var(--dark); border-color: #fff; transform: translateY(-2px); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--brown); font-weight: 600; margin-bottom: 14px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(36px,5vw,58px); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 18px; }
.hero-title em { color: var(--brown); font-style: italic; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next { width: 44px; height: 44px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border-radius: 50%; opacity: 0; transition: var(--transition); backdrop-filter: blur(4px); }
.hero-slider:hover .carousel-control-prev { left: 24px; opacity: 1; }
.hero-slider:hover .carousel-control-next { right: 24px; opacity: 1; }
.hero-slider .carousel-control-prev:hover, .hero-slider .carousel-control-next:hover { background: var(--primary); }
.carousel-indicators { bottom: 20px !important; gap: 6px; }
.carousel-indicators button { width: 10px !important; height: 10px !important; border-radius: 50% !important; border: none !important; opacity: 0.35 !important; background: #fff !important; }
.carousel-indicators button.active { background: var(--primary) !important; opacity: 1 !important; width: 28px !important; border-radius: 10px !important; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; display: block; text-decoration: none; transition: var(--transition); }
.category-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; display: block; }
.category-card:hover img { transform: scale(1.08); }
.category-card:hover { transform: translateY(-4px); }
.category-card .category-info h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }
.category-card .category-info span { font-size: 12px; color: var(--text-muted); }
.category-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.08) 65%); display: flex; align-items: flex-end; padding: 18px 16px; transition: var(--transition); }
.category-card:hover .overlay { background: linear-gradient(to top, rgba(0,0,0,.76) 0%, rgba(0,0,0,.15) 65%); }
.category-card .overlay h5 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.category-card .overlay span { color: rgba(255,255,255,.75); font-size: 11px; display: block; margin-top: 2px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-thumb { position: relative; height: 100%; background: #fff; border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); }
.product-thumb:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.product-thumb .image { text-align: center; position: relative; overflow: hidden; background: var(--bg-light); aspect-ratio: 1; }
.product-thumb .image img { transition: transform .5s ease; width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover .image img { transform: scale(1.06); }
.product-thumb .description { padding: 14px 14px 16px; text-align: center; }
.product-thumb .description h4 { font-weight: 600; font-size: 14px; margin-bottom: 6px; letter-spacing: 0; transition: var(--transition); }
.product-thumb .description h4 a { color: var(--secondary); text-decoration: none; }
.product-thumb .description h4:hover a { color: var(--primary); }
.product-thumb .button { display: flex; position: absolute; width: 100%; bottom: -100%; left: 0; align-items: center; justify-content: center; gap: 8px; padding: 10px 12px; background: rgba(255,255,255,.96); backdrop-filter: blur(4px); transition: 0.32s ease; }
.product-thumb:hover .button { bottom: 0; }
.product-thumb .button button { border: 2px solid var(--border); width: 38px; height: 38px; background: #fff; color: var(--dark); border-radius: 50%; transition: var(--transition); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-thumb .button button:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.1); }
.product-thumb .button button.btn-add-cart { width: auto; border-radius: var(--radius); padding: 0 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; background: var(--primary); border-color: var(--primary); color: #fff; flex: 1; height: 38px; gap: 6px; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
.product-thumb .button button.btn-add-cart:hover { background: var(--dark); border-color: var(--dark); transform: none; }
.product-thumb .button button svg { width: 15px; height: 15px; fill: currentColor; }
.price-new { font-weight: 700; font-size: 16px; color: var(--dark); }
.price-old { color: #bbb; text-decoration: line-through; font-size: 12px; margin-left: 4px; }
.rating { display: flex; gap: 2px; justify-content: center; margin-bottom: 6px; }
.rating .fa-star, .rating .fa-star-half-stroke { color: #ffc107; font-size: 12px; }
.rating .fa-regular.fa-star { color: #ddd; }
.you-save { position: absolute; top: 10px; left: 10px; padding: 3px 8px; font-size: 10px; border-radius: 20px; font-weight: 700; background: #2ecc71; color: #fff; text-transform: uppercase; z-index: 2; }
.discount-onprice { position: absolute; top: 10px; right: 10px; padding: 3px 8px; font-size: 10px; border-radius: 20px; font-weight: 700; background: #e74c3c; color: #fff; z-index: 2; }

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-banner { position: relative; overflow: hidden; border-radius: var(--radius-md); display: block; text-decoration: none; }
.promo-banner img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; display: block; }
.promo-banner:hover img { transform: scale(1.05); }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.62) 0%, transparent 70%); }
.promo-banner .promo-text { position: absolute; top: 50%; left: 30px; transform: translateY(-50%); }
.promo-banner .promo-text span { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); font-weight: 700; display: block; margin-bottom: 8px; }
.promo-banner .promo-text h3 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.2; }
.promo-banner .promo-text .btn-promo { background: var(--primary); color: #fff; padding: 9px 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border-radius: var(--radius); font-weight: 700; display: inline-block; transition: var(--transition); }
.promo-banner .promo-text .btn-promo:hover { background: #fff; color: var(--dark); }

/* ============================================================
   PRODUCT TABS
   ============================================================ */
.tab-products .nav-tabs { border: 0; }
.tab-products .nav-item .btn-tab { background: transparent; border: none; color: #aaa; padding: 5px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; position: relative; cursor: pointer; transition: var(--transition); }
.tab-products .nav-item .btn-tab:hover { color: var(--primary); }
.tab-products .nav-item .btn-tab.active { color: var(--primary); }
.tab-products .nav-item .btn-tab.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--primary); border-radius: 2px; }

/* ============================================================
   SERVICE / DELIVERY BAR
   ============================================================ */
.service-section { background: #2b2b2b; padding: 32px 0; }
.service-item { display: flex; align-items: center; gap: 16px; padding: 4px 0; }
.service-icon { width: 52px; height: 52px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.service-item:hover .service-icon { background: var(--primary); }
.service-icon svg { width: 24px; height: 24px; fill: #aaa; transition: var(--transition); }
.service-item:hover .service-icon svg { fill: #fff; }
.service-info h4 { font-size: 14px; font-weight: 700; color: #ddd; margin: 0 0 2px; }
.service-info p { font-size: 12px; color: #888; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--bg-light); padding: 70px 0; }
.testi-item { max-width: 680px; margin: 0 auto; text-align: center; padding: 20px 30px; }
.testi-avatar { width: 82px; height: 82px; border-radius: 50%; border: 3px solid var(--primary); object-fit: cover; margin: 0 auto 20px; display: block; }
.testi-quote { color: #555; font-size: 16px; line-height: 1.9; font-style: italic; margin-bottom: 20px; position: relative; padding: 0 10px; }
.testi-quote::before { content: '\201C'; font-size: 72px; line-height: 0; position: absolute; top: 22px; left: -6px; color: var(--primary); opacity: 0.25; font-style: normal; }
.testi-name { font-size: 15px; font-weight: 700; text-transform: uppercase; color: #333; margin-bottom: 4px; }
.testi-role { font-size: 12px; color: var(--primary); }
.testi-stars { color: #ffc107; margin-bottom: 14px; font-size: 14px; }
.slick-dots li button:before { font-size: 10px; color: var(--primary); }
.slick-dots li.slick-active button:before { color: var(--primary); opacity: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 64px 20px; color: #fff; }
.newsletter-section h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.newsletter-section p { color: rgba(255,255,255,.85); }
.newsletter-form { position: relative; max-width: 520px; }
.newsletter-form .form-control { border-radius: var(--radius); border: 2px solid rgba(255,255,255,.3); height: 52px; padding: 0 150px 0 20px; font-size: 14px; background: rgba(255,255,255,.15); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.7); }
.newsletter-form .form-control:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.2); box-shadow: none; color: #fff; }
.newsletter-form .btn-subscribe { position: absolute; right: 0; top: 0; bottom: 0; background: var(--dark); color: #fff; border-radius: 0 var(--radius) var(--radius) 0; padding: 0 22px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); font-size: 12px; }
.newsletter-form .btn-subscribe:hover { background: #000; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #1e1e1e; color: #aaa; padding-top: 60px; }
.footer-brand h2 { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-brand h2 span { color: var(--primary); }
footer h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 18px; }
footer a { color: #888; text-decoration: none; transition: var(--transition); font-size: 13px; }
footer a:hover { color: var(--primary); }
footer p { font-size: 13px; color: #888; line-height: 1.8; }
footer hr { border-color: #2a2a2a; opacity: 1; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links li a { display: flex; align-items: center; gap: 6px; }
.footer-links li a::before { content: '›'; font-size: 14px; color: var(--primary); opacity: 0; transition: var(--transition); }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links li a:hover::before { opacity: 1; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; color: #888; font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-contact p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; font-size: 13px; }
.footer-contact i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding: 18px 0; background: #161616; margin-top: 44px; }
.footer-bottom p { font-size: 12px; color: #666; margin: 0; }
.footer-bottom a { color: var(--primary); }
.payment-icons img { border-radius: 4px; height: 28px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll { position: fixed; right: 24px; bottom: 60px; cursor: pointer; z-index: 999; width: 44px; height: 44px; display: none; text-align: center; background: var(--primary); color: #fff; border-radius: 50%; transition: var(--transition); text-decoration: none; font-size: 18px; box-shadow: var(--shadow-md); line-height: 44px; }
#scroll:hover { background: var(--dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }

/* ============================================================
   AUTH PAGES (LOGIN / SIGNUP)
   ============================================================ */
.auth-section { min-height: calc(100vh - 200px); display: flex; align-items: center; background: var(--bg-light); padding: 60px 0; }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 48px 44px; max-width: 480px; margin: 0 auto; }
.auth-card h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-card .auth-subtitle { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo a { font-size: 24px; font-weight: 800; color: var(--dark); text-decoration: none; }
.auth-logo a span { color: var(--primary); }
.auth-divider { position: relative; text-align: center; margin: 22px 0; color: var(--text-muted); font-size: 12px; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; border-top: 1px solid var(--border); }
.auth-divider span { background: #fff; padding: 0 14px; position: relative; }
.btn-social { border: 1px solid var(--border); background: #fff; color: var(--dark); font-size: 13px; font-weight: 600; padding: 11px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); width: 100%; cursor: pointer; }
.btn-social:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }
.auth-link { color: var(--text-muted); font-size: 13px; text-align: center; margin-top: 22px; }
.auth-link a { color: var(--primary); font-weight: 600; }
.password-toggle { position: relative; }
.password-toggle .toggle-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); border: none; background: none; color: var(--text-muted); cursor: pointer; font-size: 15px; z-index: 5; }

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.account-sidebar { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; }
.account-sidebar-top { background: linear-gradient(135deg, var(--dark), #4a5040); padding: 28px 20px; text-align: center; }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 12px; border: 3px solid rgba(255,255,255,.2); }
.account-sidebar-top .user-name { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 2px; }
.account-sidebar-top .user-email { font-size: 12px; color: rgba(255,255,255,.65); }
.account-nav { padding: 10px; }
.account-nav .nav-link { color: var(--dark); font-size: 13px; font-weight: 500; padding: 10px 14px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; transition: var(--transition); margin-bottom: 2px; }
.account-nav .nav-link i { width: 18px; text-align: center; color: var(--text-muted); transition: var(--transition); }
.account-nav .nav-link:hover { background: var(--primary-light); color: var(--primary); }
.account-nav .nav-link:hover i { color: var(--primary); }
.account-nav .nav-link.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.account-nav .nav-link.active i { color: var(--primary); }
.account-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.account-card-header { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.account-card-header h4 { margin: 0; font-size: 16px; font-weight: 700; }
.account-card-body { padding: 24px; }

/* ============================================================
   ORDER HISTORY
   ============================================================ */
.order-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 16px; overflow: hidden; transition: var(--transition); }
.order-card:hover { box-shadow: var(--shadow-sm); }
.order-card-header { background: var(--bg-light); padding: 14px 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.order-number { font-size: 14px; font-weight: 700; color: var(--primary); }
.order-date { font-size: 12px; color: var(--text-muted); }
.order-status { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 20px; }
.status-delivered { background: #e8f8f2; color: #2ecc71; }
.status-processing { background: #fff8e8; color: #f39c12; }
.status-shipped { background: #e8f0f8; color: #3498db; }
.status-cancelled { background: #fdf2f2; color: #e74c3c; }
.order-card-body { padding: 16px 20px; }
.order-product-row { display: flex; gap: 14px; padding: 10px 0; align-items: center; border-bottom: 1px solid var(--border); }
.order-product-row:last-child { border-bottom: none; }
.order-product-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; border: 1px solid var(--border); }
.order-product-name { font-size: 13px; font-weight: 600; color: var(--secondary); }
.order-product-qty { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-table { border-collapse: separate; border-spacing: 0; width: 100%; }
.cart-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 700; border-bottom: 2px solid var(--border); padding: 12px 16px; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tbody tr:hover td { background: var(--bg-light); }
.cart-product-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-product-name { font-weight: 600; font-size: 14px; color: var(--secondary); }
.cart-product-variant { font-size: 12px; color: var(--text-muted); }
.qty-container { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; width: 112px; }
.qty-btn-minus, .qty-btn-plus { border: none; background: var(--bg-light); padding: 7px 12px; cursor: pointer; font-size: 16px; color: var(--dark); transition: var(--transition); line-height: 1; font-weight: 700; }
.qty-btn-minus:hover, .qty-btn-plus:hover { background: var(--primary); color: #fff; }
.input-qty { border: none; text-align: center; width: 44px; font-size: 14px; font-weight: 700; outline: none; padding: 7px 0; background: #fff; }
.btn-remove-item { border: none; background: none; color: #ccc; font-size: 18px; cursor: pointer; transition: var(--transition); padding: 4px 8px; }
.btn-remove-item:hover { color: #e74c3c; }
.cart-summary-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); padding: 24px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total { border-top: 2px solid var(--border); padding-top: 16px; font-weight: 700; font-size: 17px; color: var(--dark); border-bottom: none; }
.coupon-input { display: flex; gap: 0; }
.coupon-input .form-control { border-radius: var(--radius) 0 0 var(--radius); height: 44px; }
.coupon-input .btn { border-radius: 0 var(--radius) var(--radius) 0; white-space: nowrap; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 44px; flex-wrap: wrap; }
.checkout-step { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.checkout-step .step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: var(--transition); flex-shrink: 0; }
.checkout-step.active .step-num { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px var(--primary-light); }
.checkout-step.active { color: var(--primary); }
.checkout-step.done .step-num { background: #2ecc71; color: #fff; }
.checkout-step.done { color: #2ecc71; }
.checkout-connector { width: 50px; height: 2px; background: var(--border); }
.checkout-connector.done { background: #2ecc71; }
.checkout-section-title { font-size: 15px; font-weight: 700; border-bottom: 2px solid var(--border); padding-bottom: 12px; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.5px; }
.order-summary-card { background: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 24px; position: sticky; top: 120px; }
.order-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-item:last-child { border-bottom: none; }
.order-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.order-item-name { font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 4px; }
.order-item-meta { font-size: 12px; color: var(--text-muted); }
.order-item-price { font-size: 14px; font-weight: 700; color: var(--dark); white-space: nowrap; }
.payment-method-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 14px 18px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.payment-method-card:hover { border-color: var(--primary); }
.payment-method-card.selected { border-color: var(--primary); background: var(--primary-light); }
.shipping-option { border: 2px solid var(--border); border-radius: var(--radius); padding: 14px 18px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.shipping-option:hover { border-color: var(--primary); }
.shipping-option.selected { border-color: var(--primary); background: var(--primary-light); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-gallery-main { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1; background: var(--bg-light); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery-thumbs .thumb { width: 74px; height: 74px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; }
.product-gallery-thumbs .thumb:hover, .product-gallery-thumbs .thumb.active { border-color: var(--primary); }
.product-gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-title { font-size: 26px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.product-detail-sku { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.product-detail-price .current { font-size: 30px; font-weight: 800; color: var(--dark); }
.product-detail-price .original { font-size: 18px; color: #bbb; text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-rating .stars { color: #ffc107; font-size: 14px; display: flex; gap: 2px; }
.product-rating .count { font-size: 13px; color: var(--text-muted); }
.product-short-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 22px; }
.product-options { margin-bottom: 20px; }
.product-options label { font-size: 12px; font-weight: 700; color: var(--secondary); margin-bottom: 10px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.color-swatch { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch .swatch { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; outline: 2px solid transparent; transition: var(--transition); }
.color-swatch .swatch:hover, .color-swatch .swatch.active { outline-color: var(--primary); outline-offset: 2px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 6px 18px; border: 2px solid var(--border); background: #fff; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.product-action { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn-add-to-cart { flex: 1; background: var(--primary); color: #fff; border: none; height: 52px; border-radius: var(--radius); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 200px; }
.btn-add-to-cart:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wishlist-detail { width: 52px; height: 52px; border: 2px solid var(--border); background: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 20px; color: var(--text-muted); }
.btn-wishlist-detail:hover { border-color: #e74c3c; color: #e74c3c; }
.btn-wishlist-detail.active { border-color: #e74c3c; color: #e74c3c; background: #fdf2f2; }
.product-meta-info { margin-top: 22px; display: grid; gap: 8px; }
.product-meta-info p { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; }
.product-meta-info strong { color: var(--secondary); min-width: 80px; }
.product-tabs { margin-top: 56px; }
.product-tabs .nav-tabs { border-bottom: 2px solid var(--border); }
.product-tabs .nav-link { color: var(--text-muted); font-weight: 700; font-size: 12px; border: none; padding: 12px 22px; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); background: none; border-radius: 0; }
.product-tabs .nav-link:hover { color: var(--primary); }
.product-tabs .nav-link.active { color: var(--primary); background: none; border-bottom: 3px solid var(--primary); margin-bottom: -2px; }
.review-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.review-meta { font-size: 12px; color: var(--text-muted); }
.review-title { font-weight: 700; margin-bottom: 4px; font-size: 14px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   WISHLIST PAGE
   ============================================================ */
.wishlist-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 700; padding: 12px 16px; border-bottom: 2px solid var(--border); }
.wishlist-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.wishlist-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card { background: #fff; border-radius: var(--radius-md); padding: 32px 24px; border: 1px solid var(--border); transition: var(--transition); text-align: center; height: 100%; }
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.contact-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 26px; color: var(--primary); }
.contact-info-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.contact-info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.map-placeholder { background: var(--bg-light); border-radius: var(--radius-md); height: 360px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--text-muted); font-size: 14px; flex-direction: column; gap: 14px; }
.map-placeholder i { font-size: 52px; color: var(--border); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stat { text-align: center; padding: 24px; }
.about-stat .num { font-size: 52px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; display: block; }
.about-stat p { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.team-card { text-align: center; background: #fff; border-radius: var(--radius-md); padding: 28px 20px; border: 1px solid var(--border); transition: var(--transition); height: 100%; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; border: 3px solid var(--primary); }
.team-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--primary); font-weight: 600; }
.team-card p { font-size: 13px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.value-card { padding: 28px 24px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--border); transition: var(--transition); height: 100%; }
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon { font-size: 34px; color: var(--primary); margin-bottom: 18px; display: block; }
.value-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   POLICY PAGES (PRIVACY / TERMS)
   ============================================================ */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h3 { font-size: 18px; font-weight: 700; margin: 36px 0 14px; color: var(--dark); }
.policy-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 14px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 16px; }
.policy-content li { color: var(--text-muted); line-height: 1.9; margin-bottom: 8px; font-size: 14px; }
.policy-toc { background: var(--bg-light); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--border); margin-bottom: 44px; }
.policy-toc h6 { font-weight: 700; margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.policy-toc ol { padding-left: 20px; margin: 0; }
.policy-toc li a { font-size: 13px; color: var(--primary); }
.policy-toc li a:hover { text-decoration: underline; }

/* ============================================================
   RETURNS PAGE
   ============================================================ */
.return-step { text-align: center; padding: 32px 20px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); height: 100%; }
.return-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 18px; }
.return-step h5 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.return-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state i { font-size: 72px; color: var(--border); display: block; margin-bottom: 22px; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 991px) {
  .hero-content h1 { font-size: 36px; }
  .hero-slide { min-height: 400px; }
  section { padding: 50px 0; }
  .auth-card { padding: 36px 28px; }
  #logo h1 { font-size: 22px; }
}
@media(max-width: 767px) {
  .hero-slide { min-height: 290px; }
  .hero-content { padding: 30px 0; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 13px; margin-bottom: 20px; }
  .btn-hero-primary, .btn-hero-outline { padding: 11px 22px; font-size: 12px; }
  .page-hero h1 { font-size: 26px; }
  section { padding: 40px 0; }
  .newsletter-form .form-control { padding: 0 110px 0 16px; }
  .newsletter-form .btn-subscribe { font-size: 11px; padding: 0 14px; }
  .category-card img { height: 160px; }
  .promo-banner img { height: 200px; }
  .promo-banner .promo-text h3 { font-size: 18px; }
  .auth-card { padding: 24px 18px; margin: 0 10px; }
  .product-action { flex-direction: column; }
  .btn-add-to-cart { min-width: unset; }
  .btn-wishlist-detail { width: 100%; }
}
@media(max-width: 480px) {
  .hero-slide { min-height: 220px; }
  .hero-content h1 { font-size: 20px; }
  .checkout-step .step-label { display: none; }
}

/* ============================================================
   PHP APPLICATION – ADDITIONAL STYLES
   ============================================================ */

/* ── Filter sidebar ─────────────────────────────────────────────────────── */
.filter-box { background:#fff; border-radius:10px; padding:18px; box-shadow:var(--shadow-sm); }
.filter-title { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:12px; color:var(--dark); }
.filter-list { list-style:none; padding:0; margin:0; }
.filter-list li a { display:flex; justify-content:space-between; align-items:center; padding:6px 0; font-size:13px; color:#555; border-bottom:1px solid #f5f5f5; }
.filter-list li a:hover, .filter-list li a.active { color:var(--primary); font-weight:600; }
.filter-count { background:#f0f0f0; border-radius:20px; padding:1px 7px; font-size:11px; color:#888; }

/* ── Shop toolbar ───────────────────────────────────────────────────────── */
.shop-toolbar { background:#fff; border-radius:8px; padding:12px 16px; box-shadow:var(--shadow-sm); }

/* ── Product specs list ─────────────────────────────────────────────────── */
.product-specs { list-style:none; padding:0; margin:0; font-size:14px; }
.product-specs li { padding:5px 0; border-bottom:1px solid #f5f5f5; display:flex; align-items:center; gap:10px; }
.product-specs li i { color:var(--primary); width:16px; }

/* ── Policy badges ──────────────────────────────────────────────────────── */
.policy-badge { display:flex; align-items:center; gap:8px; background:#f9f9f9; border-radius:8px; padding:10px 12px; font-size:12px; color:#555; }
.policy-badge i { color:var(--primary); font-size:14px; flex-shrink:0; }

/* ── Cart table ─────────────────────────────────────────────────────────── */
.cart-table-wrap { background:#fff; border-radius:12px; padding:20px; box-shadow:var(--shadow-sm); }
.cart-table thead th { font-size:12px; text-transform:uppercase; letter-spacing:.5px; color:#888; font-weight:600; border-bottom:2px solid #f0f0f0; }
.cart-table td { padding:14px 8px; vertical-align:middle; border-bottom:1px solid #f9f9f9; }

/* ── Cart summary ───────────────────────────────────────────────────────── */
.cart-summary { background:#fff; border-radius:12px; padding:24px; box-shadow:var(--shadow-sm); position:sticky; top:100px; }
.summary-row { display:flex; justify-content:space-between; margin-bottom:12px; font-size:14px; color:#555; }
.summary-total { font-size:18px; font-weight:700; color:var(--dark); border-top:2px solid #f0f0f0; padding-top:12px; margin-top:4px; }

/* ── Checkout sections ──────────────────────────────────────────────────── */
.checkout-section { background:#fff; border-radius:12px; padding:24px; box-shadow:var(--shadow-sm); }
.checkout-heading { font-size:16px; font-weight:700; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid #f0f0f0; color:var(--dark); }
.payment-option { border:2px solid #e8e8e8; border-radius:10px; padding:14px 16px; margin-bottom:10px; cursor:pointer; transition:var(--transition); }
.payment-option:hover { border-color:var(--primary); }
.payment-option.selected { border-color:var(--primary); background:var(--primary-light); }
.payment-option input[type="radio"] { accent-color:var(--primary); }

/* ── Account pages ──────────────────────────────────────────────────────── */
.account-sidebar { background:#fff; border-radius:12px; padding:20px; box-shadow:var(--shadow-sm); }
.account-nav .nav-link { color:#555; font-size:14px; padding:10px 14px; border-radius:8px; margin-bottom:3px; }
.account-nav .nav-link.active, .account-nav .nav-link:hover { background:var(--primary-light); color:var(--primary); }
.account-panel { background:#fff; border-radius:12px; padding:24px; box-shadow:var(--shadow-sm); }

/* ── Empty state ────────────────────────────────────────────────────────── */
.empty-state { text-align:center; padding:80px 20px; }
.empty-state i { font-size:60px; color:#ddd; display:block; margin-bottom:20px; }
.empty-state h3 { font-size:22px; color:#333; margin-bottom:10px; }
.empty-state p { color:#888; margin-bottom:24px; }

/* ── Feature strip ──────────────────────────────────────────────────────── */
.feature-strip { background:#fff; padding:24px 0; box-shadow:0 2px 10px rgba(0,0,0,.06); }
.feature-item { display:flex; align-items:center; gap:14px; }
.feature-item i { font-size:22px; color:var(--primary); flex-shrink:0; }
.feature-item strong { display:block; font-size:14px; color:#333; }
.feature-item span { font-size:12px; color:#888; }

/* ── Section header ─────────────────────────────────────────────────────── */
.section-title { font-family: var(--font-serif); font-size:clamp(22px,3vw,32px); font-weight:700; color:var(--dark); }
.section-sub { color:var(--text-muted); font-size:14px; margin-top:6px; }

/* ── Footer styles ──────────────────────────────────────────────────────── */
footer { background:var(--dark); color:#9ca3af; padding-top:60px; }
.footer-top { padding-bottom:40px; }
.footer-heading { color:#fff; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:16px; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:8px; font-size:13px; line-height:1.6; }
.footer-links a { color:#9ca3af; }
.footer-links a:hover { color:var(--primary); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:16px 0; margin-top:10px; color:#9ca3af; }

/* ── Flash container ────────────────────────────────────────────────────── */
#flash-container { z-index:9999; pointer-events:none; }
#flash-container .alert { pointer-events:all; }

/* ── Pagination override ────────────────────────────────────────────────── */
.page-link { color:var(--primary); }
.page-item.active .page-link { background:var(--primary); border-color:var(--primary); }
.page-link:hover { color:var(--primary-dark); }

/* ── qty picker ──────────────────────────────────────────────────────────── */
.qty-picker button { background:none; border:0; color:#333; font-size:18px; line-height:1; }
.qty-picker button:hover { color:var(--primary); }

/* ── Product detail price ────────────────────────────────────────────────── */
.product-detail-price { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:16px 0; }
.product-detail-sku { font-size:12px; color:#aaa; margin-bottom:8px; }
.product-detail-title { font-size:clamp(20px,3vw,28px); font-weight:700; margin:8px 0 12px; }

/* ── Product Thumb — wooden-store style adapted for Vanvastra ────────────── */
.product-thumb { position:relative; height:100%; }

/* Image container */
.product-thumb .pt-image { position:relative; overflow:hidden; background:#f5f0eb; aspect-ratio:3/4; }
.product-thumb .pt-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.product-thumb:hover .pt-image img { transform:scale(1.05); }

/* Badge stack — top-left */
.badge-stack { position:absolute; top:10px; left:10px; z-index:5; display:flex; flex-direction:column; gap:4px; }
.product-badge { display:inline-flex; align-items:center; gap:3px; padding:3px 8px; font-size:9px; font-weight:700; border-radius:3px; line-height:1.4; letter-spacing:.5px; text-transform:uppercase; white-space:nowrap; }
.badge-sale { background:#c0392b; color:#fff; }
.badge-new  { background:var(--primary); color:#fff; }
.badge-oos  { background:#666; color:#fff; }
.badge-low  { background:#e67e22; color:#fff; }

/* Floating action buttons — appear on hover, centered at image bottom */
.pt-buttons { display:flex; position:absolute; bottom:0; left:0; width:100%; align-items:flex-end; justify-content:center; gap:8px; z-index:5; padding-bottom:16px; opacity:0; transform:translateY(10px); transition:.28s ease; pointer-events:none; }
.product-thumb:hover .pt-buttons { opacity:1; transform:translateY(0); pointer-events:all; }
.pt-btn { border:none; width:40px; height:40px; border-radius:50%; background:var(--dark); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.25s ease; box-shadow:0 3px 12px rgba(0,0,0,.25); text-decoration:none; }
.pt-btn:hover { background:var(--primary); color:#fff; transform:scale(1.1); }
.pt-btn.btn-add-cart { width:auto; border-radius:30px; padding:0 18px; gap:7px; font-size:11px; font-weight:700; letter-spacing:.7px; text-transform:uppercase; }
.pt-btn.btn-add-cart:disabled { background:rgba(80,80,80,.65); cursor:not-allowed; }
.pt-btn svg, .pt-btn i { font-size:15px; }
.btn-add-cart { cursor:pointer; }

/* Wishlist button (standalone use) */
.btn-wishlist { border:none; background:var(--dark); color:#fff; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.25s ease; box-shadow:0 3px 12px rgba(0,0,0,.25); padding:0; font-size:15px; }
.btn-wishlist:hover { background:var(--primary); transform:scale(1.1); }
.btn-wishlist.wishlisted { background:var(--primary) !important; }

/* Product info — centered, below image */
.product-info { padding:12px 4px 8px; text-align:center; }
.product-cat { font-size:10px; color:#b0a89e; text-transform:uppercase; letter-spacing:1px; font-weight:600; margin:0 0 4px; }
.product-name { font-size:14px; font-weight:500; line-height:1.45; color:#333; margin:0 0 6px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-name a { color:inherit; text-decoration:none; }
.product-name a:hover { color:var(--primary); }
.product-price { display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap; }
.price-sale    { font-weight:700; font-size:15px; color:#333; }
.price-regular { font-weight:700; font-size:15px; color:#333; }
.price-old     { font-size:13px; color:#999; text-decoration:line-through; }
.price-save    { font-size:10px; font-weight:700; color:#c0392b; letter-spacing:.2px; }
.product-stock-low { font-size:11px; color:#e67e22; font-weight:600; margin-top:4px; }

/* Product star rating */
.pt-rating { display:flex; align-items:center; justify-content:center; gap:2px; margin-bottom:5px; }
.pt-rating .fa-star { color:#f0b429; font-size:11px; }
.pt-rating .fa-star-half-stroke { color:#f0b429; font-size:11px; }
.pt-rating .fa-regular.fa-star { color:#ddd; font-size:11px; }
.pt-rating small { color:#aaa; font-size:11px; margin-left:3px; }

/* ── Collection Tabs (homepage filter) ───────────────────────────────────── */
.collection-tabs-wrap { margin-bottom:32px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.collection-tabs { display:flex; gap:0; flex-wrap:wrap; border-bottom:2px solid #eee; }
.collection-tab { padding:8px 20px; border:none; background:transparent; font-size:13px; font-weight:700; letter-spacing:.3px; color:#aaa; cursor:pointer; transition:color .2s; position:relative; text-transform:uppercase; letter-spacing:1px; }
.collection-tab:hover { color:var(--primary); }
.collection-tab.active { color:var(--dark); }
.collection-tab.active::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:2px; background:var(--primary); }
.tab-pane-products { display:none; animation:fadeInUp .3s ease; }
.tab-pane-products.active { display:block; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ── Process Cards — image + step style ──────────────────────────────────── */
.process-card { background:#fff; border-radius:12px; overflow:hidden; border:1px solid #ede8e3; box-shadow:0 2px 12px rgba(44,43,41,.06); height:100%; transition:transform .3s,box-shadow .3s; }
.process-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(44,43,41,.12); }
.process-card-img { position:relative; height:180px; overflow:hidden; background:#f5f0eb; }
.process-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; display:block; }
.process-card:hover .process-card-img img { transform:scale(1.06); }
.process-card-step { position:absolute; top:12px; left:12px; width:36px; height:36px; border-radius:50%; background:var(--primary); color:#fff; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; letter-spacing:.5px; box-shadow:0 3px 10px rgba(178,110,87,.5); z-index:2; }
.process-card-body { padding:18px 20px 22px; }
.process-card-icon-wrap { width:44px; height:44px; border-radius:10px; background:var(--primary-light); display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--primary); margin-bottom:12px; }
.process-card-body h5 { font-family:var(--font-serif); font-size:15px; font-weight:700; color:var(--dark); margin-bottom:6px; }
.process-card-body p { font-size:13px; color:var(--text-muted); line-height:1.7; margin:0; }

/* ── Why Choose section — left image + vertical features right ───────────── */
.why-section { background:var(--bg-light); }
.why-img-wrap { position:relative; border-radius:16px; overflow:hidden; height:100%; min-height:460px; }
.why-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.why-img-badge { position:absolute; bottom:24px; left:24px; background:#fff; border-radius:12px; padding:14px 20px; box-shadow:0 8px 30px rgba(44,43,41,.15); }
.why-img-badge strong { font-family:var(--font-serif); font-size:26px; color:var(--primary); display:block; line-height:1; }
.why-img-badge span { font-size:11px; color:#888; text-transform:uppercase; letter-spacing:.8px; }
.why-feature-item { display:flex; gap:16px; padding:18px 0; border-bottom:1px solid #ede8e3; }
.why-feature-item:last-child { border-bottom:none; }
.why-feature-item-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.why-feature-item-body h5 { font-size:15px; font-weight:700; color:var(--dark); margin:0 0 5px; }
.why-feature-item-body p { font-size:13px; color:var(--text-muted); line-height:1.7; margin:0; }
.why-feature-card-bottom { background:#fff; padding:24px 28px 32px; }
.why-feature-card-bottom p { font-size:14px; color:var(--text-muted); line-height:1.85; margin:0; }

/* ── Why Choose Us cards (legacy fallback) ──────────────────────────────── */
.why-card { background:#fff; border-radius:var(--radius-md); padding:32px 24px; border:1px solid var(--border); transition:var(--transition); height:100%; text-align:center; }
.why-card:hover { box-shadow:var(--shadow-md); transform:translateY(-5px); border-color:var(--primary); }
.why-icon { width:72px; height:72px; border-radius:50%; background:var(--primary-light); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:28px; color:var(--primary); transition:var(--transition); }
.why-card:hover .why-icon { background:var(--primary); color:#fff; }
.why-card h5 { font-size:17px; font-weight:700; margin-bottom:10px; }
.why-card p { font-size:13px; color:var(--text-muted); line-height:1.8; }

/* ── Team cards ─────────────────────────────────────────────────────────── */
.artisan-card { background:#fff; border-radius:var(--radius-md); padding:28px 20px; border:1px solid var(--border); transition:var(--transition); height:100%; text-align:center; }
.artisan-card:hover { box-shadow:var(--shadow-md); transform:translateY(-5px); }
.artisan-avatar { width:88px; height:88px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--brown)); color:#fff; font-family:var(--font-serif); font-size:30px; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; border:3px solid var(--primary-light); }
.artisan-card h5 { font-size:16px; font-weight:700; margin-bottom:4px; }
.artisan-card .role { font-size:12px; color:var(--primary); font-weight:600; text-transform:uppercase; letter-spacing:.5px; display:block; margin-bottom:10px; }
.artisan-card p { font-size:13px; color:var(--text-muted); line-height:1.7; }

/* ── Account Sidebar ─────────────────────────────────────────────────────── */
.account-sidebar { background:#fff; border-radius:var(--radius-md); border:1px solid var(--border); overflow:hidden; position:sticky; top:90px; }
.account-avatar { padding:24px 16px 20px; background:var(--bg-light); border-bottom:1px solid var(--border); text-align:center; }
.account-avatar h6 { font-size:14px; font-weight:700; margin:10px 0 3px; word-break:break-word; overflow-wrap:break-word; white-space:normal; }
.account-avatar small { display:block; font-size:11px; color:#888; word-break:break-all; overflow-wrap:anywhere; line-height:1.4; max-width:100%; }
.account-nav { padding:10px 8px 16px; }
.account-nav .nav-link { border-radius:var(--radius); padding:10px 14px; color:var(--secondary); font-size:13px; margin-bottom:2px; font-weight:500; }
.account-nav .nav-link.active { background:var(--primary); color:#fff; }
.account-nav .nav-link:hover:not(.active):not(.text-danger) { background:var(--primary-light); color:var(--primary); }
.account-panel { background:#fff; border-radius:var(--radius-md); border:1px solid var(--border); padding:28px; }
