@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #ff4d4d;
  --primary-dark: #e63946;
  --primary-light: #ff7b7b;
  --primary-glow: rgba(255, 77, 77, 0.25);
  --accent: #3b82f6;
  --green: #10b981;
  --gold: #f59e0b;
  --pink: #ec4899;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #888;
  --border: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 30px var(--primary-glow);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 72px;
}

[data-theme="dark"] {
  --bg: #0f0f1a;
  --bg-alt: #1a1a2e;
  --bg-card: #1e1e32;
  --text: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-muted: #777;
  --border: #2a2a3e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition)
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

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

button {
  cursor: pointer;
  font-family: var(--font);
  border: none
}

input,
textarea {
  font-family: var(--font)
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes badgePop {
  0% {
    transform: scale(0)
  }

  50% {
    transform: scale(1.3)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1)
  }

  15% {
    transform: scale(1.3)
  }

  30% {
    transform: scale(1)
  }

  45% {
    transform: scale(1.2)
  }

  60% {
    transform: scale(1)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 10001;
  width: 0;
  transition: width 0.1s linear
}

/* PROMO BAR */
.promo-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative
}

.promo-bar .promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.8
}

.promo-bar .promo-close:hover {
  opacity: 1
}

/* HEADER */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 80px);
  height: var(--header-height);
  background: var(--bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition)
}

#header #logo {
  display: flex;
  align-items: center;
  gap: 10px
}

#header #logo img {
  width: 45px;
  height: 38px;
  object-fit: contain
}

#header #logo h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary)
}

#navbar {
  display: flex;
  align-items: center;
  gap: 6px
}

#navbar li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative
}

#navbar li a:hover,
#navbar li a.active {
  color: var(--primary);
  background: rgba(255, 77, 77, 0.08)
}

#navbar li a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px
}

.cart-link {
  position: relative
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.3s ease
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none
}

.wishlist-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.wishlist-count:empty,
.wishlist-count[data-count="0"] {
  display: none
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition)
}

.theme-toggle:hover {
  background: rgba(255, 77, 77, 0.1)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  background: none
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition)
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px)
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.08)0%, rgba(255, 200, 200, 0.15)50%, rgba(255, 255, 255, 0)100%), url('image/12.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7))
}

[data-theme="dark"] .hero::before {
  background: linear-gradient(to bottom, rgba(15, 15, 26, 0.5), rgba(15, 15, 26, 0.8))
}

.hero>* {
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both
}

.hero .btn-primary {
  animation: fadeInUp 0.8s ease 0.4s both
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow)
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  transition: var(--transition)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px)
}

/* SECTIONS */
.section-p1 {
  padding: 60px clamp(20px, 4vw, 80px)
}

/* FEATURES */
.features {
  padding: 70px 20px;
  background: var(--bg-alt);
  text-align: center
}

.features h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 40px
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition)
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary)
}

/* PRODUCT GRID */
#product1 {
  text-align: center;
  background: var(--bg)
}

.pro-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding-top: 20px
}

/* PRODUCT CARD */
.pro {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative
}

.pro:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

.pro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition)
}

.pro:hover img {
  transform: scale(1.05)
}

.pro .des {
  text-align: center;
  padding: 8px 0
}

.pro .des h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px
}

.pro .des h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px
}

.pro .des .add-to-cart {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.pro .des .add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px var(--primary-glow)
}

/* PRODUCT BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2
}

.badge-new {
  background: #3b82f6;
  color: #fff
}

.badge-popular {
  background: #ec4899;
  color: #fff
}

.badge-bestseller {
  background: #f59e0b;
  color: #fff
}

.badge-organic {
  background: #10b981;
  color: #fff
}

.badge-sale {
  background: #ef4444;
  color: #fff
}

/* WISHLIST BUTTON */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition);
  cursor: pointer
}

.wishlist-btn:hover {
  color: var(--primary);
  transform: scale(1.15)
}

.wishlist-btn.active {
  color: var(--primary)
}

.wishlist-btn.active i {
  animation: heartBeat 0.6s ease
}

[data-theme="dark"] .wishlist-btn {
  background: rgba(30, 30, 50, 0.9)
}

/* STAR RATING */
.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
  font-size: 0.8rem
}

.star-rating i {
  color: var(--gold)
}

.star-rating span {
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
  font-size: 0.8rem
}

/* PRODUCT TAGLINE */
.pro-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
  font-style: italic
}

/* SUB NAV HEADER2 */
#header2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--bg-alt)
}

