/* ============================================================
   ANU CREATION – Fabric Wall Art | Master Stylesheet
   ============================================================ */

/* -------- CSS Custom Properties -------- */
:root {
  /* Colors */
  --clr-dark: #0a0908;
  --clr-nav: rgba(15, 13, 12, 0.85);
  --clr-gold: #c9a96e;
  --clr-gold-light: #dfc38f;
  --clr-accent: #c5925e;
  --clr-accent-dark: #8b5d30;
  --clr-bg: #11100f;
  --clr-bg-alt: #181615;
  --clr-surface: #1d1b19;
  --clr-surface-card: #181615;
  --clr-text: #f3ece3;
  --clr-text-muted: #a3988d;
  --clr-border: rgba(197, 169, 110, 0.15);
  --clr-border-hover: rgba(197, 169, 110, 0.4);
  --clr-whatsapp: #25d366;
  --clr-glass: rgba(29, 27, 25, 0.65);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: 7rem 0;
  --container-max: 1200px;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,.3);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.5);
  --shadow-card: 0 4px 20px rgba(0,0,0,.25);

  /* Transitions */
  --ease: cubic-bezier(.25, .8, .25, 1);
  --dur: .35s;
}

/* -------- Reset & Core -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font-family: inherit; }

/* -------- Utility Classes -------- */
.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
}
.section-heading {
  font-family: var(--ff-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .6rem;
  line-height: 1.25;
}
.section-heading span { color: var(--clr-gold); }
.section-heading.center { text-align: center; }
.section-subtext {
  text-align: center;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   NAVBAR – Dark Premium Glassmorphism
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--clr-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all var(--dur) var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}
.nav-logo {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--clr-gold);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity var(--dur);
}
.nav-logo:hover { opacity: 0.9; }
.nav-links {
  display: flex;
  gap: 0;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: .6rem 1.3rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--clr-text-muted);
  transition: color var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-gold);
}

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1b1613 0%, #0d0c0b 50%, #15110f 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 75%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 85% 25%, rgba(197, 146, 94, 0.08) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><rect fill="none" stroke="rgba(201,169,110,0.04)" stroke-width=".5" width="80" height="80"/></svg>');
  opacity: .6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}
.hero-label {
  font-size: .88rem;
  letter-spacing: 5px;
  color: var(--clr-gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .2s forwards;
}
.hero-title {
  font-family: var(--ff-heading);
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .4s forwards;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .6s forwards;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 0.9rem; /* ~14px */
    line-height: 1.6;
  }
}
.btn-hero {
  display: inline-block;
  padding: .95rem 2.6rem;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-dark);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
  transition: all var(--dur) var(--ease);
  opacity: 0;
  animation: fadeUp 1s var(--ease) .8s forwards;
}
.btn-hero:hover {
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 2.5rem;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: .8rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 16, 15, 0.6) 0%, transparent 50%);
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-image:hover img {
  transform: scale(1.04);
}

/* ============================================================
   COLLECTIONS (Categories Grid)
   ============================================================ */
.categories-section {
  padding: var(--section-pad);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: all var(--dur) var(--ease);
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.category-card:hover img { transform: scale(1.06); }
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background var(--dur);
}
.category-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.4) 60%, transparent 100%);
}
.cat-overlay h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .4rem;
  letter-spacing: 0.5px;
}
.cat-overlay p {
  font-size: .85rem;
  color: var(--clr-text-muted);
}
.cat-count {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold-light);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   ART GALLERY SECTION (Clean 1:1 Square Grid)
   ============================================================ */
.gallery-section {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
}

/* Toolbar (Search & Filter) */
.toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--clr-text-muted);
}
#searchInput {
  width: 100%;
  padding: .85rem 1rem .85rem 3rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  background: var(--clr-surface);
  font-size: .95rem;
  color: #fff;
  transition: all var(--dur) var(--ease);
  outline: none;
}
#searchInput:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.15);
}

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  max-width: 900px;
}
.pill {
  padding: .5rem 1.2rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
}
.pill.active {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
  font-weight: 700;
}

