/* ═══════════════════════════════════════════════
   DewMorden – styles.css  (Redesigned)
   Primary: #E59C63 (Soft Elegant Orange)
   Fonts: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,700;1,500&display=swap');

:root {
  --orange:       #E59C63;
  --orange-deep:  #C97A40;
  --orange-light: #FDF5ED;
  --orange-mid:   #F5E0CB;
  --orange-pale:  #FEF9F4;
  --white:        #FFFFFF;
  --cream:        #FDFAF6;
  --peach:        #FFF0E4;
  --text-dark:    #231507;
  --text-mid:     #6B4226;
  --text-muted:   #A07050;
  --text-light:   #C4956A;
  --border:       rgba(229,156,99,0.18);
  --border-soft:  rgba(229,156,99,0.10);
  --shadow:       0 8px 48px rgba(201,122,64,0.14);
  --shadow-card:  0 4px 24px rgba(201,122,64,0.09);
  --shadow-btn:   0 6px 20px rgba(229,156,99,0.38);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════
   HEADER — White & Clean
═══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(201,122,64,0.06);
  transition: box-shadow 0.3s;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 76px;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(229,156,99,0.35);
}

.logo-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

nav a:hover, nav a.active-nav {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.icon-btn {
  background: var(--orange-light);
  border: 1px solid var(--border);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.2s;
}
.icon-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}
.icon-btn svg { width: 18px; height: 18px; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff;
}

.hamburger {
  display: none;
  background: var(--orange-light);
  border: 1px solid var(--border);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 1rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(201,122,64,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.875rem 1rem;
  font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.mobile-nav a:hover { color: var(--orange); background: var(--orange-light); }


/* ═══════════════════════════════════════
   HERO — Split Layout
═══════════════════════════════════════ */
#hero.hero-split {
  padding: 0;
  background: var(--white);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.hero-split-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Left — content */
.hero-content { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--border);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge span { font-size: 0.95rem; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}
.hero-title .hero-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Right — image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  inset: 5% -5% 0% 10%;
  background: var(--orange-light);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(201,122,64,0.2);
}

.hero-img-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-mid) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.hero-float-badge {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.hero-float-badge .badge-icon {
  width: 32px; height: 32px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-float-1 { top: 12%; left: -6%; }
.hero-float-2 { bottom: 14%; right: -4%; }

/* Fallback when no hero image */
.hero-fallback-placeholder {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-mid) 60%, var(--peach) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 3rem;
}


/* ═══════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--orange);
  transition: all 0.25s; cursor: pointer;
  letter-spacing: 0.3px; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(229,156,99,0.3);
}
.btn-primary:hover {
  background: var(--orange-deep); border-color: var(--orange-deep);
  transform: translateY(-2px); box-shadow: var(--shadow-btn);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--orange);
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--orange);
  transition: all 0.25s; cursor: pointer;
  letter-spacing: 0.3px; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(229,156,99,0.18);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-white:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--orange);
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 700;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; width: 100%; justify-content: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-white:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-catalogue {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; margin-top: 1rem; text-decoration: none;
}
.btn-catalogue:hover { border-color: #fff; background: rgba(255,255,255,0.1); }


/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1320px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-dark);
  margin-bottom: 1rem; line-height: 1.25;
}
.section-desc {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.85; max-width: 680px;
}


/* ═══════════════════════════════════════
   PRODUCT RANGES
═══════════════════════════════════════ */
#ranges { background: var(--cream); }
.ranges-head { margin-bottom: 3rem; }

.ranges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.range-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.range-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-mid), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 0 0 3px 3px;
}
.range-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-mid); }
.range-card:hover::before { transform: scaleX(1); }
.range-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.range-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem;
}
.range-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }


/* ═══════════════════════════════════════
   MEET OUR RANGE
═══════════════════════════════════════ */
#meet-range { background: var(--white); }

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.flip-card-container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.flip-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.1;
  perspective: 1200px;
  cursor: pointer;
}