#header2 ul {
  display: flex;
  gap: clamp(20px, 4vw, 70px)
}

#header2 ul li {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem)
}

#header2 ul li a {
  color: var(--text);
  transition: var(--transition);
  padding-bottom: 4px
}

#header2 ul li a.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary)
}

#header2 ul li a:hover {
  color: var(--primary)
}

#header2 ul li {
  transition: var(--transition)
}

#header2 ul li:hover {
  transform: scale(1.08)
}

/* SEARCH / FILTER */
.search-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: var(--max-width);
  margin: 0 auto 10px
}

.search-input {
  flex: 1;
  min-width: 220px;
  max-width: 400px;
  padding: 12px 20px 12px 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  background: var(--bg-card);
  color: var(--text);
  outline: none;
  transition: var(--transition)
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow)
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 400px
}

.search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted)
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  background: var(--bg-card);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition)
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 77, 77, 0.08)
}

/* SORT SELECT */
.sort-select {
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition)
}

.sort-select:focus {
  border-color: var(--primary)
}

/* COLLABORATION */
.collaboration {
  padding: 60px 20px;
  text-align: center;
  background: var(--bg)
}

.collaboration h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 40px
}

.collaboration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto
}

.collab-logo {
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  background: var(--bg-card)
}

.collab-logo img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain
}

.collab-logo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow)
}

/* FRUIT OF THE DAY */
.fruit-of-day {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.05), rgba(255, 200, 200, 0.1));
  text-align: center
}

.fruit-of-day h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 30px
}

.fotd-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center
}

.fotd-card .fotd-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite
}

.fotd-card h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px
}

.fotd-card .fotd-nutrition {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px
}

.fotd-card .nutrition-item {
  padding: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm)
}

.fotd-card .nutrition-item .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary)
}

.fotd-card .nutrition-item .label {
  font-size: 0.8rem;
  color: var(--text-muted)
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  padding: 50px 20px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 30px
}

.footer-about h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 800
}

.footer-about p {
  line-height: 1.6;
  max-width: 280px
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted)
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text)
}

.footer-links ul li {
  margin-bottom: 10px
}

.footer-links ul li a {
  color: var(--text-muted);
  transition: var(--transition)
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 4px
}

.footer-social .social-icons {
  display: flex;
  gap: 12px
}

.footer-social .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid var(--border)
}

.footer-social .social-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px)
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem
}

/* SERVICES */
.other-services {
  padding: 70px 20px;
  background: var(--bg-alt);
  text-align: center
}

.other-services h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 800
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border)
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow)
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6
}

/* REVIEWS */
.customer-reviews {
  background: var(--bg);
  padding: 70px 20px;
  text-align: center
}

.customer-reviews h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 800
}

.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto
}

.review-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border)
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.customer-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary-glow)
}

.review-text {
  color: var(--text-secondary);
  margin: 10px 0;
  font-style: italic;
  font-size: 0.95rem
}

.customer-name {
  font-weight: 700;
  color: var(--text)
}

/* HISTORY */
.history {
  background: var(--bg-alt);
  padding: 70px 20px;
  text-align: center
}

.history h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 800
}

.history-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap
}

.story-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover
}

.story-text {
  text-align: left;
  max-width: 550px;
  flex: 1
}

.story-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 10px 0
}

/* STATS */
.stats-section {
  padding: 60px 20px;
  background: var(--bg);
  text-align: center
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto
}

.stat-card {
  padding: 24px
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary)
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px
}

/* OUTLET */
.container {
  background: url('image/map.png') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative
}

.container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1)
}

.outlet-card2 {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  z-index: 10;
  max-width: 340px
}

[data-theme="dark"] .outlet-card2 {
  background: rgba(30, 30, 50, 0.95)
}

.outlet-card2 h1 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--text)
}

.outlet-card2 ul {
  padding: 0;
  font-size: 1.1rem
}

.outlet-card2 ul li {
  margin-bottom: 0.7rem;
  transition: var(--transition)
}

.outlet-card2 ul li:hover {
  transform: translateX(8px)
}

.outlet-card2 a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition)
}

/* CONTACT */
.contact-section {
  padding: 50px 20px;
  background: var(--bg-card);
  max-width: 900px;
  margin: 50px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border)
}

.contact-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: 800
}

.contact-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center
}

.contact-info {
  flex: 1 1 280px;
  background: var(--bg-alt);
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--text)
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary)
}

