/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

/* Design System Custom Properties */
:root {
  /* Color System */
  --on-secondary-fixed: #301400;
  --on-surface: #1d1b18;
  --secondary-fixed: #ffdcc5;
  --on-error: #ffffff;
  --surface-container: #f2ede7;
  --outline: #82746f;
  --secondary: #944a00;
  --background: #fef9f3;
  --on-primary: #ffffff;
  --surface-bright: #fef9f3;
  --secondary-container: #fc8f34;
  --on-tertiary-fixed: #131f00;
  --tertiary-container: #2a3e00;
  --surface-variant: #e6e2dc;
  --on-secondary: #ffffff;
  --surface-container-high: #ece7e2;
  --inverse-surface: #32302c;
  --primary-container: #4a3228;
  --surface: #fef9f3;
  --inverse-on-surface: #f5f0ea;
  --on-surface-variant: #504440;
  --tertiary-fixed-dim: #add461;
  --primary: #321d14;
  --inverse-primary: #e3bfb0;
  --outline-variant: #d3c3bd;
  --surface-dim: #ded9d4;
  --on-tertiary-fixed-variant: #364e00;
  --tertiary: #192700;
  --on-tertiary-container: #88ae40;
  --on-primary-fixed-variant: #5b4136;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f8f3ed;
  --on-primary-container: #bc9a8c;
  --error-container: #ffdad6;
  --on-secondary-container: #663100;
  --on-error-container: #93000a;
  --on-secondary-fixed-variant: #713700;
  --on-background: #1d1b18;
  --error: #ba1a1a;
  --primary-fixed: #ffdbcd;
  --surface-container-highest: #e6e2dc;
  --secondary-fixed-dim: #ffb783;
  --on-tertiary: #ffffff;
  --primary-fixed-dim: #e3bfb0;
  --on-primary-fixed: #2a170e;
  --surface-tint: #74584d;
  --tertiary-fixed: #c8f17a;

  /* Border Radii */
  --radius-default: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-xxl: 2rem;
  --radius-xxxl: 2.5rem;
  --radius-full: 9999px;

  /* Spacing */
  --unit: 4px;
  --margin-desktop: 64px;
  --margin-mobile: 20px;
  --gutter-desktop: 24px;
  --gutter-mobile: 16px;
  --container-max: 1280px;

  /* Fonts */
  --font-family: 'Manrope', sans-serif;

  /* Shadow */
  --custom-shadow: 0 10px 30px -5px rgba(74, 50, 40, 0.08);
  --elevation-high: 0 20px 40px -10px rgba(74, 50, 40, 0.15);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--on-background);
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Material Symbols Outlined Custom Configuration */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-feature-settings: 'liga';
}

.material-symbols-outlined.fill {
  font-variation-settings: 'FILL' 1;
}

