@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand: #23412F;
  --brand-light: #2E5A3D;
  --brand-dark: #1B3023;
  --accent: #D4AF37;
  --accent-dark: #B5952F;
  --bg: #F8F5EE;
  --panel: #FFFFFF;
  --text: #1A1C1A;
  --muted: #5C635C;
  --border: rgba(35, 65, 47, 0.1);
  --header-bg: #23412F;
  --footer-bg: #1B3023;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(circle at top right, rgba(35, 65, 47, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  opacity: 0;
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  padding-top: 5px;
  color: var(--brand-dark);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header & Navigation */
.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--panel);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  transition: transform 0.3s ease;
}
.navbar-brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-copy {
  line-height: 1.2;
}

.logo-copy strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.logo-copy span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
}

.site-nav a:hover::after, .site-nav a.active::after {
  width: 100%;
}

.btn-menu {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.btn-menu:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Offcanvas Menu */
.offcanvas {
  background: var(--brand-dark);
}
.offcanvas .offcanvas-title {
  color: #fff;
  font-weight: 700;
}
.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.offcanvas .nav-link:hover, .offcanvas .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  transform: translateX(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--brand-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
  color: var(--brand-dark);
}

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

.btn-outline-secondary:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(35, 65, 47, 0.2);
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section > .row {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--accent);
}

.hero-section h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--brand-dark);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-section p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card.hero-card:hover {
  animation: none;
}

.product-card .card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 65, 47, 0.06);
}

.product-card .card-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
}

.product-card .card-image img.product-photo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  background: transparent;
  padding: 20px;
  display: block;
}

.product-card:hover .card-image img.product-photo {
  transform: scale(1.04);
}

.product-card:hover .card-image img:not(.product-photo) {
  transform: scale(1.05);
}