.contact-info p {
  font-size: 1rem;
  margin: 12px 0;
  color: var(--text-secondary)
}

.contact-form {
  flex: 1 1 380px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  transition: var(--transition);
  background: var(--bg-card);
  color: var(--text)
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow)
}

.contact-form button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  transition: var(--transition)
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow)
}

/* NEWSLETTER */
.newsletter {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  padding: 40px 20px;
  max-width: 500px;
  margin: 50px auto;
  border-radius: var(--radius-lg);
  text-align: center
}

.newsletter h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  font-weight: 800
}

.newsletter p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.newsletter input[type="email"] {
  padding: 12px 18px;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  outline: none;
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
  background: var(--bg-card);
  color: var(--text)
}

.newsletter input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow)
}

.newsletter button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition)
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow)
}

/* CART */
#cart {
  overflow-x: auto
}

#cart table {
  width: 100%;
  border-collapse: collapse
}

#cart table img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm)
}

#cart table thead {
  border-bottom: 2px solid var(--border)
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 16px 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px
}

#cart table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition)
}

#cart table tbody tr:hover {
  background: var(--bg-alt)
}

#cart table tbody td {
  padding: 16px 10px;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text);
  vertical-align: middle
}

#cart table tbody td:nth-child(3) {
  text-align: left;
  font-weight: 600
}

.remove-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition)
}

.remove-btn:hover {
  color: var(--primary-dark);
  transform: scale(1.2)
}

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px
}

#coupon {
  flex: 1;
  min-width: 280px
}

#coupon h3,
#subtotal h3 {
  padding-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text)
}

#coupon input {
  padding: 12px 18px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  color: var(--text);
  transition: var(--transition)
}

#coupon input:focus {
  border-color: var(--primary)
}

#coupon button,
#subtotal button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: var(--transition);
  border: none
}

#coupon button:hover,
#subtotal button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow)
}

#subtotal {
  flex: 1;
  min-width: 280px;
  border: 2px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card)
}

#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px
}

#subtotal table td {
  width: 50%;
  border: 1px solid var(--border);
  padding: 12px;
  font-size: 0.9rem;
  color: var(--text)
}

.empty-cart {
  text-align: center;
  padding: 60px 20px
}

.empty-cart .empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  color: var(--text-muted)
}

.empty-cart p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px
}

/* TOAST */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.toast {
  background: var(--bg-card);
  color: var(--text);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--primary-glow)
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.back-to-top:hover {
  transform: translateY(-3px)
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: none
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5)
}

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease;
  flex-wrap: wrap
}

.cookie-consent p {
  font-size: 0.9rem;
  color: var(--text-secondary)
}

.cookie-consent button {
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition)
}

.cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border)
}

/* FAQ */
.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto
}

.faq-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition)
}

.faq-item:hover {
  border-color: var(--primary-light)
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition)
}

.faq-question:hover {
  color: var(--primary)
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-muted)
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7
}

/* WISHLIST PAGE */
.wishlist-section {
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto
}

.wishlist-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800
}

.wishlist-empty {
  text-align: center;
  padding: 60px 20px
}

.wishlist-empty .empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  color: var(--text-muted)
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 12px clamp(20px, 4vw, 80px);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-alt)
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: var(--transition)
}

.breadcrumbs a:hover {
  color: var(--primary)
}

.breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition);
  position: relative
}

.modal-overlay.active .modal {
  transform: scale(1)
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer
}

.modal h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px
}

.modal .nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.modal .nutrition-grid .stat {
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  text-align: center
}

.modal .nutrition-grid .stat .val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary)
}

.modal .nutrition-grid .stat .lbl {
  font-size: 0.8rem;
  color: var(--text-muted)
}

/* HERO1 */
.hero1 {
  background-image: url('image/img.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--text);
  min-height: 60vh;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.hero1 h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem)
}

.hero1 p {
  font-size: 1.1rem
}

/* MANAGER */
.manager-info {
  background: var(--bg);
  padding: 80px 20px;
  text-align: center
}

.manager-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap
}

.manager-image {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover
}

.manager-details {
  text-align: left;
  flex: 1;
  min-width: 200px
}

.manager-details h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text)
}

.manager-details p {
  font-size: 1.05rem;
  color: var(--text-secondary)
}

.button-container {
  text-align: center;
  margin-top: 20px
}

.go-back-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  transition: var(--transition)
}

.go-back-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow)
}

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto
}

/* Body scroll lock when sidebar open */
body.sidebar-open {
  overflow: hidden
}