/* Custom Overlays */
.tactile-overlay {
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

/* Typography Scales */
.text-display-lg {
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-headline-lg {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.text-title-md {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.text-body-lg {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.text-body-md {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.text-label-md {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.text-label-sm {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Selection colors */
::selection {
  background-color: var(--secondary-container);
  color: var(--on-secondary);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

/* Layout Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }

.grid { display: grid; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Spacing Helpers */
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.pb-1 { padding-bottom: 4px; }
.pb-4 { padding-bottom: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Sticky Header & Navbar */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--outline-variant);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.sticky-header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgba(254, 249, 243, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(74, 50, 40, 0.05);
  border-bottom: 1px solid rgba(130, 116, 111, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.3s ease;
}

header.sticky-header.scrolled .nav-container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--on-surface-variant);
  font-family: var(--font-family);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a.active {
  color: var(--secondary-container);
  font-weight: 700;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-container);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search Box Container */
.search-container {
  display: flex;
  align-items: center;
  background-color: var(--surface-container-low);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--outline-variant);
  gap: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-container:focus-within {
  border-color: var(--secondary-container);
  box-shadow: 0 0 0 3px rgba(252, 143, 52, 0.15);
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 20px;
  color: var(--on-surface);
  width: 150px;
  transition: width 0.3s ease;
}

.search-input::placeholder {
  color: var(--outline);
}

.search-input:focus {
  width: 200px;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--secondary-container);
  color: var(--on-secondary);
  box-shadow: var(--custom-shadow);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -4px rgba(252, 143, 52, 0.4);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--on-primary);
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: scale(0.95);
}

.btn-dark {
  background-color: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--custom-shadow);
}

.btn-dark:hover {
  background-color: var(--secondary);
  color: var(--on-primary);
  transform: translateY(-1px);
}

.btn-dark:active {
  transform: scale(0.95);
}

.btn-large {
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 20px;
  line-height: 28px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero-section {
  background-color: var(--surface-container-low);
  border-bottom: 1px solid rgba(130, 116, 111, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--tertiary-fixed);
  color: var(--on-tertiary-fixed-variant);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.hero-title {
  color: var(--primary);
  margin-top: 16px;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--secondary-container);
}

.hero-description {
  color: var(--on-surface-variant);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Slider */
.slider-wrapper {
  margin-top: 48px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-slider {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xxl);
  overflow: hidden;
  box-shadow: var(--elevation-high);
  position: relative;
  background-color: var(--surface-container);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50, 29, 20, 0.7) 0%, rgba(50, 29, 20, 0.1) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  bottom: 24px;
  left: 40px;
  text-align: left;
}

.slide-tag {
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 700;
}

.slide-title {
  color: var(--on-primary);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}

.slider-wrapper:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow-prev { left: 16px; }
.slider-arrow-next { right: 16px; }

.slider-pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-dot.active {
  width: 24px;
  background-color: var(--on-primary);
}

/* WhatsApp Consultation Banner Section */
.consultation-section {
  background-color: var(--surface-container-lowest);
  padding: 48px 0;
}

.consultation-banner {
  background-color: var(--secondary-container);
  border-radius: var(--radius-xxl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--custom-shadow);
}

.consultation-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 192px;
  height: 192px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  filter: blur(40px);
  transform: translate(25%, -25%);
}

.consultation-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  background-color: rgba(74, 50, 40, 0.2);
  border-radius: var(--radius-full);
  filter: blur(30px);
  transform: translate(-25%, 25%);
}

.consultation-content {
  position: relative;
  z-index: 1;
  max-width: 672px;
  margin: 0 auto;
}

.consultation-title {
  color: var(--on-primary);
  margin-bottom: 16px;
}

.consultation-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* Product Cards & Bento Cards */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-title {
  color: var(--primary);
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--on-surface-variant);
}

.section-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.section-link span {
  transition: transform 0.2s ease;
}

.section-link:hover {
  color: var(--secondary-container);
}

.section-link:hover span {
  transform: translateX(4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (min-width: 993px) {
  .product-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.product-card {
  background-color: var(--surface-container-high);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(211, 195, 189, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--elevation-high);
}

.product-img-wrapper {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.product-img-wrapper.bg-white {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-wrapper.bg-white img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-img-wrapper.bg-tint {
  background-color: rgba(42, 62, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-wrapper.bg-tint img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--tertiary-fixed);
  color: var(--on-tertiary-fixed-variant);
  padding: 4px 8px;
  border-radius: var(--radius-default);
  font-size: 10px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.right {
  left: auto;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  color: var(--primary);
  margin-bottom: 4px;
}

.product-desc {
  color: var(--on-surface-variant);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  width: 100%;
  text-align: center;
  border-radius: var(--radius-default);
  font-size: 14px;
  padding: 10px 16px;
}

/* About Philosophy Section */
.about-teaser-section {
  background-color: var(--surface-container);
  overflow: hidden;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.about-teaser-media {
  position: relative;
}

.about-teaser-bubble {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 128px;
  height: 128px;
  background-color: var(--primary-container);
  border-radius: var(--radius-full);
  opacity: 0.2;
  animation: pulse 4s infinite ease-in-out;
}

.about-teaser-img-box {
  position: relative;
  border-radius: var(--radius-xxl);
  overflow: hidden;
  box-shadow: var(--custom-shadow);
  transform: rotate(-2deg);
}

.about-teaser-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-teaser-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(130, 116, 111, 0.1);
  padding: 32px;
  border-radius: var(--radius-xl);
  max-width: 240px;
}

.badge-num {
  color: var(--secondary-container);
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.badge-txt {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.about-teaser-list {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-teaser-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.item-icon-box {
  width: 32px;
  height: 32px;
  background-color: var(--tertiary-fixed);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-tertiary-fixed);
}

.item-icon-box span {
  font-size: 18px;
}

.item-txt {
  font-weight: 700;
  color: var(--primary);
}

/* Footer Section */
footer.footer-section {
  background-color: var(--primary);
  color: var(--on-primary);
  position: relative;
}

footer.footer-section a {
  color: var(--surface-variant);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

footer.footer-section a:hover {
  opacity: 1;
  color: var(--secondary-fixed);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 24px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-title {
  color: var(--on-primary);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.footer-desc {
  color: var(--surface-variant);
  opacity: 0.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary-container);
}

.social-link span {
  font-size: 20px;
  color: white;
}

.social-link svg {
  display: block;
  color: white;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.15);
}

.footer-heading {
  color: var(--secondary-fixed);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter-text {
  color: var(--surface-variant);
  opacity: 0.8;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  width: 100%;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 12px 16px;
  color: white;
  outline: none;
  font-family: var(--font-family);
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background-color: var(--secondary-container);
  border: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: white;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease;
}

.newsletter-btn:hover {
  filter: brightness(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

/* General Layout Utilities */
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* animations.css placeholder triggers */
.reveal-fade, .reveal-slide-up, .reveal-slide-left, .reveal-slide-right, .reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Bento Card Style definition */
.bento-card {
  background-color: var(--surface-container-low);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(130, 116, 111, 0.15);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(74, 50, 40, 0.15);
}

/* Glass Card Style definition */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(130, 116, 111, 0.1);
}

/* Pulse animation keyframe */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.25; }
  100% { transform: scale(1); opacity: 0.2; }
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-container);
  color: var(--on-secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--custom-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 99;
}

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

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(252, 143, 52, 0.3);
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary-container);
  color: white;
  padding: 8px 16px;
  z-index: 1001;
  text-decoration: none;
  border-radius: 0 0 var(--radius-lg) 0;
  transition: top 0.2s ease;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* Sticky WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(0.95);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