/* Product grid - Strict 1:1 Aspect Ratio, Clean Gallery Card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.product-card {
  position: relative;
  background: var(--clr-surface-card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg);
}

/* Strict 1:1 square card wrapper (with loading skeleton placeholder) */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(90deg, #1a1917 25%, #2a2927 50%, #1a1917 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.6s infinite linear;
}
@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s var(--ease);
}
.card-img-wrap img.loaded {
  opacity: 1;
}
.product-card:hover .card-img-wrap img.loaded {
  transform: scale(1.05);
}

/* Clean, optional small collection label */
.card-category-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  pointer-events: none;
}
.product-card:hover .card-category-label {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

/* View Indicator Overlay (Subtle Glow Hover) */
.card-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.3);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.product-card:hover .card-view { opacity: 1; }

.no-results {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  padding: 4rem 0;
}

/* Load More Button for Pagination */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.btn-load-more {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
  padding: .8rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all var(--dur) var(--ease);
}
.btn-load-more:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
}

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur), visibility var(--dur);
}
.modal-overlay.show { opacity: 1; visibility: visible; }

.modal {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  max-width: 840px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(.98);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.show .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: rgba(10, 9, 8, 0.6);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--dur);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}
.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.modal-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-bg);
  border-right: 1px solid var(--clr-border);
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--clr-gold);
  color: var(--clr-dark);
  padding: .3rem .8rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.modal-cat {
  font-size: .8rem;
  color: var(--clr-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.modal-desc {
  color: var(--clr-text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--clr-whatsapp);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 0.5px;
  transition: all var(--dur) var(--ease);
  align-self: flex-start;
}
.btn-whatsapp:hover {
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad);
  background: var(--clr-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.contact-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card-icon svg { width: 18px; height: 18px; color: var(--clr-gold); }
.contact-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .3rem;
  letter-spacing: 0.5px;
}
.contact-card p {
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: .8rem;
  flex: 1;
}
.contact-link {
  font-weight: 600;
  color: var(--clr-gold);
  font-size: .85rem;
  letter-spacing: 0.5px;
  transition: color var(--dur);
  word-break: break-all;
}
.contact-link:hover { color: var(--clr-gold-light); }
.whatsapp-link { color: var(--clr-whatsapp); }
.whatsapp-link:hover { color: #1fbd5a; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--clr-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  padding: .85rem 1.2rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  font-size: .95rem;
  color: #fff;
  outline: none;
  transition: border-color var(--dur);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--clr-gold); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2.2rem;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-dark);
  border: none;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  align-self: flex-start;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #090807;
  color: var(--clr-text-muted);
  padding-top: 4rem;
  border-top: 1px solid var(--clr-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(197, 169, 110, 0.08);
}
.footer-brand h3 {
  font-family: var(--ff-heading);
  font-size: 1.45rem;
  color: var(--clr-gold);
  letter-spacing: 2px;
  margin-bottom: .4rem;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p { font-size: .88rem; }
.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .88rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--clr-gold); }
.footer-social {
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(243, 236, 227, 0.25);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

/* ---- Tablet (768px) ---- */
@media (max-width: 768px) {
  .section-heading { font-size: 2.1rem; }
  .hero-title { font-size: 3rem; }

  /* Mobile Menu */
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #0f0d0c;
    border-bottom: 1px solid var(--clr-border);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: .9rem 2rem; font-size: .9rem; }
  .mobile-toggle { display: flex; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { order: -1; }
  .about-image img { height: 320px; }
  .about-stats { justify-content: space-around; }

  /* ---- OUR COLLECTIONS – typography scale-down ---- */
  .categories-section .section-heading { font-size: clamp(1.4rem, 4vw, 2rem); }
  .categories-section .section-subtext  { font-size: 0.88rem; margin-bottom: 2rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .category-card { height: 200px; }
  .cat-overlay { padding: 1.1rem; }
  .cat-overlay h3 { font-size: clamp(0.85rem, 2.8vw, 1.1rem); margin-bottom: 0.2rem; }
  .cat-overlay p  { font-size: 0.72rem; line-height: 1.35; }
  .cat-count { font-size: 0.62rem; top: 0.7rem; right: 0.7rem; padding: 0.2rem 0.55rem; }

  /* Gallery modal */
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-wrap {
    border: 1px solid var(--clr-border);
    width: 70%;
    max-width: 300px;
    margin: 1.5rem auto 0.5rem;
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
  }
  .modal-info { padding: 1rem 1.8rem 2.2rem; }

  /* ---- GET IN TOUCH – 2-column compact grid ---- */
  .contact-section { padding: 3.5rem 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .contact-card {
    padding: 1rem 0.9rem;
  }
  .contact-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.6rem;
  }
  .contact-card-icon svg { width: 15px; height: 15px; }
  .contact-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
  .contact-card p  { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .contact-link    { font-size: 0.75rem; word-break: break-word; }
  .contact-form { padding: 1.6rem 1.2rem; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form input,
  .contact-form textarea { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .btn-submit { align-self: stretch; width: 100%; justify-content: center; font-size: 0.85rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}

/* ---- Small Mobile (580px) ---- */
@media (max-width: 580px) {
  /* OUR COLLECTIONS – tighter type on small phones */
  .categories-section .section-heading { font-size: clamp(1.25rem, 5vw, 1.7rem); }
  .categories-section .section-subtext  { font-size: 0.78rem; margin-bottom: 1.5rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { height: 155px; }
  .cat-overlay { padding: 0.85rem; }
  .cat-overlay h3 { font-size: 0.85rem; margin-bottom: 0.15rem; }
  .cat-overlay p  { font-size: 0.65rem; line-height: 1.25; }
  .cat-count { font-size: 0.56rem; top: 0.6rem; right: 0.6rem; padding: 0.15rem 0.45rem; }

  /* GET IN TOUCH – tighter on small phones */
  .contact-info { gap: 0.65rem; }
  .contact-card { padding: 0.85rem 0.75rem; }
  .contact-card-icon { width: 30px; height: 30px; margin-bottom: 0.5rem; }
  .contact-card-icon svg { width: 13px; height: 13px; }
  .contact-card h4 { font-size: 0.88rem; }
  .contact-card p  { font-size: 0.68rem; margin-bottom: 0.4rem; }
  .contact-link    { font-size: 0.7rem; }
  .contact-form { padding: 1.2rem 1rem; }
}

/* ---- Extra-small (480px) ---- */
@media (max-width: 480px) {
  .hero-title    { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }
  .product-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .nav-logo      { font-size: 1.3rem; letter-spacing: 2px; }

  /* Absolute minimum type on tiny phones */
  .categories-section .section-heading { font-size: 1.25rem; }
  .cat-overlay h3 { font-size: 0.8rem; }
  .cat-overlay p  { display: none; }  /* hide subtitle to avoid clutter */
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: #2b2826; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }

/* Selection */
::selection { background: var(--clr-gold); color: var(--clr-dark); }

/* ============================================================
   ADDITIONAL GALLERY BADGES, MODAL PRICES, AND FEATURES STYLING
   ============================================================ */

/* Small number badge on card corner */
.card-number-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  z-index: 5;
  pointer-events: none;
}
.product-card:hover .card-number-badge {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
  transform: scale(1.08);
}

/* Modal Pricing Section */
.modal-prices {
  margin: 1.5rem 0;
}
.modal-prices h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.3rem;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.price-list li strong {
  color: var(--clr-gold-light);
}

/* Modal Features Section */
.modal-features {
  margin: 1.5rem 0 2rem;
}
.modal-features h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.3rem;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.features-list li {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.features-list li::before {
  content: '✓';
  color: var(--clr-gold);
  font-weight: 700;
}

@media (max-width: 580px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADSTERRA RESPONSIVE AD SYSTEM
   ============================================================ */
.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem auto;
  overflow: hidden;
  background: rgba(26, 25, 23, 0.4);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  max-width: 100%;
}

/* Leaderboard Specifics */
.ad-leaderboard-top {
  width: 728px;
  height: 90px;
  margin-top: 6rem; /* Push down past fixed navbar */
}

/* Banner Specifics */
.ad-banner-mid {
  width: 468px;
  height: 60px;
}

/* Modal Popup Ad container */
.ad-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem auto 0;
  width: 320px;
  height: 50px;
  background: transparent;
  border: none;
}

/* Sticky Bottom Ad Bar for Mobile only */
.ad-sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--clr-border);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001; /* Above standard overlay but below modal */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive display rules */
@media (max-width: 768px) {
  .ad-leaderboard-top {
    display: none; /* Hide 728x90 on mobile */
  }
  .ad-banner-mid {
    display: none; /* Hide 468x60 on mobile */
  }
  .ad-sticky-mobile {
    display: flex; /* Show sticky 320x50 bottom bar on mobile */
  }
  /* Padding adjustment for content to not be covered by sticky ad on mobile */
  body {
    padding-bottom: 60px;
  }
}

/* ============================================================
   SHOPPING CART STYLES (Add-to-Cart & Modal)
   ============================================================ */

/* Navbar Cart Icon */
.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: color var(--dur), transform var(--dur);
}
.cart-icon:hover {
  color: var(--clr-gold-light);
  transform: scale(1.05);
}
.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Modal Dropdown Size Selection */
.modal-size-selection {
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal-size-selection label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.form-select {
  padding: 0.75rem 1rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color var(--dur);
}
.form-select:focus {
  border-color: var(--clr-gold);
}

/* Add to Cart Button */
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  width: 100%;
}
.btn-add-to-cart:hover {
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
}

/* Cart Modal Overlay */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Slide out from right */
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur), visibility var(--dur);
}
.cart-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Slide Drawer Cart Modal */
.cart-modal {
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-border);
  width: 420px;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.cart-modal-overlay.show .cart-modal {
  transform: translateX(0);
}
.cart-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: rgba(10, 9, 8, 0.6);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--dur);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-modal-close:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}
.cart-modal-header {
  padding: 2rem 1.8rem 1rem;
  border-bottom: 1px solid var(--clr-border);
}
.cart-modal-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.cart-modal-body {
  flex: 1;
  padding: 1.5rem 1.8rem;
  overflow-y: auto;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cart-empty-message {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  padding: 3rem 0;
}

/* Cart Item Layout */
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 1rem;
  position: relative;
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}
.cart-item-meta {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.cart-item-meta span {
  color: var(--clr-gold);
  font-weight: 600;
}
.btn-remove-item {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--dur);
}
.btn-remove-item:hover {
  color: #ef4444;
}

/* Cart Footer */
.cart-modal-footer {
  padding: 1.5rem 1.8rem 2rem;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
}
.cart-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.cart-total-section strong {
  color: var(--clr-gold);
  font-size: 1.2rem;
}
.btn-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-whatsapp);
  color: #fff;
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-checkout:hover {
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive Cart adjustments */
@media (max-width: 580px) {
  .cart-modal {
    width: 100%;
  }
}

/* ============================================================
   SHOPPING CART & QUANTITY SYSTEM STYLES
   ============================================================ */

/* Card Controls (at bottom of product-card) */
.card-controls {
  padding: 1rem;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-size-select {
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
.card-size-select:focus {
  border-color: var(--clr-gold);
}

/* Quantity Selector Component */
.qty-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-bg);
}
.qty-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), color var(--dur);
}
.qty-btn:hover {
  background: var(--clr-surface);
  color: var(--clr-gold);
}
.qty-val {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Card Add to Cart Button */
.card-add-btn {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-dark);
  border: none;
  padding: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--dur) var(--ease);
  width: 100%;
}
.card-add-btn:hover {
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold-light) 100%);
  box-shadow: 0 4px 10px rgba(201, 169, 110, 0.2);
}

/* Modal quantity selector margin */
.modal-qty-selection {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal-qty-selection label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.modal-qty-selection .qty-selector {
  max-width: 120px;
}

/* Cart Item Quantity Selector Adjustment */
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
}
.cart-item-qty .qty-btn {
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
}
.cart-item-qty .qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* Clear Cart Button */
.btn-clear-cart {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-clear-cart:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

/* Flex layout for cart modal header to align Clear Cart button to right */
.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