/* ===== RESPONSIVE: LAPTOP / SMALL DESKTOP (≤1024px) ===== */
@media (max-width: 1024px) {
  #navbar li a {
    padding: 8px 10px;
    font-size: 0.88rem
  }

  .pro-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .review-container {
    grid-template-columns: repeat(2, 1fr)
  }

  .collab-logo {
    width: 170px;
    height: 100px;
    padding: 18px
  }

  #header2 ul {
    gap: clamp(16px, 3vw, 40px)
  }

  #header2 ul li {
    font-size: clamp(1rem, 2vw, 1.5rem)
  }

  .contact-section {
    max-width: 95%;
    margin: 30px auto
  }

  .section-p1 {
    padding: 50px clamp(16px, 3vw, 40px)
  }
}

/* ===== RESPONSIVE: TABLET & MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  #header {
    padding: 0 16px
  }

  /* --- DROPDOWN MENU --- */
  #navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 8px 0;
    animation: slideDown 0.3s ease
  }

  #navbar.active {
    display: flex
  }

  #navbar li {
    width: 100%;
    border-bottom: 1px solid var(--border)
  }

  #navbar li:last-child {
    border-bottom: none
  }

  #navbar li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 1.05rem;
    text-align: center;
    border-radius: 0;
    transition: var(--transition)
  }

  #navbar li a:hover,
  #navbar li a.active {
    background: rgba(255, 77, 77, 0.08);
    color: var(--primary)
  }

  .hamburger {
    display: flex
  }

  /* --- OVERLAY (click outside to close) --- */
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible
  }

  body.sidebar-open {
    overflow: hidden
  }

  /* --- HERO --- */
  .hero {
    min-height: 55vh;
    padding: 50px 20px
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.6rem)
  }

  .hero p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem)
  }

  /* --- PRODUCT GRID --- */
  .pro-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px
  }

  .pro img {
    height: 170px
  }

  .section-p1 {
    padding: 35px 14px
  }

  /* --- FEATURES --- */
  .features {
    padding: 50px 16px
  }

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

  .feature-card {
    padding: 22px 16px
  }

  /* --- COLLABORATION --- */
  .collaboration {
    padding: 45px 16px
  }

  .collab-logo {
    width: 150px;
    height: 90px;
    padding: 14px
  }

  /* --- FRUIT OF THE DAY --- */
  .fruit-of-day {
    padding: 45px 16px
  }

  .fotd-card {
    padding: 24px 18px
  }

  /* --- HISTORY / ABOUT --- */
  .history-content {
    flex-direction: column;
    text-align: center
  }

  .story-image {
    max-width: 300px
  }

  .story-text {
    text-align: center
  }

  /* --- REVIEWS --- */
  .review-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  /* --- CONTACT --- */
  .contact-section {
    margin: 20px 12px;
    padding: 30px 16px
  }

  .contact-container {
    flex-direction: column
  }

  /* --- CART --- */
  #cart-add {
    flex-direction: column
  }

  #coupon,
  #subtotal {
    min-width: 100%
  }

  #cart table {
    font-size: 0.8rem
  }

  #cart table img {
    width: 50px;
    height: 50px
  }

  #cart table thead td {
    padding: 10px 6px;
    font-size: 0.7rem
  }

  #cart table tbody td {
    padding: 12px 6px
  }

  /* --- SERVICES --- */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  /* --- MANAGER --- */
  .manager-content {
    flex-direction: column;
    text-align: center
  }

  .manager-image {
    width: 160px;
    height: 160px
  }

  .manager-details {
    text-align: center
  }

  /* --- COOKIE CONSENT --- */
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
    gap: 10px
  }

  /* --- FOOTER --- */
  .footer {
    padding: 40px 16px 16px
  }

  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  /* --- TOAST --- */
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px
  }

  .toast {
    font-size: 0.85rem;
    padding: 12px 16px
  }

  /* --- NEWSLETTER --- */
  .newsletter {
    margin: 30px 16px;
    padding: 30px 16px
  }

  /* --- PROMO BAR --- */
  .promo-bar {
    font-size: 0.78rem;
    padding: 8px 36px 8px 16px
  }

  /* --- FAQ --- */
  .faq-section {
    padding: 40px 16px
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.95rem
  }

  /* --- STATS --- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .stat-card .stat-number {
    font-size: 2rem
  }

  /* --- HEADER2 SUB NAV --- */
  #header2 ul {
    gap: clamp(12px, 3vw, 24px);
    flex-wrap: wrap;
    justify-content: center
  }

  #header2 ul li {
    font-size: clamp(0.95rem, 2vw, 1.3rem)
  }

  /* --- SEARCH / FILTER --- */
  .search-filter-bar {
    flex-direction: column;
    gap: 10px;
    padding: 14px
  }

  .search-wrapper {
    max-width: 100%;
    min-width: unset
  }

  .search-input {
    min-width: unset
  }

  .filter-pills {
    justify-content: center
  }

  /* --- BREADCRUMBS --- */
  .breadcrumbs {
    padding: 10px 16px;
    font-size: 0.8rem
  }

  /* --- MODAL --- */
  .modal {
    padding: 24px;
    width: 92%
  }

  /* --- WHATSAPP & BACK TO TOP --- */
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    bottom: 70px;
    left: 16px
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 16px;
    left: 16px
  }

  /* --- OUTLET --- */
  .outlet-card2 {
    padding: 2rem;
    max-width: 300px
  }

  .outlet-card2 h1 {
    font-size: 1.6rem
  }

  .outlet-card2 ul {
    font-size: 1rem
  }
}

