/* =============================================
   ELYON ORGANICS LIMITED - Main Stylesheet
   Global | Sections | Components | Animations
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #F5F0E8;
  --cream-dark: #EBE4D8;
  --beige: #E8DFD0;
  --forest-green: #2D5016;
  --forest-green-light: #3A6B1E;
  --golden: #C9A227;
  --golden-light: #E8C547;
  --brown: #6B4423;
  --brown-light: #8B6340;
  --brown-dark: #4A2F17;
  --white: #FFFFFF;
  --text-dark: #2C2416;
  --text-muted: #6B5E4F;
  --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
  --shadow-md: 0 8px 30px rgba(45, 80, 22, 0.12);
  --shadow-lg: 0 16px 50px rgba(45, 80, 22, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --header-height: 120px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest-green);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 100px 0;
}

.bg-cream-dark {
  background-color: var(--cream-dark);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border: 2px solid var(--forest-green);
  color: var(--forest-green);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--forest-green);
  border-color: var(--white);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--forest-green), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  margin: 0 auto 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--golden);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

.preloader-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- Header & Navbar ---------- */
.header {
  z-index: 1030;
  transition: var(--transition);
}

.header .navbar {
  padding: 16px 0;
  transition: var(--transition);
}

.header-top-bar {
  background: rgba(36, 16, 6, 0.95);
  padding: 8px 0;
  font-size: 0.85rem;
  transition: var(--transition);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.header-top-link {
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top-link:hover {
  color: var(--golden-light);
}

.header-top-divider {
  color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .header-top-bar {
  display: none;
}

.header:not(.scrolled) .navbar {
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0.92) 0%,
    rgba(45, 80, 22, 0.65) 70%,
    transparent 100%
  );
  padding-bottom: 24px;
}

.header:not(.scrolled) .logo-name {
  color: var(--white);
}

.header:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.85);
}

.header:not(.scrolled) .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.header:not(.scrolled) .navbar-nav .nav-link:hover,
.header:not(.scrolled) .navbar-nav .nav-link.active {
  color: var(--golden-light);
}

.header:not(.scrolled) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--brown);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px !important;
  position: relative;
  font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--golden);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--forest-green);
}

.btn-enquiry {
  padding: 10px 24px !important;
  font-size: 0.9rem;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232D5016' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/shea-butter.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.85) 0%,
    rgba(74, 47, 23, 0.75) 50%,
    rgba(45, 80, 22, 0.8) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--golden);
  color: var(--golden-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
}

.hero-scroll-indicator a:hover {
  color: var(--golden);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- About ---------- */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--golden);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icon-box {
  background: var(--white);
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.icon-box i {
  font-size: 1.8rem;
  color: var(--forest-green);
  display: block;
  margin-bottom: 8px;
}

.icon-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.experience-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--golden);
}

.exp-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream-dark), var(--beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--forest-green);
  transition: var(--transition);
}

.experience-card:hover .exp-icon {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: var(--white);
}

.experience-card h3,
.experience-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.experience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Products ---------- */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-enquiry-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
}

/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--golden));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
}

.why-card h3,
.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Services / Manufacturing ---------- */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--forest-green);
  margin-bottom: 8px;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--forest-green);
  color: var(--white);
}

.process-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.process-arrow {
  color: var(--golden);
  font-size: 1rem;
  flex-shrink: 0;
}

.factory-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.factory-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.factory-image-wrapper:hover .factory-img {
  transform: scale(1.03);
}

/* ---------- Global Export ---------- */
.global-export {
  position: relative;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.export-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.92) 0%,
    rgba(74, 47, 23, 0.88) 100%
  );
}

.export-markets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.market-badge:hover {
  background: var(--golden);
  border-color: var(--golden);
  transform: translateY(-3px);
}

.market-expand {
  border-style: dashed;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item img[src*="logo"] {
  object-fit: contain;
  background: var(--white);
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
  color: var(--white);
  padding: 40px 20px 16px;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-left: 4px solid var(--golden);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--golden);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--forest-green);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
  background: var(--white);
}

.contact-info-card {
  background: var(--white);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-bottom: 2px;
}

.contact-detail p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail a {
  color: var(--forest-green);
}

.contact-detail a:hover {
  color: var(--golden);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  display: block;
}

.form-success {
  background: var(--forest-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #2b1208 0%, #241006 100%);
  min-height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1010;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 0 48px;
}

.site-footer-copyright {
  color: #9b938c;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.site-footer-logo {
  flex-shrink: 0;
  margin-right: 70px;
}

.site-footer-logo a {
  display: block;
  line-height: 0;
}

.site-footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 58px;
  right: 36px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 1025;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--golden);
  transform: translateY(-3px);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Quote Badge ---------- */
.btn-quote-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--golden);
  color: var(--brown-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header:not(.scrolled) .quote-badge {
  background: var(--golden-light);
}

/* ---------- Product Actions ---------- */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-actions .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 120px;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--golden);
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--forest-green);
}

.blog-card-title a:hover {
  color: var(--golden);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 70px;
  background: url('../images/shea-butter.jpeg') center/cover no-repeat;
}

.page-hero-sm {
  min-height: 280px;
  padding: 150px 0 50px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.88) 0%,
    rgba(74, 47, 23, 0.82) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: var(--golden-light);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--golden-light);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- About Page ---------- */
