/* ==========================================================================
   Cafemontanezco - Master Design System & Stylesheet
   Fidelity Template Adaptation with Graphic Assets
   ========================================================================== */

/* Custom Font Declarations: Adrianna & Adrianna Extended */
@font-face {
  font-family: 'Adrianna';
  src: url('../assets/fonts/Adrianna-Regular.woff2') format('woff2'),
    url('../assets/fonts/Adrianna-Regular.woff') format('woff'),
    url('../assets/fonts/Adrianna-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adrianna';
  src: url('../assets/fonts/Adrianna-Bold.woff2') format('woff2'),
    url('../assets/fonts/Adrianna-Bold.woff') format('woff'),
    url('../assets/fonts/Adrianna-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adrianna Extended';
  src: url('../assets/fonts/AdriannaExtended-Bold.woff2') format('woff2'),
    url('../assets/fonts/AdriannaExtended-Bold.woff') format('woff'),
    url('../assets/fonts/AdriannaExtended-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adrianna Extended';
  src: url('../assets/fonts/AdriannaExtended-Regular.woff2') format('woff2'),
    url('../assets/fonts/AdriannaExtended-Regular.woff') format('woff'),
    url('../assets/fonts/AdriannaExtended-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Color Palette */
  --color-green-forest: #01423f;
  --color-green-dark: #003330;
  --color-green-deep: #022a28;
  --color-green-accent: #274737;
  --color-green-light: #035c57;

  --color-sand-cream: #faf5ee;
  --color-sand-warm: #f4ecdf;
  --color-sand-card: #fdfbf7;
  --color-sand-frame: #ece4d6;
  --color-sand-border: #ded3c1;

  --color-gold: #cfa149;
  --color-gold-hover: #dfa85b;
  --color-gold-light: #f5e4cb;

  --text-dark: #1b241e;
  --text-body: #443c35;
  --text-muted: #6f675e;
  --text-light: #ffffff;
  --text-light-subtle: #d6e5de;

  /* Typography: Adrianna & Adrianna Extended (with Unbounded Extended fallback) */
  --font-heading: 'Adrianna Extended', 'Unbounded', 'Outfit', 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Adrianna', 'Plus Jakarta Sans', 'Outfit', 'Montserrat', -apple-system, sans-serif;
  --font-serif: 'Adrianna Extended', 'Unbounded', sans-serif;

  /* Elevations & Radii */
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(1, 66, 63, 0.05);
  --shadow-card: 0 10px 30px rgba(1, 66, 63, 0.07);
  --shadow-card-hover: 0 20px 45px rgba(1, 66, 63, 0.12);
  --shadow-hero-btn: 0 8px 25px rgba(0, 0, 0, 0.3);

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

/* Base Reset & Smooth Scrolling */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-sand-cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

section[id],
footer[id] {
  scroll-margin-top: 90px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   Header & Navbar (Seamless Background Texture & Larger Emblem Logo)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #01423f;
  border-bottom: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.navbar-wrapper {
  position: relative;
  width: 100%;
  height: 84px;
  background-color: #01423f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

/* Center Patterned Region (Seamlessly Integrated, No Box Container Border) */
.navbar-center-pattern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  height: 100%;
  background-color: transparent;
  background-image: url('../assets/graphic-assets/textura-fondo-navbar.webp');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0 4rem;
  position: relative;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 3.8rem;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.4px;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-link.active {
  color: var(--color-gold);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

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

/* Circular Center Emblem Badge (Larger Logo Emblem) */
.brand-logo-circle {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -46%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #01423f;
  /*border: 2px solid rgba(255, 255, 255, 0.25);*/
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.brand-logo-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-circle .logo-img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-circle:hover .logo-img {
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
}

/* ==========================================================================
   Mobile Fullscreen Navigation Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #003634;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 2.5rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow: hidden;
}

.mobile-drawer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Background Texture */
.mobile-drawer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/graphic-assets/textura-fondo-menu-mobile.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

/* Top Header & Dome Logo Badge */
.mobile-drawer-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  padding: 0;
  border: none;
  margin-bottom: 0;
}

.mobile-drawer-badge {
  width: 195px;
  height: 160px;
  background: #ffffff;
  border-radius: 0 0 98px 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active .mobile-drawer-badge {
  transform: translateY(0);
  transition-delay: 0.05s;
}

.mobile-drawer-logo {
  width: 160px;
  height: auto;
  max-height: 145px;
  object-fit: contain;
  display: block;
}

.mobile-drawer-close {
  position: absolute;
  top: 1.8rem;
  right: 1.6rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: scale(0.75) rotate(-45deg);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.mobile-drawer.active .mobile-drawer-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.1s;
}

.mobile-drawer-close:hover {
  transform: scale(1.1) rotate(90deg);
  color: var(--color-gold);
}

/* Centered Navigation Links */
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  margin: auto 0;
  padding: 0;
  text-align: center;
  z-index: 2;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.16s; }
.mobile-drawer.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.24s; }
.mobile-drawer.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.32s; }
.mobile-drawer.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.40s; }

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
  padding: 0.2rem 0;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.mobile-nav-link.active {
  color: var(--color-gold);
  font-weight: 600;
}

.mobile-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

/* Bottom Instagram Pill */
.mobile-drawer-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active .mobile-drawer-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.46s;
}

.mobile-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #1e1b18;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mobile-social-pill i {
  font-size: 1.25rem;
  color: #1e1b18;
}

.mobile-social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  filter: brightness(0.97);
}

/* ==========================================================================
   Hero Section with Custom Parallax & Color Variation (#c4925c & #2f231a)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 85px;
  overflow: hidden;
  text-align: center;
  background-color: #2f231a;
  view-timeline-name: --heroTimeline;
  view-timeline-axis: block;
}

.hero-bg-layer {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 115%;
  background-color: #2f231a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.05);
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(196, 146, 92, 0.35) 0%,
      rgba(47, 35, 26, 0.72) 60%,
      rgba(47, 35, 26, 0.94) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Native CSS Parallax Animation Timeline for Modern Browsers */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  .hero-bg-layer {
    animation: heroBgParallax linear both;
    animation-timeline: --heroTimeline;
    animation-range: exit 0% exit 100%;
  }

  .hero-content {
    animation: heroTextParallax linear both;
    animation-timeline: --heroTimeline;
    animation-range: exit 0% exit 80%;
  }
}

@keyframes heroBgParallax {
  to {
    transform: translate3d(0, 25%, 0) scale(1.15);
  }
}

@keyframes heroTextParallax {
  to {
    transform: translate3d(0, 110px, 0);
    opacity: 0.15;
  }
}

.hero-container {
  position: relative;
  z-index: 3;
  padding: 4rem 1rem;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  font-stretch: expanded;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 2.5rem auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.btn-hero-primary {
  background: #ffffff;
  color: #282019;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-outline {
  background: rgba(22, 17, 13, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(22, 17, 13, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   Catálogo / Nuestras Presentaciones Section
   ========================================================================== */
.catalog-section {
  position: relative;
  background-color: #fffae7;
  padding: 5.5rem 0 6.5rem 0;
  overflow: hidden;
}

.catalog-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/graphic-assets/textura-productos.webp');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.catalog-container {
  position: relative;
  z-index: 2;
}

.catalog-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 2;
}

.catalog-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #01423f;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.catalog-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #1e1b18;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.catalog-lead {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #2e261f;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 auto;
}

/* Top Row: 2 cards centered */
.products-grid-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 315px));
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Bottom Row: 3 cards centered */
.products-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 275px));
  justify-content: center;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

