/* ================================================================
   SANJEEVANI ART & CRAFTS — style.css
   Primary:  #E60023  | White: #FFFFFF | Grey: #F5F5F5 | Text: #222
================================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:     #E60023;
  --primary-dark:#b5001b;
  --primary-light:#ff4d6a;
  --white:       #FFFFFF;
  --grey-light:  #F5F5F5;
  --grey-mid:    #e0e0e0;
  --grey-text:   #666;
  --dark:        #222222;
  --font-main:   'Poppins', sans-serif;
  --font-display:'Playfair Display', serif;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SECTION WRAPPER ---- */
.section { padding: 80px 0; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  color: var(--grey-text);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- TEXT UTILITIES ---- */
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,0,35,.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,0,35,.38);
}
.btn-white-outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ================================================================
   HEADER
================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(20, 28, 23, .08);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.header.is-scrolled {
  box-shadow: 0 14px 38px rgba(20, 28, 23, .12);
}

.header--transparent {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(10, 19, 15, .5), rgba(10, 19, 15, 0));
  backdrop-filter: none;
  box-shadow: none;
}

.header--transparent.is-scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(20, 28, 23, .12);
}

.navbar {
  background: transparent;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 94px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.site-logo img {
  width: auto;
  height: 62px;
  max-width: 220px;
  object-fit: contain;
  transform-origin: left center;
  transition: transform .3s ease, filter .3s ease;
}

.site-logo:hover img {
  transform: scale(1.02);
}

.header--transparent:not(.is-scrolled) .site-logo img {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  border-radius: 999px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(61,107,79,.12), rgba(200,122,40,.14));
  opacity: 0;
  transform: scale(.88);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 0;
}

.nav-links a > * {
  position: relative;
  z-index: 1;
}

.nav-links a:hover,
.nav-links a.active {
  color: #3d6b4f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(61,107,79,.12);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.header--transparent:not(.is-scrolled) .nav-links a {
  color: rgba(255,255,255,.92);
}

.header--transparent:not(.is-scrolled) .nav-links a::before {
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
}

.header--transparent:not(.is-scrolled) .nav-links a:hover,
.header--transparent:not(.is-scrolled) .nav-links a.active {
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.header--transparent:not(.is-scrolled) .dropdown li a {
  color: var(--dark);
  background: var(--white);
}

.nav-caret {
  font-size: .7rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon,
.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--dark);
  background: rgba(61,107,79,.08);
}

.nav-icon:hover {
  transform: translateY(-2px);
}

.nav-phone {
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  color: #2d4937;
  background: rgba(61,107,79,.08);
}

.nav-phone i {
  color: #c87a28;
}

.nav-phone:hover {
  background: rgba(61,107,79,.14);
  transform: translateY(-2px);
}

.nav-quote-btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: #c87a28;
  border-color: #c87a28;
  box-shadow: 0 16px 28px rgba(200,122,40,.24);
}

.nav-quote-btn:hover {
  background: #b86f24;
  border-color: #b86f24;
  box-shadow: 0 16px 30px rgba(184,111,36,.28);
}