.flip-card-front,
.flip-card-back {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: absolute;
  top: 0; left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  background: var(--orange-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.flip-card { position: relative; transform-style: preserve-3d; }
.flip-card-front { transform: rotateY(0deg); }
.flip-card-back  { transform: rotateY(180deg); }
.flip-card:hover .flip-card-front { transform: rotateY(-180deg); }
.flip-card:hover .flip-card-back  { transform: rotateY(0deg); }

.flip-card-front img, .flip-card-back img {
  width: 100%; height: 100%; object-fit: cover;
}

.flip-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(229,156,99,0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}
.flip-card:hover .flip-hint { opacity: 0; }

.flip-dots { display: flex; gap: 8px; }
.flip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
.flip-dot.active { background: var(--orange); }
.flip-card:hover ~ .flip-dots .flip-dot:first-child { background: var(--border); }
.flip-card:hover ~ .flip-dots .flip-dot:last-child  { background: var(--orange); }

.product-detail-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.product-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.product-detail-size {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.product-detail-divider {
  height: 2px;
  width: 48px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.product-spec-table tr { border-bottom: 1px solid var(--border-soft); }
.product-spec-table tr:last-child { border: none; }

.pst-key {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 45%;
  vertical-align: middle;
}
.pst-val {
  padding: 0.75rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  vertical-align: middle;
}
.pst-price { color: var(--orange); font-size: 1.05rem; }
.pst-tax { font-size: 0.76rem; color: var(--text-muted); font-weight: 400; }

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-more-products {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--orange);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--orange);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.btn-more-products:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-more-products.open { background: var(--orange); color: #fff; }

.img-fallback {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 0.5rem;
  font-size: 4rem; color: var(--text-mid);
}
.img-fallback p { font-size: 0.9rem; margin: 0; }


/* ═══════════════════════════════════════
   MORE PRODUCTS SECTION
═══════════════════════════════════════ */
#more-products-section {
  background: var(--cream);
  overflow: hidden;
  max-height: 0;
  padding: 0 2rem;
  transition: max-height 0.7s cubic-bezier(0.4,0,0.2,1),
              padding 0.5s ease,
              opacity 0.5s ease;
  opacity: 0;
}
#more-products-section.more-products-hidden { max-height: 0; padding: 0 2rem; opacity: 0; }
#more-products-section.more-products-visible { max-height: 2400px; padding: 6rem 2rem; opacity: 1; }

.more-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.mp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.mp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mp-featured { border-color: var(--orange); }

.mp-img-wrap {
  background: var(--orange-light);
  padding: 2rem;
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.mp-img-wrap img { max-height: 160px; object-fit: contain; }

.mp-info { padding: 1.5rem; }

.mp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--orange-light);
  color: var(--orange);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.mp-tag-featured { background: var(--orange); color: #fff; }

.mp-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.mp-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

.mp-price {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
}
.mp-price span { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; margin-left: 6px; }

.tech-highlights {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
}
.tech-highlights h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}
.tech-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tech-item { display: flex; gap: 1rem; align-items: flex-start; }
.tech-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.tech-item h5 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.tech-item p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }


/* ═══════════════════════════════════════
   B2C SHOP
═══════════════════════════════════════ */
#shop { background: var(--white); }

.shop-filters {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; align-items: center;
}
.filter-label { font-weight: 600; color: var(--text-mid); font-size: 0.88rem; margin-right: 0.25rem; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white); cursor: pointer;
  font-size: 0.83rem; font-weight: 500; color: var(--text-mid);
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.shop-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.shop-img-wrap {
  background: var(--orange-light);
  padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.shop-img-wrap img { max-height: 160px; object-fit: contain; }

.shop-info { padding: 1.5rem; }
.shop-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-dark); }
.shop-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }

