/* =============================================
   DEEPAK COFFEE CO — style.css
   3 Themes: classic | dark | minimal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ---- CSS RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; line-height: 1.6; transition: background 0.4s, color 0.4s; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* =============================================
   THEME: CLASSIC WARM (default)
   ============================================= */
body.theme-classic {
  --bg:           #fdf6ec;
  --bg2:          #f4ebe0;
  --bg3:          #ede0d0;
  --card-bg:      #fff9f3;
  --primary:      #5c2d0a;
  --primary-light:#8b4513;
  --accent:       #c8762e;
  --accent-hover: #a85e1e;
  --text:         #2e1a0e;
  --text-muted:   #7a5c45;
  --border:       #e0c9b0;
  --nav-bg:       rgba(92, 45, 10, 0.97);
  --nav-text:     #fdf6ec;
  --hero-overlay: rgba(40, 15, 5, 0.55);
  --badge-bg:     #c8762e;
  --badge-text:   #fff;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;
  --shadow:       0 4px 24px rgba(92,45,10,0.12);
  --shadow-lg:    0 8px 40px rgba(92,45,10,0.18);
  --radius:       8px;
}

/* =============================================
   THEME: DARK ROAST (luxury)
   ============================================= */
body.theme-dark {
  --bg:           #0f0a07;
  --bg2:          #1a1008;
  --bg3:          #231508;
  --card-bg:      #1e1208;
  --primary:      #c8962c;
  --primary-light:#daa84a;
  --accent:       #c8962c;
  --accent-hover: #e8b840;
  --text:         #f5ead8;
  --text-muted:   #9e8a72;
  --border:       #3a2a18;
  --nav-bg:       rgba(15, 10, 7, 0.98);
  --nav-text:     #f5ead8;
  --hero-overlay: rgba(5, 2, 0, 0.6);
  --badge-bg:     #c8962c;
  --badge-text:   #0f0a07;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.7);
  --radius:       8px;
}

/* =============================================
   THEME: MODERN MINIMAL
   ============================================= */
body.theme-minimal {
  --bg:           #ffffff;
  --bg2:          #f5f5f5;
  --bg3:          #ebebeb;
  --card-bg:      #ffffff;
  --primary:      #1a1a1a;
  --primary-light:#333333;
  --accent:       #e04c1f;
  --accent-hover: #c03a0e;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --border:       #e0e0e0;
  --nav-bg:       rgba(26, 26, 26, 0.98);
  --nav-text:     #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.5);
  --badge-bg:     #e04c1f;
  --badge-text:   #fff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 6px 30px rgba(0,0,0,0.14);
  --radius:       4px;
}

/* =============================================
   GLOBAL LAYOUT
   ============================================= */
body { background: var(--bg); color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  font-family: var(--font-body);
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--nav-text); font-size: 1rem; font-weight: 300; font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--nav-text);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  opacity: 0.85;
}
.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--nav-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.18); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
#home {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-cta { animation: fadeUp 0.8s ease 0.3s both; }
/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 56px;
  right: 32px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint::after {
  content: '↓';
  font-size: 1.2rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid var(--accent);
  border-radius: calc(var(--radius) * 1.5);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 6px;
}
.about-content .accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}
.about-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.highlight-card .hi-icon { font-size: 2rem; margin-bottom: 8px; }
.highlight-card .hi-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}
.highlight-card .hi-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   GALLERY
   ============================================= */
#gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: 0.9rem; font-weight: 600; }

/* =============================================
   SHOP / PRODUCTS
   ============================================= */
#shop { background: var(--bg2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(145deg, #f5ede0, #ede0cc);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.theme-dark .product-img-wrap {
  background: linear-gradient(145deg, #1e1208, #2a1a0a);
}
body.theme-minimal .product-img-wrap {
  background: linear-gradient(145deg, #f0f0f0, #e5e5e5);
}
.product-img-wrap img {
  width: auto;
  max-width: 90%;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
  transition: transform 0.5s;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}
.product-card:hover .product-img-wrap img { transform: scale(1.06) translateY(-4px); }
.product-info { padding: 20px; }
.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 700;
}
.product-blend {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-variants { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.variant-btn:hover, .variant-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.product-price {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}
.price-label { font-size: 0.75rem; color: var(--text-muted); }
.whatsapp-order-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.whatsapp-order-btn:hover { background: #1ebe5d; transform: translateY(-1px); }

/* =============================================
   REVIEWS
   ============================================= */
#reviews { background: var(--bg3); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-info .tagline {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-item-text a:hover { color: var(--accent); }
.map-embed {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.social-links-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-link:hover { transform: translateY(-3px) scale(1.1); box-shadow: var(--shadow); }
.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.whatsapp { background: #25d366; }
.social-link.phone { background: var(--accent); }

/* =============================================
   FLOATING SOCIAL BAR
   ============================================= */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: 60px;
  background: var(--primary);
  color: var(--nav-text);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover::before { opacity: 1; }
.float-btn:hover { transform: scale(1.15); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.float-btn.fb { background: #1877f2; }
.float-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-btn.wa { background: #25d366; }
.float-btn.ph { background: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.88rem;
}
footer a { color: var(--accent); font-weight: 600; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 12px 0; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 8px; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 8px 60px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image-wrap img { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--nav-bg); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; font-size: 0.95rem; }
  .nav-hamburger { display: flex; }
  .theme-toggle-btn { font-size: 0.72rem; padding: 6px 10px; }
  section { padding: 60px 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .slider-btn { width: 40px; height: 40px; font-size: 1rem; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }
  .floating-social { right: 14px; bottom: 70px; }
  .float-btn { width: 44px; height: 44px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .contact-grid { gap: 24px; }
  .map-embed iframe { height: 260px; }
  .products-grid { grid-template-columns: 1fr; }
}

/* =============================================
   THEME SWITCHER MODAL
   ============================================= */
.theme-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.theme-modal-overlay.open { display: flex; }
.theme-modal {
  background: var(--card-bg);
  border-radius: calc(var(--radius) * 2);
  padding: 32px;
  max-width: 360px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}
.theme-modal h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.theme-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.theme-option:hover { border-color: var(--accent); }
.theme-option.active { border-color: var(--accent); background: var(--bg2); }
.theme-swatch { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.theme-option-label { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.theme-option-desc { font-size: 0.78rem; color: var(--text-muted); }
.theme-modal-close {
  display: block;
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
