/* =========================================================
   ADIL MÓVEIS — Premium CSS
   Inspired by Zara Home / Gato Preto aesthetic
   Warm beige, serif headings, clean minimalism
   ========================================================= */

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

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg:          #FDFCFA;
  --banner:      #C8B598;
  --navbar:      #F5F0E8;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --border:      #E8E3DC;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --accent:      #C8B598;
  --accent-dark: #b09e85;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;

  --shadow-card:  0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

.fancy-script {
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Color Classes (preserved) ───────────────────────────── */
.text-navy  { color: var(--black); }
.bg-navy,
.bg-gray-700 { background-color: var(--black); }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Marquee Banner ──────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-25%, 0, 0); }
}

.animate-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease-out;
}

.nav-link:hover {
  color: var(--black);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Active nav link */
#desktop-nav .nav-link.active,
#desktop-nav .nav-link[style*="border-b"] {
  color: var(--black);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-adil {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn-adil:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-adil-filled {
  display: inline-block;
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn-adil-filled:hover {
  background-color: transparent;
  color: var(--black);
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-sans);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn-visit:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ── Product Cards ───────────────────────────────────────── */
.product {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}

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

.product .relative {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background-color: transparent;
}

.product img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important; 
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product:hover img {
  transform: scale(1.06);
}

/* Discount badge */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

/* ── Product Snipcart Button ─────────────────────────────── */
.product button.snipcart-add-item,
.snipcart-add-item.product-cart-btn {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: 1px solid var(--black) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-family: var(--font-sans) !important;
  transition: var(--transition) !important;
  cursor: pointer;
  width: 100%;
}

.product button.snipcart-add-item:hover,
.snipcart-add-item.product-cart-btn:hover {
  background-color: transparent !important;
  color: var(--black) !important;
  border-color: var(--black) !important;
}

/* ── Filter Buttons — Pill Style ─────────────────────────── */
.filter-button {
  background-color: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid #E8E3DC !important;
  border-radius: 9999px !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
  outline: none !important;
}

.filter-button:hover {
  background-color: #C8B598 !important;
  border-color: #C8B598 !important;
  color: #fff !important;
}

.filter-button.active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #fff !important;
  font-weight: 700 !important;
}



/* ── Snipcart Checkout Button ────────────────────────────── */
button.snipcart-checkout {
  background-color: transparent !important;
  color: var(--black) !important;
  border: 2px solid #1a1a1a !important;
  border-radius: 50% !important;
  padding: 0 !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition) !important;
  flex-shrink: 0 !important;
}

button.snipcart-checkout:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

/* ── Mobile Sidebar Menu ─────────────────────────────────── */
#menuOverlay {
  background-color: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background-color: var(--navbar);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.trust-bar-item svg,
.trust-bar-item i {
  color: var(--accent);
}

/* ── Category Grid ───────────────────────────────────────── */
.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%);
}

.category-card-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.category-card:hover .category-card-title {
  gap: 0.75rem;
}

.category-card-title::after {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-card-title::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── History / About Section ─────────────────────────────── */
.history-images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .history-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

.history-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 100%;
}

.history-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.history-image:hover img {
  transform: scale(1.05);
}

/* ── Section Headings ────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* ── Partner Logos ───────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}

.partner-logo {
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: var(--transition);
  border-radius: var(--radius-md);
  background-color: var(--white);
}

.partner-logo:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ── Image hover – global (excluded from nav/footer) ─────── */
img {
  max-width: 100%;
}

header img,
footer img,
.no-hover img,
.logo img {
  transition: none !important;
}

header img:hover,
footer img:hover,
.no-hover img:hover,
.logo img:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ── Slideshow ───────────────────────────────────────────── */
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.mySlides { display: none; text-align: center; }

.mySlides img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  padding: 14px 18px;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s ease;
  border-radius: 50%;
  user-select: none;
  background-color: rgba(0,0,0,0.35);
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover { background-color: rgba(0,0,0,0.7); }

.dot {
  cursor: pointer;
  height: 10px; width: 10px;
  margin: 0 4px;
  background-color: var(--border);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active, .dot:hover { background-color: var(--accent-dark); }

/* ── Logo ────────────────────────────────────────────────── */
.logo-container {
  background-color: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

/* ── Social Icons ────────────────────────────────────────── */
.social-icon { transition: opacity 0.2s ease; }
.social-icon:hover { opacity: 0.7; }

/* ── Menu Button ─────────────────────────────────────────── */
#menuButton {
  transition: transform 0.2s ease;
}
#menuButton:hover {
  transform: scale(1.05);
}