/* Product Card Design matching Screenshot */
.product-item {
  background: transparent;
  border: none;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-image-box {
  background-color: transparent;
  border-radius: 16px 16px 0 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 245px;
  position: relative;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
  transition: transform 0.4s ease;
}

.product-item:hover .product-image-box img {
  transform: scale(1.03);
}

.product-info {
  background-color: #f7eecb;
  border-radius: 0 0 16px 16px;
  padding: 1.35rem 1.15rem 1.65rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-title-pdf {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e1b18;
  letter-spacing: 0.3px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.product-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #26211c;
  line-height: 1.42;
  text-align: left;
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Quiénes Somos / Nuestra Tradición Section
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #fffae7;
  padding: 7rem 0;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/graphic-assets/fondo-montanas-acerca.webp');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.about-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #01423f;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-border);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 0.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--color-sand-card);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-sand-border);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-sand-frame);
  color: #01423f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.highlight-text span {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Footer & Contacto Section (Green with Botanical Illustration)
   ========================================================================== */
.footer-section {
  position: relative;
  background-color: #004645;
  color: #ffffff;
  padding: 6.5rem 0 3rem 0;
  text-align: center;
  overflow: hidden;
}

.footer-bg-illustration {
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  background-image: url('../assets/graphic-assets/img-ilustracion-fondo-footer.webp');
  background-size: cover;
  background-position: 35% 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.footer-overlay {
  display: none;
}

.footer-container {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
}

.footer-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.footer-intro-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0.6rem 0 2.5rem 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer-instagram-pill-wrapper {
  margin: 0.5rem 0 2.5rem 0;
}

.footer-instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #01423f;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.footer-instagram-pill:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-instagram-pill .fab {
  font-size: 1.15rem;
}

.footer-contact-details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.8rem;
  text-align: center;
}

.contact-line {
  font-family: var(--font-body);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.contact-label {
  font-weight: 700;
  color: #ffffff;
}

.contact-value a {
  color: var(--text-light-subtle);
}

.contact-value a:hover {
  color: var(--color-gold);
}

.footer-copyright-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 6.6rem;
  right: 2.35rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.back-to-top img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 0.5;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  filter: brightness(1.12);
  opacity: 1;
}

.back-to-top:hover img {
  transform: scale(1.05);
}

.back-to-top:active {
  transform: scale(0.95);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .brand-logo-circle {
    width: 135px;
    height: 135px;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -46%);
  }

  .brand-logo-circle .logo-img {
    width: 110px;
    height: 110px;
  }

  .navbar-center-pattern {
    padding: 0 2rem;
  }

  .nav-group {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .products-grid-bottom {
    grid-template-columns: repeat(2, minmax(0, 315px));
  }
}

@media (max-width: 680px) {

  .products-grid-top,
  .products-grid-bottom {
    grid-template-columns: minmax(0, 340px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .navbar-center-pattern {
    padding: 0 1.5rem;
  }

  .nav-group {
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .catalog-bg-pattern {
    background-size: 200% auto;
    background-repeat: repeat;
    opacity: 0.9;
  }

  .about-bg-pattern {
    background-size: 400% auto;
    background-position: bottom center;
  }

  .navbar-container {
    justify-content: space-between;
    padding: 0 1.25rem;
  }

  .navbar-center-pattern {
    display: flex;
    background-image: none;
    padding: 0;
    max-width: 100%;
    justify-content: flex-start;
  }

  .nav-group {
    display: none;
  }

  .mobile-toggle {
    display: block;
    position: static;
  }

  .brand-logo-circle {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .brand-logo-circle .logo-img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
  }

  .footer-bg-illustration {
    left: -20%;
    width: 140%;
    background-size: 240% auto;
    background-position: 40% bottom;
  }

  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }

  .back-to-top {
    bottom: 5.5rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
  }
}