.header--transparent:not(.is-scrolled) .nav-icon,
.header--transparent:not(.is-scrolled) .nav-phone {
  background: rgba(255,255,255,.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
}

.header--transparent:not(.is-scrolled) .nav-phone i {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.header--transparent:not(.is-scrolled) .hamburger span {
  background: var(--white);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-links a.active {
  font-weight: 700;
  background: linear-gradient(135deg, rgba(61,107,79,.12), rgba(200,122,40,.14));
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3d6b4f, #c87a28);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(20,28,23,.18), 0 4px 16px rgba(20,28,23,.08);
  border: 1px solid rgba(61,107,79,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.97);
  transform-origin: top left;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 200;
  padding: 10px;
  overflow: hidden;
}
.dropdown::before {
  content: '';
  display: block;
  height: 3px;
  margin: -10px -10px 8px;
  background: linear-gradient(90deg, #3d6b4f, #c87a28, #e60023);
  border-radius: 16px 16px 0 0;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown li {
  list-style: none;
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: .875rem;
  color: #2d3a32;
  font-weight: 500;
  border-radius: 10px;
  transition: background .18s, color .18s, transform .18s;
}
.dropdown li a .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.dropdown li a:hover {
  background: linear-gradient(135deg, rgba(61,107,79,.1), rgba(200,122,40,.08));
  color: #3d6b4f;
  transform: translateX(3px);
}
.dropdown li a:hover .dd-icon {
  transform: scale(1.15);
}
.dropdown li:nth-child(1)  .dd-icon { background: rgba(61,107,79,.14);  color: #3d6b4f; }
.dropdown li:nth-child(2)  .dd-icon { background: rgba(200,122,40,.14); color: #c87a28; }
.dropdown li:nth-child(3)  .dd-icon { background: rgba(230,0,35,.12);   color: #e60023; }
.dropdown li:nth-child(4)  .dd-icon { background: rgba(56,116,175,.12); color: #3874af; }
.dropdown li:nth-child(5)  .dd-icon { background: rgba(133,77,178,.12); color: #854db2; }
.dropdown li:nth-child(6)  .dd-icon { background: rgba(20,160,120,.12); color: #14a078; }
.dropdown li:nth-child(7)  .dd-icon { background: rgba(230,120,0,.12);  color: #e67800; }
.dropdown li:nth-child(8)  .dd-icon { background: rgba(61,107,79,.14);  color: #3d6b4f; }
.dropdown li:nth-child(9)  .dd-icon { background: rgba(200,122,40,.14); color: #c87a28; }
.dropdown li:nth-child(10) .dd-icon { background: rgba(230,0,35,.12);   color: #e60023; }
.header--transparent:not(.is-scrolled) .dropdown li a {
  color: #2d3a32;
  background: transparent;
}
.header--transparent:not(.is-scrolled) .dropdown li a:hover {
  background: linear-gradient(135deg, rgba(61,107,79,.1), rgba(200,122,40,.08));
  color: #3d6b4f;
}

/* Inner page banner */
.page-hero-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200,122,40,.22), transparent 28%),
    linear-gradient(120deg, rgba(8, 15, 12, .86), rgba(21, 45, 35, .78)),
    linear-gradient(135deg, #121c18 0%, #23392d 55%, #3d6b4f 100%);
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 9, .2), rgba(7, 11, 9, 0));
}

.page-hero-banner--compact {
  min-height: 36vh;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 150px 0 56px;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #f2c792;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-inner h1 {
  max-width: 840px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.banner-inner p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}

.banner-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.68);
  font-size: .84rem;
}

.banner-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.52);
  font-size: .84rem;
}

.banner-breadcrumbs a {
  color: rgba(255,255,255,.86);
}

.banner-breadcrumbs strong {
  color: #f2c792;
  font-weight: 600;
}

/* Wishlist drawer */
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 32, .4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1190;
}
.wishlist-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.wishlist-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(390px, 100%);
  height: 100vh;
  background: #fffdfb;
  box-shadow: 10px 0 35px rgba(0,0,0,.16);
  transform: translateX(-100%);
  transition: transform .35s ease;
  z-index: 1191;
  display: flex;
  flex-direction: column;
}
.wishlist-drawer.active {
  transform: translateX(0);
}
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(230,0,35,.06), rgba(255,255,255,0));
}
.wishlist-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.wishlist-header h3 {
  font-size: 1.35rem;
  margin: 0;
}
.wishlist-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--grey-light);
  cursor: pointer;
  transition: var(--transition);
}
.wishlist-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}
.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}
.wishlist-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 14px;
  color: var(--grey-text);
}
.wishlist-empty i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,0,35,.08);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.wishlist-empty.hidden { display: none; }
.wishlist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wishlist-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}
.wishlist-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
}
.wishlist-item h5 {
  font-size: .92rem;
  margin-bottom: 5px;
}
.wishlist-item span {
  font-size: .78rem;
  color: var(--grey-text);
  display: block;
}
.wishlist-item strong {
  display: block;
  color: var(--primary);
  margin-top: 6px;
}
.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wishlist-item-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--grey-light);
  transition: var(--transition);
}
.wishlist-item-actions button:hover {
  background: var(--primary);
  color: var(--white);
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 32, .45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1200;
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: #fffdfb;
  box-shadow: -10px 0 35px rgba(0,0,0,.18);
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 1201;
  display: flex;
  flex-direction: column;
}
.cart-drawer.active {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(230,0,35,.06), rgba(255,255,255,0));
}
.cart-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.cart-header h3 {
  font-size: 1.45rem;
  margin: 0;
}
.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--grey-light);
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.cart-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 10px;
}
.cart-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 14px;
  color: var(--grey-text);
}
.cart-empty i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,0,35,.08);
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.cart-empty h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.cart-empty p {
  max-width: 260px;
  margin-bottom: 18px;
}
.cart-empty.hidden { display: none; }
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
}
.cart-item-details h5 {
  font-size: .95rem;
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: .8rem;
  color: var(--grey-text);
  margin-bottom: 8px;
}
.cart-item-price {
  font-weight: 700;
  color: var(--primary);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.cart-qty-btn,
.cart-remove {
  border: 0;
  cursor: pointer;
  transition: var(--transition);
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-light);
  color: var(--dark);
}
.cart-qty-btn:hover {
  background: var(--primary);
  color: var(--white);
}
.cart-qty {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}
.cart-remove {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(230,0,35,.08);
  color: var(--primary);
}
.cart-remove:hover {
  background: var(--primary);
  color: var(--white);
}
.cart-footer {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 18px 20px 20px;
  background: #fff;
  box-shadow: 0 -10px 26px rgba(0,0,0,.04);
}
.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .95rem;
  margin-bottom: 10px;
}
.cart-summary-row.total {
  font-size: 1.12rem;
  margin-bottom: 16px;
}
.cart-checkout {
  width: 100%;
  justify-content: center;
}