/* ===== RESPONSIVE: SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {

  /* --- PRODUCT GRID --- */
  .pro-container {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto
  }

  .pro img {
    height: 200px
  }

  /* --- FEATURES --- */
  .features-grid {
    grid-template-columns: 1fr
  }

  /* --- REVIEWS --- */
  .review-container {
    grid-template-columns: 1fr
  }

  /* --- COLLABORATION --- */
  .collaboration-logos {
    flex-direction: column;
    align-items: center
  }

  .collab-logo {
    width: 80%;
    max-width: 240px;
    height: auto;
    padding: 20px
  }

  /* --- NEWSLETTER --- */
  .newsletter form {
    flex-direction: column;
    align-items: stretch
  }

  .newsletter input[type="email"] {
    min-width: unset
  }

  /* --- FOOTER --- */
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-about p {
    max-width: 100%
  }

  .footer-social .social-icons {
    justify-content: center
  }

  /* --- SERVICES --- */
  .services-grid {
    grid-template-columns: 1fr
  }

  /* --- HEADER2 --- */
  #header2 {
    padding: 14px 10px
  }

  #header2 ul {
    gap: 10px
  }

  #header2 ul li {
    font-size: clamp(0.85rem, 4vw, 1.1rem)
  }

  /* --- SEARCH / FILTER --- */
  .search-filter-bar {
    padding: 10px
  }

  .sort-select {
    width: 100%
  }

  /* --- STATS --- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .stat-card .stat-number {
    font-size: 1.7rem
  }

  /* --- HERO --- */
  .hero {
    min-height: 50vh;
    padding: 40px 16px
  }

  .hero p {
    max-width: 100%
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 0.9rem
  }

  /* --- PROMO BAR --- */
  .promo-bar {
    font-size: 0.72rem;
    padding: 7px 32px 7px 10px
  }

  .promo-bar .promo-close {
    right: 8px
  }

  /* --- CART TABLE (card layout) --- */
  #cart table thead {
    display: none
  }

  #cart table,
  #cart table tbody,
  #cart table tr,
  #cart table td {
    display: block;
    width: 100%
  }

  #cart table tr {
    margin-bottom: 16px;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative
  }

  #cart table td {
    text-align: left;
    padding: 4px 0;
    border: none
  }

  #cart table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px
  }

  #cart table img {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px
  }

  #coupon input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px
  }

  /* --- CONTACT --- */
  .contact-section {
    margin: 16px 8px;
    padding: 24px 12px
  }

  /* --- FAQ --- */
  .faq-question {
    padding: 12px 14px;
    font-size: 0.9rem
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px
  }

  /* --- COOKIE CONSENT --- */
  .cookie-consent {
    padding: 12px;
    gap: 8px
  }

  .cookie-consent p {
    font-size: 0.8rem
  }

  .cookie-consent button {
    padding: 7px 16px;
    font-size: 0.8rem
  }

  /* --- WISHLIST --- */
  .wishlist-section {
    padding: 40px 12px
  }

  /* --- OUTLET --- */
  .container {
    min-height: 60vh;
    padding: 30px 16px
  }

  .outlet-card2 {
    padding: 1.5rem;
    max-width: 280px
  }

  .outlet-card2 h1 {
    font-size: 1.4rem
  }

  /* --- MANAGER --- */
  .manager-info {
    padding: 50px 16px
  }

  .manager-image {
    width: 140px;
    height: 140px
  }
}