.product-card .card-content {
  padding: 0 12px 12px;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Sections */
.page-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-copy {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Info Cards */
.info-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(35, 65, 47, 0.3);
}

/* Gallery styles */
.gallery-container {
  padding: 80px 0;
}
.gallery-grid {
  column-count: 1;
  column-gap: 16px;
}
@media (min-width: 576px) { .gallery-grid { column-count: 2; } }
@media (min-width: 768px) { .gallery-grid { column-count: 3; } }
@media (min-width: 992px) { .gallery-grid { column-count: 4; } }
.gallery-item {
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item {
  position: relative;
  margin-bottom: 16px;
  break-inside: avoid;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover,
.gallery-item.is-hovered {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item.is-hovered img,
.gallery-item.is-hovered video {
  transform: scale(1.08);
}

.audio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 28px;
}

/* Visual play indicator for video thumbnails */
.gallery-item {
  position: relative;
}
.gallery-item.is-video::after {
  content: '\25B6';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  pointer-events: none;
}
/* caption removed: filenames hidden in gallery */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-content img,
.lightbox-content video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  background: transparent;
  border: none;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.info-card i {
  font-size: 1.8rem;
  color: var(--brand);
  margin-right: 16px;
  background: rgba(35, 65, 47, 0.1);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Contact Page specific */
.contact-card, .form-card, .package-block, .details-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: block;
}

.form-control {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg);
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(35, 65, 47, 0.1);
  outline: none;
  background: #fff;
}

/* Review Section */
.review-card {
  background: linear-gradient(135deg, var(--panel), #FDFBF5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '\F586'; /* Bootstrap star-fill icon */
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 20px;
  bottom: -40px;
  font-size: 160px;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
  transform: rotate(-15deg);
}

.review-card h2 {
  color: var(--brand-dark);
}

.review-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.btn-review {
  background: #FFF;
  color: #4285F4;
  border: 2px solid #4285F4;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 99px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-review:hover {
  background: #4285F4;
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
}

.btn-review i {
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark), var(--accent), var(--brand-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.footer-logo strong {
  color: #fff;
  font-size: 1.2rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--brand-dark);
  transform: translateY(-3px);
}

.footer-links a, .footer-contact li {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Utilities & Animations */
.text-success {
  color: var(--brand) !important;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.hero-animate:nth-child(1) { animation-delay: 0.08s; }
.hero-animate:nth-child(2) { animation-delay: 0.18s; }
.hero-animate:nth-child(3) { animation-delay: 0.28s; }
.hero-animate:nth-child(4) { animation-delay: 0.38s; }

.hero-visual {
  animation: fadeInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  opacity: 0;
}

.hero-card {
  animation: floatCard 6s ease-in-out infinite;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  min-height: 0;
  max-height: 220px;
  background: linear-gradient(145deg, #fff 0%, #f4f1ea 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-logo {
  width: auto;
  max-width: min(200px, 70%);
  max-height: 160px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 8px 20px rgba(35, 65, 47, 0.12));
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-card .hero-logo-wrap + .card-content {
  padding-top: 8px;
}

.hero-visual .stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-visual .stagger-children > *:nth-child(1) { animation-delay: 0.55s; }
.hero-visual .stagger-children > *:nth-child(2) { animation-delay: 0.7s; }
.hero-visual .stagger-children > *:nth-child(3) { animation-delay: 0.85s; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Product Page specifics */
.package-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--border);
}

.package-item h4 {
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.details-card ul li {
  margin-bottom: 16px;
  display: flex;
}
.details-card ul li i {
  font-size: 1.2rem;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .product-card .card-image {
    height: 220px;
  }
  .product-card .card-image img.product-photo {
    padding: 14px;
  }

  body {
    background-image: radial-gradient(circle at top right, rgba(35, 65, 47, 0.02) 0%, transparent 50%);
  }

  .hero-section {
    text-align: center;
  }
  .hero-section::before,
  .shape-1,
  .oil-drops {
    display: none;
  }
  .hero-visual {
    animation-name: fadeInUp;
  }
  .hero-actions {
    justify-content: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .eyebrow::before {
    display: none;
  }
  .product-card {
    max-width: 500px;
    margin: 40px auto 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .product-card .card-image {
    height: 200px;
  }
  .mini-product img.product-photo {
    height: 110px;
  }

  .footer-bottom {
    text-align: center;
  }

  .hero-section {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =========================================
   PREMIUM DESIGN ADDITIONS 
   ========================================= */

/* Scroll Reveal Animation */
.reveal {
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal .stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active .stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal.active .stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.reveal.active .stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.reveal.active .stagger-children > *:nth-child(3) { transition-delay: 0.25s; }
.reveal.active .stagger-children > *:nth-child(4) { transition-delay: 0.35s; }
.reveal.active .stagger-children > *:nth-child(5) { transition-delay: 0.45s; }
.reveal.active .stagger-children > *:nth-child(6) { transition-delay: 0.55s; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.12);
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

/* Stats strip */
.stats-strip {
  margin: -20px auto 40px;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.stat-item {
  text-align: center;
  padding: 8px 12px;
  transition: transform 0.35s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 65, 47, 0.1), rgba(212, 175, 55, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform 0.4s ease, background 0.4s ease;
}
.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: var(--accent);
}
.stat-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Feature cards */
.feature-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.35);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(35, 65, 47, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: var(--brand);
  color: var(--accent);
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* Mini products in hero */
.mini-product {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid transparent;
}
.mini-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(212, 175, 55, 0.3);
}
.mini-product img.product-photo {
  width: 100%;
  height: 130px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(35, 65, 47, 0.06);
  transition: transform 0.5s ease;
}
.mini-product:hover img.product-photo {
  transform: scale(1.05);
}

/* Oil drop particles */
.oil-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.oil-drops span {
  position: absolute;
  width: 12px;
  height: 18px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.15));
  opacity: 0;
  animation: oilFall 8s linear infinite;
}
.oil-drops span:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 7s; }
.oil-drops span:nth-child(2) { left: 22%; animation-delay: 1.5s; animation-duration: 9s; width: 8px; height: 12px; }
.oil-drops span:nth-child(3) { left: 45%; animation-delay: 3s; animation-duration: 8s; }
.oil-drops span:nth-child(4) { left: 68%; animation-delay: 0.8s; animation-duration: 10s; width: 10px; height: 14px; }
.oil-drops span:nth-child(5) { left: 88%; animation-delay: 2.2s; animation-duration: 7.5s; }

@keyframes oilFall {
  0% { top: -10%; opacity: 0; transform: translateX(0) rotate(0deg); }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { top: 105%; opacity: 0; transform: translateX(20px) rotate(15deg); }
}

/* Header on scroll */
.site-header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.site-header.header-scrolled .brand-logo {
  height: 72px;
}

.review-card-animated {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.review-card-animated:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 56px rgba(35, 65, 47, 0.12);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.3s ease, color 0.3s ease;
}
.btn-link:hover {
  color: var(--accent-dark);
  gap: 4px;
}
.btn-link i {
  transition: transform 0.3s ease;
}
.btn-link:hover i {
  transform: translateX(4px);
}

/* Product card CTA */
.btn-product-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-product-view:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 65, 47, 0.25);
}
.btn-product-view i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.btn-product-view:hover i {
  transform: translateX(3px);
}

.btn-whatsapp-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-whatsapp-price:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.product-card-actions {
  margin-top: auto;
}

/* Peanut oil detail page */
.product-page {
  padding-bottom: 40px;
}

.product-page-hero {
  position: relative;
}

.product-page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.product-page-hero .lead-copy {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}

.product-showcase-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.product-showcase-logo {
  max-width: min(280px, 85%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.package-specs-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.packaging-variant-card.pack-highlight,
#pack-tin.pack-highlight,
#pack-bottle.pack-highlight,
#pack-can.pack-highlight {
  animation: packHighlight 1.2s ease;
}

@keyframes packHighlight {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: var(--shadow-md); }
}

#pack-tin.pack-highlight .product-card,
#pack-bottle.pack-highlight .product-card,
#pack-can.pack-highlight .product-card {
  border-color: var(--accent);
}

.details-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .product-page-hero {
    text-align: center;
  }
  .product-page-hero .lead-copy {
    margin-left: auto;
    margin-right: auto;
  }
  .product-page-hero .hero-actions {
    justify-content: center;
  }
}

/* Floating action buttons pulse */
.call-float,
.whatsapp-float {
  animation: fabPulse 2.5s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
}
.call-float {
  animation-name: fabPulseCall;
}
@keyframes fabPulseCall {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); }
  50% { box-shadow: 0 8px 28px rgba(0, 123, 255, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}

/* Glassmorphism & Premium Cards Extension */
.product-card, .info-card, .contact-card, .form-card, .package-block, .details-card, .review-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.product-card:hover, .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(35, 65, 47, 0.12);
  border-color: var(--accent);
}

/* Button Shimmer Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Floating accent (hero right side only — no green blob on text) */
.shape-1 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
  will-change: transform;
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.12);
  top: 15%;
  right: 0;
  left: auto;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #007BFF;
  color: #FFFFFF;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 0px 4px 15px rgba(0, 123, 255, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.call-float:hover {
  background-color: #0056b3;
  color: #FFFFFF;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 8px 25px rgba(0, 123, 255, 0.5);
}
.call-float i {
  margin-top: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .call-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-float i {
  margin-top: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}