/* Quick view quantity */
.quick-view-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--grey-light);
}
.quick-view-qty-row span {
  font-weight: 600;
}
.quick-view-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.quick-view-qty-control button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.quick-view-qty-control button:hover {
  background: var(--primary);
  color: var(--white);
}
.quick-view-qty-control span {
  min-width: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .wishlist-drawer,
  .cart-drawer {
    width: 100%;
  }
  html, body {
    font-size: 16px;
    width: 100%;
    padding: 0;
    overflow-x: clip;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.1em;
    margin-bottom: 0.7em;
  }
  .btn, button, input[type="submit"] {
    min-height: 48px;
    font-size: 1em;
    padding: 12px 18px;
    border-radius: 8px;
  }
  .section {
    padding: 32px 0;
  }
  .container, .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-grid, .testimonials-grid, .gallery-grid, .products-grid, .categories-grid {
    gap: 18px;
  }
  .form-control, input, select, textarea {
    font-size: 1em;
    min-height: 44px;
  }
}

/* ================================================================
   HERO SLIDER
================================================================ */
.hero-slider { position: relative; }
.hero-single {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(circle at top right, rgba(200,122,40,.28), transparent 24%),
    linear-gradient(135deg, #173227 0%, #28483a 55%, #4b6f56 100%);
  background-size: cover;
  background-position: center;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}
.slide-1 { background-image: url('images/carousel-1.jpg'); }
.slide-2 { background-image: url('images/carousel-2.jpg'); }
.slide-3 { background-image: url('images/carousel-3.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 8, .74), rgba(5, 11, 8, .34) 45%, rgba(5, 11, 8, .18));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 110px 40px 0;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.4);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.25vw, 3.23rem);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-content h1 span {
  color: #FFD700;
  display: inline-block;
}
.hero-content p {
  font-size: clamp(0.765rem, 1.275vw, 0.935rem);
  margin-bottom: 28px;
  opacity: .92;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Legacy Swiper overrides */
.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 900 !important;
}
.swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--white) !important; transform: scale(1.3); }