/* ── Special product image fixes ─────────────────────────── */
.special-positioning { object-position: center 35% !important; }

.chair-image {
  object-fit: contain !important;
  height: 300px !important;
}

.product[data-category="cadeiras"] .relative,
.product[data-category="bancos"] .relative {
  min-height: 280px !important;
  padding-top: 0 !important;
}

.product-hidden { display: none !important; }

/* ── Gallery / modal fix ─────────────────────────────────── */
#galleryModal .gallery-container img {
  width: auto !important;
  max-width: 90% !important;
  height: auto !important;
  max-height: 80vh !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto !important;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.05) translateY(-2px);
}

.whatsapp-icon { width: 20px; height: 20px; }

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Text Shadow utility ──────────────────────────────────── */
.text-shadow {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ── Responsive Grid helpers ─────────────────────────────── */
@media (min-width: 768px) {
  .md\:flex-row      { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:h-64          { height: 16rem; }
  .md\:space-y-0     { margin-top: 0; }
  .md\:space-x-8 > * + * { margin-left: 2rem; }
  .md\:text-7xl      { font-size: 4.5rem; line-height: 1; }
  .md\:text-2xl      { font-size: 1.5rem; }
  .md\:text-xl       { font-size: 1.25rem; }
  .md\:mb-0          { margin-bottom: 0; }
}

/* ── Mobile Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }

  /* Logo */
  .logo img,
  header img {
    max-width: 110px !important;
    height: auto !important;
  }

  /* Grid single col */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 { gap: 1rem !important; }

  /* Typography */
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.4rem !important; }

  /* No text shadow override on mobile (was ugly in dark mode) */
  h1, h2, h3, p { text-shadow: none !important; }
  .text-shadow   { text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important; }

  /* Footer compact */
  footer { padding: 1.5rem !important; font-size: 0.85rem !important; }

  /* Tap targets */
  a, button { min-height: 44px; }

  /* WhatsApp compact on mobile */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 13px; border-radius: 50%; }

  /* History images */
  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  div[style*="display: flex; justify-content: space-between"] img {
    width: 90% !important;
    min-width: unset !important;
    max-width: 420px !important;
  }
}

@media (max-width: 374px) {
  .logo img, header img { max-width: 90px !important; }
  h1 { font-size: 1.3rem !important; }
  h2 { font-size: 1.1rem !important; }
}

@media (max-height: 450px) and (orientation: landscape) {
  .hero-section { min-height: 200px !important; }
  header { padding: 4px !important; }
}

/* ── Agendar Visita banner ───────────────────────────────── */
.visit-cta-section {
  background-color: var(--navbar);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.visit-cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.visit-cta-section p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── Product Detail Page ─────────────────────────────────── */
.pdp-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pdp-trust-badge svg { color: var(--accent); flex-shrink: 0; }

.pdp-size-btn {
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-muted);
}

.pdp-size-btn:hover,
.pdp-size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.size-btn {
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-muted);
}

.size-btn:hover { border-color: var(--black); color: var(--black); }
.size-btn.border-black { border-color: var(--black) !important; background: var(--black); color: var(--white); }

/* ── Price styling ────────────────────────────────────────── */
.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9em;
  margin-right: 0.5rem;
}

.price-discounted {
  color: #b05a2e;
  font-weight: 600;
}

/* ── Menu items ──────────────────────────────────────────── */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-with-arrow { display: none; }

/* ── Special tall images (roupeiros etc.) ─────────────────── */
img[src*="roupeiro"],
img[src*="camiseiro"],
img[src*="sapateira"],
img[src*="bengaleiro"],
img[src*="BANHO"] {
  object-fit: contain !important;
  background-color: var(--white) !important;
}

/* ── Premium Footer Styling Override ─────────────────────── */
footer,
footer.bg-black {
  background-color: #EDF4F8 !important; /* Soft Baby Blue */
  color: #1a1a1a !important;
  border-top: 1px solid #D4E4EE !important;
  padding-bottom: 90px !important; /* Extra bottom padding so floating contact bar never overlaps footer content */
}

footer .border-b,
footer .border-gray-700,
footer.bg-black .border-b,
footer.bg-black .border-gray-700 {
  border-color: #E8E3DC !important;
}

footer a,
footer.bg-black a {
  color: #6b6b6b !important;
  transition: color 0.2s ease;
}