.mission-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mission-card .why-icon {
  margin: 0 0 20px;
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card i {
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.quality-list i {
  color: var(--forest-green);
  font-size: 1.2rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 90px 0;
  background: url('../images/raw-shea-butter.jpeg') center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.92), rgba(74, 47, 23, 0.88));
}

.cta-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- Product Detail ---------- */
.product-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  margin-bottom: 16px;
}

.product-gallery-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 88px;
  height: 88px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--forest-green);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.detail-block {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.detail-block h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.detail-block p {
  color: var(--text-muted);
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.feature-list i {
  color: var(--forest-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  text-align: left;
  font-size: 0.95rem;
}

.spec-table th {
  color: var(--brown);
  font-weight: 600;
  width: 40%;
}

.spec-table td {
  color: var(--text-muted);
}

/* ---------- Quote Page ---------- */
.quote-empty {
  text-align: center;
  background: var(--white);
  padding: 60px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.quote-empty i {
  font-size: 3rem;
  color: var(--golden);
  margin-bottom: 16px;
  display: block;
}

.quote-empty h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.quote-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.quote-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: var(--transition);
}

.quote-item:hover {
  box-shadow: var(--shadow-md);
}

.quote-item-image {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.quote-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-item-info {
  flex: 1;
  min-width: 0;
}

.quote-item-info h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  color: var(--forest-green);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--forest-green);
  color: var(--white);
}

.qty-value {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.quote-remove {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.08);
  color: #a94442;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.quote-remove:hover {
  background: #a94442;
  color: var(--white);
}

.quote-summary {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.quote-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.quote-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-muted);
}

.quote-summary-row strong {
  color: var(--forest-green);
}

/* ---------- Gallery Masonry ---------- */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-masonry .gallery-item img {
  height: auto;
  min-height: 220px;
  max-height: 360px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 12, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--golden);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--golden);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

/* ---------- Blog Detail ---------- */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.blog-featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.blog-content .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.blog-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 14px;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--cream-dark);
}

.blog-share span {
  font-weight: 600;
  color: var(--brown);
}

.blog-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.blog-share a:hover {
  background: var(--forest-green);
  color: var(--white);
}

.blog-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.blog-nav-link {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: var(--transition);
}

.blog-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-nav-link span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-bottom: 6px;
}

.blog-nav-link strong {
  color: var(--forest-green);
  font-size: 0.95rem;
  line-height: 1.4;
}

.blog-nav-link.next {
  text-align: right;
}

/* ---------- Contact Page Extras ---------- */
.contact-social,
.footer-social {
  display: flex;
  gap: 12px;
}

.contact-social a,
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-social a:hover,
.footer-social a:hover {
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  color: var(--white);
  transform: translateY(-3px);
}

.map-full {
  border-radius: 20px;
}

.map-full iframe {
  min-height: 360px;
}

/* ---------- Footer Expanded ---------- */
.site-footer-main {
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--golden-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--golden-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--golden);
  margin-top: 3px;
}

.footer-social {
  margin-top: 18px;
}

/* ---------- Toast ---------- */
.quote-toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 1050;
  background: var(--forest-green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  pointer-events: none;
}

.quote-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.quote-toast i {
  color: var(--golden-light);
  font-size: 1.2rem;
}

.quote-toast[hidden] {
  display: none !important;
}

/* ---------- Product Reviews ---------- */
.review-section {
  background: var(--cream);
}

.review-summary {
  margin-top: 12px;
}

.review-summary-stars {
  color: var(--golden);
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.review-summary-text {
  color: var(--text-muted);
  margin: 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-empty {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.review-empty i {
  font-size: 2.4rem;
  color: var(--golden);
  display: block;
  margin-bottom: 12px;
}

.review-empty p {
  color: var(--text-muted);
  margin: 0;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--golden);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.review-stars {
  color: var(--golden);
  display: flex;
  gap: 2px;
  font-size: 0.95rem;
}

.review-card-header time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.review-card-text {
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 500;
}

.review-card-desc {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.review-card-author {
  margin: 0;
  font-size: 0.9rem;
  color: var(--brown);
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
  align-items: center;
}

.star-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: #c4b8a5;
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  user-select: none;
}

.star-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.star-label:hover,
.star-label.is-hover,
.star-label.is-active,
.star-rating:hover .star-label.is-hover {
  color: var(--golden);
  transform: scale(1.12);
}

.star-label:has(.star-input:checked),
.star-label.is-active {
  color: var(--golden);
}

.star-label:focus-within {
  outline: 2px solid var(--forest-green);
  outline-offset: 2px;
  border-radius: 6px;
}

.star-icon {
  pointer-events: none;
}

.review-card-new {
  animation: fadeUp 0.45s ease;
}

.star-hint {
  display: block;
  min-height: 1.2em;
}

.review-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 0.95rem;
}

.review-alert.success {
  background: rgba(45, 80, 22, 0.12);
  color: var(--forest-green);
  border: 1px solid rgba(45, 80, 22, 0.25);
}

.review-alert.error {
  background: rgba(169, 68, 66, 0.1);
  color: #a94442;
  border: 1px solid rgba(169, 68, 66, 0.25);
}

.review-alert[hidden] {
  display: none !important;
}

.review-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