.shop-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.shop-price { font-size: 1.25rem; font-weight: 700; color: var(--orange); }
.shop-mrp { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; }

.shop-controls { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.shop-select {
  flex: 1; padding: 8px 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; color: var(--text-dark); cursor: pointer; outline: none;
}
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
  width: 32px; height: 36px; border: none;
  background: var(--orange-light); font-size: 1rem;
  cursor: pointer; color: var(--orange); font-weight: 700; transition: background 0.2s;
}
.qty-btn:hover { background: var(--orange-mid); }
.qty-val { width: 36px; text-align: center; font-size: 0.9rem; font-weight: 600; }

.btn-cart {
  width: 100%; margin-top: 1rem;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius-md);
  padding: 12px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.btn-cart:hover { background: var(--orange-deep); transform: translateY(-1px); }

.discount-badge {
  background: var(--orange-light); color: var(--orange);
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
}


/* ═══════════════════════════════════════
   WHOLESALE
═══════════════════════════════════════ */
#wholesale {
  background: var(--cream);
}

.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-title-dark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.wholesale-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.wholesale-desc {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.wholesale-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ws-stat { display: flex; flex-direction: column; gap: 4px; }

.ws-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.ws-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--text-dark);
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.wholesale-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.wf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.wf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--orange-mid); }

.wf-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.wf-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.wf-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }


/* ═══════════════════════════════════════
   B2B
═══════════════════════════════════════ */
#b2b {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
}
#b2b .section-title  { color: #fff; }
#b2b .section-desc   { color: rgba(255,255,255,0.85); }
#b2b .section-label  { color: rgba(255,255,255,0.7); }

.b2b-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.b2b-benefits { list-style: none; margin: 2rem 0; }
.b2b-benefits li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem; color: rgba(255,255,255,0.9);
}
.b2b-benefits li:last-child { border: none; }
.b2b-icon { font-size: 1.4rem; flex-shrink: 0; }

.b2b-form {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.b2b-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.8); margin-bottom: 6px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.7); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--orange-deep); }
.form-group textarea { resize: vertical; min-height: 100px; }


/* ═══════════════════════════════════════
   ABOUT — Enhanced Redesign
═══════════════════════════════════════ */
#about { background: var(--white); padding: 0; }

/* Brand Story Hero */
.about-story-section {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--peach) 100%);
  padding: 6rem 2rem;
}

.about-story-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-title span { color: var(--orange); font-style: italic; }

.about-text-block {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.about-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.material-tag {
  background: var(--white);
  color: var(--orange);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(229,156,99,0.1);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-badge {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: 0 2px 8px rgba(229,156,99,0.08);
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }

/* Values Section */
.about-values-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.about-values-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.values-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--white);
  border-color: var(--orange-mid);
}
.value-card:hover::after { transform: scaleX(1); }

.value-icon-wrap {
  width: 72px; height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.value-card:hover .value-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
}
.value-icon-wrap svg { width: 32px; height: 32px; }
.value-card:hover .value-icon-wrap svg path,
.value-card:hover .value-icon-wrap svg circle,
.value-card:hover .value-icon-wrap svg polyline,
.value-card:hover .value-icon-wrap svg line,
.value-card:hover .value-icon-wrap svg rect { stroke: #fff !important; }

.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Materials Section */
.about-materials-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.about-materials-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.materials-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.material-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange-mid);
}

.material-card-accent {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--orange-light);
  border-radius: 0 var(--radius-lg) 0 80px;
  z-index: 0;
  transition: all 0.3s;
}
.material-card:hover .material-card-accent { background: var(--orange-mid); }

.material-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  display: block;
}

.material-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.material-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.material-tag-pill {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* Eco cards */
.eco-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.eco-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.eco-card:hover { transform: translateX(8px); }
.eco-card-icon { font-size: 2rem; flex-shrink: 0; }
.eco-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.3rem;
}
.eco-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }


/* ═══════════════════════════════════════
   PRODUCT DETAILS
═══════════════════════════════════════ */
#product-details { background: var(--white); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.detail-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--orange-light); padding: 2rem;
  border: 1px solid var(--border); margin-bottom: 1rem;
}
.specs-list { margin-top: 1.5rem; }
.spec-row { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border-soft); font-size: 0.92rem; }
.spec-row:last-child { border: none; }
.spec-key { color: var(--text-muted); font-weight: 500; }
.spec-val { font-weight: 600; color: var(--text-dark); }
.directions-list { margin-top: 1.25rem; }
.dir-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.dir-num {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--orange); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.dir-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; padding-top: 4px; }
.disposal-box {
  margin-top: 1.5rem; background: var(--orange-light);
  border-radius: var(--radius-md); padding: 1.25rem; border: 1px solid var(--border);
}
.disposal-box h4 { color: var(--orange); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.disposal-box p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }


/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: center;
  background: var(--white); border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  border: 1px solid var(--border); transition: all 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-card); border-color: var(--orange-mid); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-text h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.contact-card-text p { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.map-wrap {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  height: 200px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.map-wrap-inner { text-align: center; }
.map-wrap-inner p.map-city { font-weight: 600; color: var(--text-dark); margin-top: 0.5rem; }
.map-wrap-inner p.map-pin { font-size: 0.82rem; margin-top: 4px; color: var(--text-muted); }
.map-wrap-inner a { margin-top: 0.75rem; display: inline-block; color: var(--orange); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.cf-group { margin-bottom: 1.25rem; }
.cf-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; }
.cf-group input, .cf-group textarea, .cf-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus {
  border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(229,156,99,0.1);
}
.cf-group textarea { resize: vertical; min-height: 100px; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: #1E0F05; color: rgba(255,255,255,0.82); padding: 5rem 2rem 2rem; }
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: #fff; font-size: 1.6rem; margin-bottom: 0.75rem; display: block; }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 1rem; transition: all 0.2s;
}
.social-link:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 0.5rem; }
.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-bottom a { color: var(--orange); text-decoration: none; }


/* ═══════════════════════════════════════
   WHATSAPP / TOAST / MODAL
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.toast {
  position: fixed; bottom: 100px; right: 24px;
  background: var(--text-dark); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-md);
  font-size: 0.88rem; font-weight: 500;
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 9999;
  border-left: 3px solid var(--orange); pointer-events: none;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateY(0); }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(35,21,7,0.55); backdrop-filter: blur(4px);
  z-index: 2000; display: none; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-xl); padding: 2.5rem;
  max-width: 480px; width: 90%; position: relative;
  animation: pop 0.3s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange-light); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 1rem; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--orange); color: #fff; }


/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .ranges-grid { grid-template-columns: repeat(2, 1fr); }
  .product-showcase { grid-template-columns: 1fr; gap: 3rem; }
  .flip-card { max-width: 360px; margin: 0 auto; }
  .wholesale-inner { grid-template-columns: 1fr; gap: 3rem; }
  .more-products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 68px; }
  .logo-img-circle { width: 46px; height: 46px; }
  .logo-name { font-size: 1.35rem; }
  .logo-sub { display: none; }
  .mobile-nav { top: 68px; }

  /* Hero mobile: stack vertically */
  .hero-split-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .hero-image-wrap { order: -1; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .ranges-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .tech-highlights-grid { grid-template-columns: 1fr; }
  .more-products-grid { grid-template-columns: 1fr; }
  .wholesale-features { grid-template-columns: 1fr; }
  .b2b-inner { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 1.25rem; }
  .about-story-section { padding: 4rem 1.25rem; }
  .about-values-section { padding: 4rem 1.25rem; }
  .about-materials-section { padding: 4rem 1.25rem; }
  #more-products-section.more-products-visible { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { padding: 0 1rem; }
  .wholesale-stats { gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.5rem; }
}