footer a:hover,
footer.bg-black a:hover {
  color: #1a1a1a !important;
}

footer h4,
footer address,
footer p,
footer.bg-black h4,
footer.bg-black address,
footer.bg-black p {
  color: #1a1a1a !important;
}

footer .text-gray-400,
footer.bg-black .text-gray-400 {
  color: #6b6b6b !important;
}

footer svg,
footer i,
footer.bg-black svg,
footer.bg-black i {
  color: #1a1a1a !important;
}

footer img,
footer.bg-black img {
  height: 52px !important;
  width: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background-color: transparent !important;
}

/* ── Floating Contact Bar (Zara Home / Gato Preto Style) ── */
.floating-contact-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 227, 220, 0.9);
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex; /* Show on all devices */
  align-items: center;
  gap: 12px;
  max-width: 90vw;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .floating-contact-bar {
    gap: 6px;
    padding: 6px 10px;
  }
  .floating-btn {
    padding: 5px 8px;
    font-size: 7.5px;
  }
}

.floating-contact-bar:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) translateY(-2px);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.floating-btn-primary {
  background: #C8B598;
  color: #1a1a1a;
}
.floating-btn-primary:hover {
  background: #b09e85;
}

.floating-btn-wpp {
  background: #25D366;
  color: #fff;
}
.floating-btn-wpp:hover {
  background: #20ba5a;
}

.floating-btn-sec {
  background: transparent;
  color: #6b6b6b;
  border: 1px solid #E8E3DC;
}
.floating-btn-sec:hover {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.filter-button-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b6b6b;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button-link.active,
.filter-button-link:hover {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* ── Remove cool grays and mix warm beige with baby blue ── */
.bg-gray-50, .bg-\[\#F3F4F6\], .bg-\[\#F9FAFB\] {
  background-color: #EDF4F8 !important; /* Soft Baby Blue background */
}

.bg-gray-100 {
  background-color: #EDF4F8 !important; /* Soft Baby Blue background */
}

.bg-gray-200 {
  background-color: #E3EEF4 !important; /* Medium Baby Blue background */
}

.bg-gray-300 {
  background-color: #D4E4EE !important; /* Darker Baby Blue accent background */
}

.bg-white {
  background-color: #FDFCFA !important; /* Warm White */
}





/* ── Global Baby Blue Footer Style Override ─────────────────── */
footer,
footer.bg-black {
  background-color: #EDF4F8 !important; /* Soft Baby Blue */
  color: #1a1a1a !important;
  border-top: 1px solid #D4E4EE !important;
}
footer *, 
footer a, 
footer h4, 
footer p, 
footer span, 
footer div,
footer li {
  color: #1a1a1a !important;
}
footer a:hover {
  opacity: 0.7 !important;
}
footer .border-b,
footer .border-gray-700,
footer div.border-b {
  border-color: #D4E4EE !important;
}


/* ── Global Baby Blue Buttons Override (Reverted to original colors for primary CTAs) ── */
.btn-adil,
.cta-button,
.snipcart-add-item {
  background-color: #C8B598 !important;
  color: #ffffff !important;
  border: 1px solid #C8B598 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.btn-adil:hover,
.cta-button:hover,
.snipcart-add-item:hover {
  background-color: #b09e85 !important;
  border-color: #b09e85 !important;
  color: #ffffff !important;
}



/* Typewriter blink cursor keyframe animation */
@keyframes blink {
  50% { border-color: transparent; }
}

.typewriter-cursor {
  border-right: 2px solid #1a1a1a;
  animation: blink 0.75s step-end infinite;
}





/* Fix for images being small squares on mobile */
#products-grid .product .relative img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* Robust Grid & Product Cards Fallback */
#products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  width: 100% !important;
}
@media (min-width: 768px) {
  #products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  #products-grid {
    grid-template-columns: 1fr !important;
  }
}
#products-grid .product {
  display: block;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
#products-grid .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.09);
}
#products-grid .product .relative {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #F7F4F0 !important;
}
#products-grid .product .relative img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: darken !important;
}


/* GUARANTEE PRODUCT VISIBILITY REGARDLESS OF AOS */
#products-grid .product,
.product,
[data-category] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}


/* Edge-to-edge cover for ambient and full scene products (no borders / no letterboxing) */
.product-img-cover,
.product[data-fit="cover"] .relative img,
.product-card-cover img {
  object-fit: cover !important;
  object-position: center !important;
  mix-blend-mode: normal !important;
  width: 100% !important;
  height: 100% !important;
}