/* ================================================================
   MARQUEE
================================================================ */
.marquee-strip {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  display: inline-block;
  padding: 0 36px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.marquee-inner span::after {
  content: '•';
  margin-left: 36px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   CATEGORIES GRID
================================================================ */
.categories-section { background: var(--grey-light); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  background: var(--white);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(230,0,35,.55));
  transition: var(--transition);
}
.category-card:hover .cat-overlay { background: linear-gradient(to bottom, transparent 20%, rgba(230,0,35,.72)); }
.cat-info {
  padding: 14px 16px;
  text-align: center;
}
.cat-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.cat-info span { font-size: .82rem; color: var(--grey-text); }

/* ================================================================
   OFFERS
================================================================ */
.offers-section { background: var(--white); }
.offers-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 20px;
}
.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.offer-card:hover img { transform: scale(1.06); }
.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  transition: var(--transition);
}
.offer-card:hover .offer-overlay { background: linear-gradient(to top, rgba(230,0,35,.82) 0%, rgba(0,0,0,.2) 100%); }
.offer-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  align-self: flex-start;
  animation: pulse 2s infinite;
}
.offer-badge.new { background: #00a65a; }
.offer-badge.combo { background: #ff8800; }
.offer-badge.kids { background: #8b00ff; }
.offer-overlay h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.offer-overlay p { font-size: .82rem; opacity: .85; margin-bottom: 12px; }
.offer-big .offer-overlay h3 { font-size: 1.4rem; }

@keyframes pulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(230,0,35,.5); }
  50%{ box-shadow: 0 0 0 7px rgba(230,0,35,0); }
}

/* ================================================================
   COLLECTION SHOWCASE
================================================================ */
.icon-cats-section {
  background:
    radial-gradient(circle at top left, rgba(255,122,24,.13), transparent 28%),
    radial-gradient(circle at bottom right, rgba(230,0,35,.10), transparent 26%),
    linear-gradient(180deg, #f6f2ee 0%, #fffaf6 100%);
  padding: 72px 0;
}
.collection-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.collection-showcase .collection-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  width: auto;
  flex-shrink: 1;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  color: inherit;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 18px 45px rgba(65, 42, 35, .10);
  scroll-snap-align: unset;
  transition: transform .28s ease, box-shadow .28s ease;
}
.collection-showcase .collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(34, 24, 21, .16);
}
.collection-showcase .collection-card--feature { grid-column: span 6; min-height: 380px; }
.collection-showcase .collection-card--compact { grid-column: span 3; }
.collection-showcase .collection-card__visual {
  position: relative;
  min-height: 220px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.08) 100%);
}
.collection-showcase .collection-card__headline {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.collection-showcase .collection-collage {
  display: grid;
  gap: 12px;
  height: 100%;
  min-height: 240px;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: repeat(2, minmax(88px, 1fr));
}
.collection-showcase .collection-collage--count-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.collection-showcase .collection-collage--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
}
.collection-showcase .collection-collage__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 110px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 12px 26px rgba(40, 24, 20, .12);
}
.collection-showcase .collection-collage--count-3 .collection-collage__item--1 {
  grid-row: 1 / span 2;
}
.collection-showcase .collection-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s ease;
}
.collection-showcase .collection-collage__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(20,12,10,.18));
}
.collection-showcase .collection-card:hover .collection-collage__item img {
  transform: scale(1.08);
}
.collection-showcase .collection-card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,.94);
  background: linear-gradient(135deg, rgba(230,0,35,.42), rgba(255,122,24,.34));
}
.collection-showcase .collection-card__label,
.collection-showcase .collection-card__metric {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.collection-showcase .collection-card__label {
  background: rgba(255,255,255,.88);
  color: #36211d;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.collection-showcase .collection-card__metric {
  background: rgba(34, 24, 21, .72);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 600;
}
.collection-showcase .collection-card__content {
  position: relative;
  padding: 24px 24px 26px;
  z-index: 1;
}
.collection-showcase .collection-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(34, 24, 21, .62);
}
.collection-showcase .collection-card__content h3 {
  font-size: 1.24rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
.collection-showcase .collection-card__content p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--grey-text);
  margin-bottom: 18px;
}
.collection-showcase .collection-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.collection-showcase .collection-card__cta,
.collection-showcase .collection-card__zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.collection-showcase .collection-card__cta {
  background: #211714;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(33, 23, 20, .16);
}
.collection-showcase .collection-card__zoom {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(33, 23, 20, .1);
  color: #211714;
  font-size: .84rem;
  font-weight: 700;
}
.collection-showcase .collection-card__cta:hover,
.collection-showcase .collection-card__zoom:hover {
  transform: translateY(-2px);
}
.collection-showcase .collection-card__cta:hover {
  background: var(--primary);
  box-shadow: 0 14px 26px rgba(230,0,35,.22);
}
.collection-showcase .collection-card__zoom:hover {
  background: #fff6f2;
  color: var(--primary);
}
.collection-showcase .collection-card--sunrise { background: linear-gradient(180deg, #fff7f0 0%, #fff 100%); }
.collection-showcase .collection-card--terracotta { background: linear-gradient(180deg, #fff3eb 0%, #fff 100%); }
.collection-showcase .collection-card--meadow { background: linear-gradient(180deg, #f2f7ee 0%, #fff 100%); }
.collection-showcase .collection-card--amber { background: linear-gradient(180deg, #fff8eb 0%, #fff 100%); }
.collection-showcase .collection-card--walnut { background: linear-gradient(180deg, #f6efe9 0%, #fff 100%); }
.collection-showcase .collection-card--rose { background: linear-gradient(180deg, #fff2f3 0%, #fff 100%); }

/* ================================================================
   PRODUCTS GRID
================================================================ */
.products-section { background: var(--white); }
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--grey-mid);
  background: var(--white);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  color: var(--dark);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,0,35,.25);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.products-grid--catalog {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-mid);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.universal-faq-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at top right, rgba(255,122,24,.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(230,0,35,.12), transparent 32%),
    linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
}
.universal-faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
}
.universal-faq-hero {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(145deg, #201615 0%, #46211d 52%, #e45f2b 140%);
  color: #fff;
  box-shadow: 0 28px 56px rgba(56, 23, 19, .22);
  overflow: hidden;
}
.universal-faq-hero::before,
.universal-faq-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.universal-faq-hero::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -70px;
  background: rgba(255,255,255,.08);
}
.universal-faq-hero::after {
  width: 150px;
  height: 150px;
  bottom: -60px;
  left: -50px;
  background: rgba(255,255,255,.08);
}
.universal-faq-hero .section-tag {
  background: rgba(255,255,255,.14);
}
.universal-faq-hero h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 14px;
}
.universal-faq-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.78);
  font-size: .96rem;
  line-height: 1.8;
  max-width: 440px;
}
.universal-faq-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.universal-faq-metric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  font-size: .86rem;
  font-weight: 700;
}
.universal-faq-metric i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
}
.universal-faq-list {
  display: grid;
  gap: 16px;
}
.universal-faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(109, 68, 55, .09);
  box-shadow: 0 16px 38px rgba(53, 28, 24, .08);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.universal-faq-item:hover,
.universal-faq-item.is-open {
  transform: translateY(-4px);
  border-color: rgba(230,0,35,.18);
  box-shadow: 0 22px 48px rgba(53, 28, 24, .12);
}
.universal-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.universal-faq-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.16rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 14px 24px rgba(0,0,0,.12);
}
.universal-faq-icon--coral { background: linear-gradient(135deg, #ff7a18, #ff4d6a); }
.universal-faq-icon--blue { background: linear-gradient(135deg, #007cf0, #00dfd8); }
.universal-faq-icon--gold { background: linear-gradient(135deg, #f59e0b, #f97316); }
.universal-faq-icon--teal { background: linear-gradient(135deg, #0f766e, #22c55e); }
.universal-faq-icon--rose { background: linear-gradient(135deg, #be185d, #fb7185); }
.universal-faq-copy {
  flex: 1 1 auto;
}
.universal-faq-copy small {
  display: block;
  margin-bottom: 6px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c2572f;
}
.universal-faq-copy strong {
  display: block;
  color: #201615;
  font-size: 1rem;
  line-height: 1.55;
}
.universal-faq-toggle {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32,22,21,.06);
  color: #201615;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.universal-faq-item.is-open .universal-faq-toggle {
  background: #201615;
  color: #fff;
  transform: rotate(180deg);
}
.universal-faq-answer {
  overflow: hidden;
  transition: max-height .42s ease;
}
.universal-faq-answer__inner {
  padding: 0 22px 22px 92px;
}
.universal-faq-answer p {
  margin: 0;
  color: #5b514d;
  font-size: .92rem;
  line-height: 1.85;
}
.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge-sale, .badge-new, .badge-hot {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.badge-sale { background: var(--primary); color: var(--white); }
.badge-new  { background: #00a65a; color: var(--white); }
.badge-hot  { background: #ff8800; color: var(--white); }
.product-actions {
  position: absolute;
  right: 10px; top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(14px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: .88rem;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-actions button:hover { background: var(--primary); color: var(--white); }
.btn-wishlist.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230,0,35,.24);
}
.product-info { padding: 16px; }
.product-cat {
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.product-info h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.price-current { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: .85rem; color: var(--grey-text); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; font-size: .82rem; color: #f4b400; }
.product-rating span { color: var(--grey-text); font-size: .8rem; margin-left: 2px; }
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--transition);
  transform: translateY(4px);
  opacity: 0;
}
.product-card:hover .btn-cart {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover .btn-cart:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(230,0,35,.35);
}

.products-empty-state {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 34px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(230,0,35,.04), rgba(255,255,255,1));
  border: 1px dashed rgba(230,0,35,.2);
  margin-top: 18px;
}
.products-empty-state i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(230,0,35,.08);
  color: var(--primary);
}
.products-empty-state h3 {
  font-size: 1.2rem;
}
.products-empty-state p {
  color: var(--grey-text);
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}
.quick-view-modal.active {
  display: block;
}
.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, .55);
  backdrop-filter: blur(6px);
}
.quick-view-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 50px auto;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.quick-view-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}
.quick-view-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}
.quick-view-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.quick-view-media {
  background: linear-gradient(135deg, rgba(230,0,35,.08), rgba(255,122,24,.06));
}
.quick-view-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.quick-view-content {
  padding: 42px 34px;
}
.quick-view-cat {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(230,0,35,.08);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.quick-view-content h3 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.quick-view-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.quick-view-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}
.quick-view-old-price {
  color: var(--grey-text);
  text-decoration: line-through;
}
.quick-view-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f4b400;
  margin-bottom: 18px;
}
.quick-view-rating span {
  color: var(--grey-text);
  margin-left: 6px;
  font-size: .9rem;
}
.quick-view-desc {
  color: var(--grey-text);
  line-height: 1.75;
  margin-bottom: 24px;
}
.quick-view-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.quick-view-wishlist.active {
  background: rgba(230,0,35,.08);
  color: var(--primary);
  border-color: rgba(230,0,35,.16);
}

/* ================================================================
   PROMO BANNER
================================================================ */
.promo-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: url('images/handmade-decor-display.jpg') center/cover no-repeat;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(230,0,35,.88) 0%, rgba(100,0,10,.75) 100%);
}
.promo-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 40px 20px;
}
.promo-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
}
.promo-content h2 span { color: #FFD700; }
.promo-content p { font-size: 1rem; opacity: .9; margin-bottom: 22px; }
.promo-content strong { background: rgba(255,255,255,.2); padding: 2px 8px; border-radius: 5px; }

/* ================================================================
   COLLECTION / HORIZONTAL SCROLL
================================================================ */
.collection-section { background: var(--grey-light); }
.collection-section:nth-child(even) { background: var(--white); }
.collection-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--grey-mid);
}
.collection-scroll::-webkit-scrollbar { height: 5px; }
.collection-scroll::-webkit-scrollbar-track { background: var(--grey-mid); border-radius: 3px; }
.collection-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.collection-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: var(--transition);
  cursor: pointer;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.collection-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.coll-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coll-info h4 { font-size: .9rem; font-weight: 700; }
.coll-info span { font-size: .88rem; font-weight: 700; color: var(--primary); }

/* Kids section accent */
.kids-section .section-tag { background: #8b00ff; }
.party-section .section-tag { background: #ff8800; }
.gifts-section .section-tag { background: #00a65a; }

/* ================================================================
   VIDEO BANNER
================================================================ */
.video-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
}
.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.6) 0%, rgba(230,0,35,.5) 100%);
}
.video-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.video-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.video-content h2 span { color: #FFD700; }
.video-content p {
  font-size: 1rem;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ================================================================
   GALLERY
================================================================ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,0,35,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.8rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--grey-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-mid);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.testimonial-quote {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 12px;
  opacity: .6;
}
.testimonial-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--grey-text);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--grey-text); }
.testimonial-stars { color: #f4b400; font-size: .9rem; }

/* ================================================================
   FEATURES STRIP
================================================================ */
.features-strip {
  background: var(--primary);
  padding: 32px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.feature-item i { font-size: 2rem; opacity: .9; flex-shrink: 0; }
.feature-item strong { display: block; font-size: .95rem; font-weight: 700; }
.feature-item span  { font-size: .82rem; opacity: .8; }

.home-stats-section {
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
  padding: 34px 0 42px;
  border-bottom: 1px solid #f0e0d0;
}

.home-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-stat-card {
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  color: #2b2b2b;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(230,0,35,.08);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(15,23,42,.05);
}

.home-stat-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230,0,35,.12), rgba(255,122,24,.18));
  color: var(--primary);
  font-size: 1.5rem !important;
  opacity: 1 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.home-stat-card__value {
  display: block;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  line-height: 1.1;
  color: var(--primary);
}

