/* ============================================
   NaPa Mode – Main Stylesheet
   Colors: teal #4A8B86 | brown #9B6B55 | dark #2D3B38
   ============================================ */

:root {
  --primary:    #4A8B86;
  --primary-dk: #376762;
  --secondary:  #9B6B55;
  --secondary-dk: #7a5242;
  --dark:       #2D3B38;
  --light-bg:   #F7F4EF;
  --white:      #FFFFFF;
  --gray-100:   #f5f2ed;
  --gray-200:   #e8e4de;
  --gray-400:   #b8b0a6;
  --gray-600:   #7a736c;
  --gray-800:   #3d3832;
  --text:       #2a2520;
  --border:     #ddd8d0;
  --shadow:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.15);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); }

img { max-width: 100%; height: auto; }

/* ---- HEADER ---- */
.site-header {
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img {
  height: 62px;
  width: auto;
  /* full-color logo – no filter */
}
.logo-fallback {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-switcher a {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.lang-switcher a:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.lang-switcher a.active { color: #fff; border-color: var(--primary); background: var(--primary); }

/* Search bar — removed from header, kept for search page only */

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3d5250 50%, var(--primary-dk) 100%);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin: 0 0 28px;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-hero:hover { background: var(--secondary-dk); color: #fff; transform: translateY(-2px); }

/* ---- MAIN CONTENT ---- */
.site-main { flex: 1; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section title */
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.section-subtitle {
  color: var(--gray-600);
  margin: 0 0 32px;
  font-size: 0.95rem;
}

/* ---- PRODUCT GRID ---- */
.products-section { padding: 48px 0; }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-count {
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
}
.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-thumb img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-media-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.78rem;
  padding: 3px 9px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary); }

.product-card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}
.product-price small {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 400;
  display: block;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.btn-detail {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-detail:hover { background: var(--primary-dk); color: #fff; }

/* ---- PRODUCT DETAIL ---- */
.product-detail { padding: 40px 0 60px; }

.product-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { color: var(--gray-400); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.product-gallery {}

.gallery-main {
  aspect-ratio: 4/3;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  margin-bottom: 12px;
}
.gallery-main img, .gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-main .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}
.play-btn-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn-icon svg { width: 28px; height: 28px; fill: var(--dark); margin-left: 4px; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  background: var(--gray-200);
  position: relative;
}
.gallery-thumb img, .gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb .thumb-vid-icon {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 3px;
  font-size: 0.6rem;
  padding: 1px 4px;
}

/* Product info */
.product-info {}

.product-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.2;
}

.product-info-short-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin: 0 0 24px;
  font-style: italic;
}

.product-info-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--secondary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.product-info-price .amount { font-size: 1.6rem; font-weight: 700; }
.product-info-price .currency { font-size: 1rem; opacity: 0.85; }

.product-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-manual {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-100);
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-manual:hover { background: var(--gray-200); color: var(--dark); }
.btn-manual svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; }

/* ---- FORMATTED DESCRIPTION ---- */
.product-info-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}
.product-info-desc p {
  margin: 0 0 14px;
}
.product-info-desc strong,
.product-info-desc b {
  color: var(--dark);
  font-weight: 700;
}
.product-info-desc ul {
  margin: 8px 0 16px 0;
  padding-left: 0;
  list-style: none;
}
.product-info-desc ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.55;
}
.product-info-desc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}
.product-info-desc .desc-section-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.97rem;
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.product-info-desc .desc-condition {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
}

/* ---- BROWSE MORE BUTTON ---- */
.browse-more-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  text-align: center;
}
.browse-more-section h3 {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin: 0 0 16px;
  font-weight: 400;
}
.btn-browse-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-browse-more:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
}
.btn-browse-more svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.product-info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-inner img, .lightbox-inner video {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

.lightbox-counter {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 10px;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  background: var(--dark);
  color: #fff;
  padding: 48px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-item h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 10px;
  font-weight: 600;
}
.contact-item p, .contact-item a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.contact-item a:hover { color: #fff; }

.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: background var(--transition);
  font-size: 1rem;
}
.social-links a:hover { background: var(--primary); }
.social-links svg { width: 18px; height: 18px; fill: #fff; }

/* ---- FOOTER ---- */
.site-footer {
  background: #1a2520;
  color: rgba(255,255,255,0.55);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-nexperta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.footer-nexperta img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer-nexperta a:hover img { opacity: 0.85; }
.footer-nexperta a { color: rgba(255,255,255,0.65); }
.footer-nexperta a:hover { color: #fff; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  border-top: 3px solid var(--primary);
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--primary-dk); }
.btn-cookie-reject {
  background: var(--gray-600);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-reject:hover { background: #5a5550; }

/* ---- NO IMAGE PLACEHOLDER ---- */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  gap: 8px;
  font-size: 0.85rem;
}
.no-image-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ---- SEARCH PAGE ---- */
.search-bar-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.search-form-large {
  display: flex;
  max-width: 600px;
}
.search-form-large input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-form-large input:focus { border-color: var(--primary); }
.search-form-large button {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.search-form-large button:hover { background: var(--primary-dk); border-color: var(--primary-dk); }

/* ============================================
   LAZY LOADING + SKELETON ANIMATION
   ============================================ */

/* Shimmer skeleton – shown while image loads */
.img-skeleton {
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
}
.img-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.75) 50%,
    rgba(255,255,255,0.55) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: skeleton-wave 1.6s ease-in-out infinite;
}
@keyframes skeleton-wave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Lazy images – hidden until loaded */
img.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img.lazy.loaded {
  opacity: 1;
}

/* Loading spinner overlay on gallery main */
.gallery-main.loading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-100);
  z-index: 2;
}
.gallery-main.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 3;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Progress bar at top of page while loading */
.page-loader {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: 0 2px 2px 0;
}
.page-loader.loading { transform: scaleX(0.7); }
.page-loader.done    { transform: scaleX(1); opacity: 0; transition: transform 0.1s, opacity 0.3s 0.1s; }

/* Card image wrapper skeleton */
.product-card-thumb .img-skeleton {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Legacy */
.thumb-placeholder {
  background: var(--gray-200);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .main-nav, .header-search { display: none; }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99;
  }
  .mobile-menu-btn { display: block; }
  .hero { padding: 40px 16px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
  .product-card-footer { flex-direction: column; align-items: stretch; }
  .btn-whatsapp, .btn-detail { text-align: center; justify-content: center; }
  .container { padding: 0 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cookie-banner-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-info-title { font-size: 1.4rem; }
  .product-info-actions { flex-direction: column; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}