.home-stat-card__label {
  display: block;
  margin-top: 5px;
  font-size: .83rem !important;
  color: #666;
  opacity: 1 !important;
}

/* ================================================================
   SOCIAL / INSTAGRAM
================================================================ */
.social-section { background: var(--white); }
.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  box-shadow: var(--shadow-sm);
}
.social-btn::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 65%);
  opacity: 0;
  transition: opacity .35s ease;
}
.social-btn i {
  position: relative;
  z-index: 1;
  transition: transform .35s ease;
}
.social-btn:hover {
  transform: translateY(-4px) scale(.92);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  filter: saturate(1.15);
}
.social-btn:hover::after { opacity: 1; }
.social-btn:hover i { transform: scale(1.12); }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25d366; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,0,35,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ================================================================
   CONTACT
================================================================ */
.contact-section { background: var(--grey-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-item i {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.contact-item span  { font-size: .88rem; color: var(--grey-text); }
.contact-item a     { color: var(--primary); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-mid);
  border-radius: 10px;
  font-size: .9rem;
  font-family: var(--font-main);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  background: var(--grey-light);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(230,0,35,.1);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: .78rem; color: var(--grey-text); margin-top: 8px; }

/* ================================================================
   FOOTER
================================================================ */
/* Newsletter */
.footer-newsletter {
  background: var(--dark);
  padding: 40px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.nl-text h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.nl-text p  { color: rgba(255,255,255,.65); font-size: .9rem; }
.nl-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 440px;
  min-width: 280px;
}
.nl-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: .9rem;
  font-family: var(--font-main);
  outline: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form .btn { border-radius: 0 50px 50px 0; border-left: none; }

/* Main footer */
.footer-main {
  background: #1a1a1a;
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 36px;
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.footer-social a::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(255,255,255,.32) 0%, rgba(255,255,255,0) 68%);
  opacity: 0;
  transition: opacity .35s ease;
}
.footer-social a i {
  position: relative;
  z-index: 1;
  transition: transform .35s ease;
}
.footer-social a:nth-child(1) { background: linear-gradient(135deg, #1877f2, #2d5cff); }
.footer-social a:nth-child(2) { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.footer-social a:nth-child(3) { background: linear-gradient(135deg, #ff1f1f, #c40000); }
.footer-social a:nth-child(4) { background: linear-gradient(135deg, #25d366, #128c7e); }
.footer-social a:hover {
  transform: translateY(-4px) scale(.9);
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
  filter: brightness(1.08);
}
.footer-social a:hover::after { opacity: 1; }
.footer-social a:hover i { transform: scale(1.15); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
  animation: footerIconFloat 3.2s ease-in-out infinite;
}
.footer-title-icon i {
  font-size: .95rem;
  animation: footerIconPulse 2.4s ease-in-out infinite;
}
.footer-title-icon.quick { background: linear-gradient(135deg, #ff7a18, #ffb347); }
.footer-title-icon.category { background: linear-gradient(135deg, #5b86e5, #36d1dc); }
.footer-title-icon.help { background: linear-gradient(135deg, #8e2de2, #ff6a88); }
.footer-title-icon.contact { background: linear-gradient(135deg, #11998e, #38ef7d); }
@keyframes footerIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes footerIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.footer-col ul li {
  margin-bottom: 9px;
  font-size: .88rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.footer-contact ul li i { color: var(--primary); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }

/* Footer bottom */
.footer-bottom {
  background: #111;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; }
.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-icons img {
  height: 22px;
  width: auto;
  filter: brightness(.8) grayscale(.3);
  transition: filter var(--transition);
}
.payment-icons img:hover { filter: brightness(1) grayscale(0); }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.float-whatsapp, .float-call {
  position: fixed;
  z-index: 900;
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(0,0,0,.25);
  transition: var(--transition);
}
.float-whatsapp {
  bottom: 90px; right: 22px;
  background: #25d366;
}
.float-whatsapp:hover { background: #1da851; transform: scale(1.1) translateY(-3px); }
.float-call {
  bottom: 22px; right: 22px;
  background: var(--primary);
}
.float-call:hover { background: var(--primary-dark); transform: scale(1.1) translateY(-3px); }
.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.float-whatsapp:hover .float-tooltip { opacity: 1; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 160px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); color: var(--white); }

/* ================================================================
   TOAST
================================================================ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: #00a65a; font-size: 1.1rem; }

/* ================================================================
   PRODUCT FILTER – hide/show
================================================================ */
.product-card.hidden {
  display: none;
}

/* ================================================================
   RESPONSIVE (UPDATED 2026)
================================================================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
  .nav-phone { display: none; }
  .categories-grid    { grid-template-columns: repeat(4, 1fr); }
  .products-grid      { grid-template-columns: repeat(3, 1fr); }
  .collection-showcase .collection-card--feature,
  .collection-showcase .collection-card--compact { grid-column: span 4; }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand       { grid-column: span 3; }
  .insta-grid         { grid-template-columns: repeat(4, 1fr); }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .offer-big   { grid-column: span 2; }
  .categories-grid   { grid-template-columns: repeat(3, 1fr); }
  .universal-faq-shell { grid-template-columns: 1fr; }
  .universal-faq-hero { position: relative; top: auto; }
  .collection-showcase .collection-card--feature,
  .collection-showcase .collection-card--compact { grid-column: span 3; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.g-wide { grid-column: span 2; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: span 2; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .section { padding: 44px 0; }

  .home-stats-section {
    padding: 24px 0 30px;
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-stat-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px;
    min-height: 148px;
  }

  .home-stat-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.2rem !important;
  }

  .home-stat-card__value {
    font-size: 1.22rem !important;
  }

  .home-stat-card__label {
    font-size: .78rem !important;
    line-height: 1.45;
  }

  /* Header */
  .nav-row {
    min-height: 72px;
    gap: 12px;
  }
  .site-logo img {
    height: 44px;
    max-width: 150px;
  }
  .cart-drawer {
    width: 100%;
  }
  .cart-item {
    grid-template-columns: 54px 1fr auto;
    gap: 8px;
  }
  .cart-item img {
    width: 54px;
    height: 54px;
  }
  .hamburger   { display: flex; }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0;
    background: rgba(255,255,255,.98);
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height .4s ease, opacity .25s ease, transform .25s ease, padding .25s ease;
    border: 0 solid rgba(0,0,0,.08);
    border-radius: 18px;
  }
  .nav-panel.open {
    padding: 14px;
    box-shadow: var(--shadow-lg);
    max-height: 85vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-width: 1px;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin: 0;
  }
  .nav-links a {
    padding: 10px 14px;
    border: 1px solid var(--grey-mid);
    border-radius: 14px;
    background: var(--white);
  }
  .nav-links a.active::after { display: none; }
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-icon {
    display: none;
  }
  .nav-phone,
  .nav-quote-btn {
    justify-content: center;
    width: 100%;
  }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding: 0; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown { border-radius: 10px; border: none; box-shadow: none; }
  .dropdown::before { display: none; }
  .dropdown li a { padding: 7px 12px; background: rgba(61,107,79,.06); border-radius: 8px; margin-bottom: 2px; transform: none !important; }
  .dropdown li a:hover { background: rgba(61,107,79,.13); transform: none !important; }
  .header--transparent:not(.is-scrolled) .nav-panel {
    background: rgba(13, 22, 18, .96);
    border-color: rgba(255,255,255,.08);
  }
  .header--transparent:not(.is-scrolled) .nav-links a,
  .header--transparent:not(.is-scrolled) .nav-phone {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.08);
    color: var(--white);
  }
  .header--transparent:not(.is-scrolled) .dropdown li a {
    background: rgba(255,255,255,.06);
  }

  /* Hero */
  .hero-single { min-height: auto; }
  .hero-content { max-width: 100%; padding: 112px 0 36px; }
  .hero-content h1 { font-size: 1.25rem; }
  .hero-content p { font-size: .92rem; }
  .banner-inner {
    padding: 90px 0 30px;
  }
  .quick-view-dialog {
    width: calc(100% - 10px);
    margin: 10px auto;
  }
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
  .quick-view-media img {
    min-height: 180px;
    max-height: 220px;
  }
  .quick-view-content {
    padding: 16px 10px;
  }
  .quick-view-content h3 {
    font-size: 1.1rem;
  }

  /* Grid adjustments */
  .categories-grid   { grid-template-columns: repeat(2, 1fr); }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .products-grid--catalog { grid-template-columns: repeat(2, 1fr); }
  .collection-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-showcase .collection-card--feature,
  .collection-showcase .collection-card--compact { grid-column: span 1; min-height: 220px; }
  .collection-showcase .collection-card__actions { flex-direction: column; align-items: stretch; }
  .offers-grid       { grid-template-columns: 1fr 1fr; }
  .offer-big         { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-tall  { grid-row: span 1; }
  .gallery-item.g-wide  { grid-column: span 2; }
  .insta-grid        { grid-template-columns: repeat(3, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
  .form-row          { grid-template-columns: 1fr; }
}

/* --- 576px --- */
@media (max-width: 576px) {
  .home-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-stat-card {
    padding: 14px 12px;
    border-radius: 18px;
    min-height: 136px;
  }

  .home-stat-card__value {
    font-size: 1.08rem !important;
  }

  .home-stat-card__label {
    font-size: .74rem !important;
  }

  .categories-grid   { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .products-grid--catalog { grid-template-columns: 1fr; }
  .collection-showcase { grid-template-columns: 1fr; }
  .collection-showcase .collection-card--feature,
  .collection-showcase .collection-card--compact { grid-column: span 1; min-height: 180px; }
  .collection-showcase .collection-card__headline {
    flex-direction: column;
    align-items: flex-start;
  }
  .collection-showcase .collection-card__visual {
    min-height: 120px;
  }
  .collection-showcase .collection-collage {
    min-height: 100px;
  }
  .offers-grid       { grid-template-columns: 1fr; }
  .offer-big         { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: 1fr; }
  .gallery-item.g-wide  { grid-column: span 1; }
  .insta-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-brand      { grid-column: span 1; }
  .universal-faq-question {
    align-items: flex-start;
  }
  .universal-faq-answer__inner {
    padding: 0 8px 10px 8px;
  }
  .hero-btns         { flex-direction: column; }
  .btn               { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-single       { min-height: 70vh; }
  .hero-content h1   { font-size: 1.05rem; }
  .banner-inner h1   { font-size: clamp(1.2rem, 8vw, 2.2rem); }
  .banner-inner p    { font-size: .82rem; }
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev { display: none !important; }
}

/* --- 400px --- */
@media (max-width: 400px) {
  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card {
    flex-direction: row;
    align-items: center;
    min-height: auto;
  }

  .products-grid  { grid-template-columns: 1fr; }
  .insta-grid     { grid-template-columns: 1fr; }
  .collection-showcase .collection-card__content { padding: 16px; }
}

/* --- Public page layout overrides --- */
@media (max-width: 992px) {
  .page-products .products-layout,
  .page-quote .quote-grid,
  .page-blog-post .blog-post-layout,
  .page-product .product-detail-grid,
  .page-product .product-review-layout,
  .page-product .product-enquiry-layout,
  .page-contact .contact-grid,
  .page-about .about-grid,
  .page-about .why-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .page-products .products-sidebar {
    position: static !important;
    top: auto !important;
  }

  .page-blog .blog-grid,
  .page-home .home-blog-grid,
  .page-home .why-grid,
  .page-about .values-grid,
  .page-product .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-about .stats-grid,
  .page-home .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-category .category-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-category .category-gallery-card,
  .page-category .category-gallery-card--feature {
    grid-column: span 1 !important;
    min-height: 220px !important;
  }
}

@media (max-width: 768px) {
  .page-home .collection-showcase,
  .page-home .collection-showcase .collection-card,
  .page-home .collection-showcase .collection-card__visual,
  .page-home .collection-showcase .collection-card__content {
    min-width: 0;
  }

  .page-home .collection-showcase .collection-card__content h3 {
    font-size: 1.08rem;
  }

  .page-home .collection-showcase .collection-card__content p {
    font-size: .84rem;
    line-height: 1.55;
  }

  .page-blog .blog-grid,
  .page-home .home-blog-grid,
  .page-home .why-grid,
  .page-about .values-grid,
  .page-about .stats-grid,
  .page-home .features-grid,
  .page-product .product-related-grid,
  .page-category .category-gallery-grid,
  .page-product .product-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .page-category .category-gallery-card,
  .page-category .category-gallery-card--feature,
  .page-product .product-gallery-card,
  .page-product .product-gallery-card--hero {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 220px !important;
  }

  .page-quote form > div[style*="grid-template-columns:1fr 1fr"],
  .page-contact form > div[style*="grid-template-columns:1fr 1fr"],
  .page-product #productReviewForm > div[style*="grid-template-columns:1fr 1fr"],
  .page-product #productReviewForm > div[style*="grid-template-columns:1fr 120px"],
  .page-product #productEnquiryForm > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .page-quote .quote-card,
  .page-contact .contact-form-card,
  .page-blog-post .blog-post-card {
    padding: 22px !important;
  }

  .page-product .product-detail-grid .btn,
  .page-product .product-detail-grid .btn-lg,
  .page-product .product-detail-grid [style*="min-width:180px"] {
    width: 100%;
    min-width: 0 !important;
  }

  .page-product .tab-btn {
    padding: 12px 18px !important;
    font-size: .82rem !important;
  }

  .page-product .product-primary-media {
    min-height: 280px;
    padding: 16px;
  }

  .page-product .product-primary-media img {
    max-height: 240px;
  }

  .page-blog-post .blog-post-layout aside {
    order: 2;
  }

  .page-home .home-blog-grid > article > div,
  .page-blog .blog-grid > article > div {
    padding: 20px !important;
  }

  .float-whatsapp,
  .float-call {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    right: 12px;
  }

  .float-whatsapp { bottom: 68px; }
  .float-call { bottom: 12px; }

  .scroll-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 126px;
  }

  .float-tooltip { display: none; }
}

@media (max-width: 576px) {
  .page-about .about-grid h2,
  .page-contact .contact-form-card h3,
  .page-quote .quote-card h3,
  .page-blog-post .blog-post-card h1,
  .page-product h1 {
    font-size: 1.55rem !important;
  }

  .page-quote .quote-card,
  .page-contact .contact-form-card,
  .page-blog-post .blog-post-card {
    padding: 18px !important;
  }

  .page-home .home-blog-grid > article img,
  .page-blog .blog-grid > article img {
    height: 190px !important;
  }

  .page-contact iframe,
  .page-blog-post iframe,
  .page-product iframe,
  .page-quote iframe {
    max-width: 100%;
  }
}
