/*
 * CoreHarvests Premium CSS Styling
 * Theme Colors:
 * - Primary: #9B1D20 (Crimson Red)
 * - Secondary: #D89C26 (Mustard/Golden Yellow)
 * - Background: #FAF8F4 (Warm Cream)
 * - Text: #333333 (Charcoal Gray)
 */

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

:root {
  --primary: #9B1D20;
  --primary-rgb: 155, 29, 32;
  --primary-dark: #7A1416;
  --secondary: #D89C26;
  --secondary-rgb: 216, 156, 38;
  --secondary-dark: #B5801B;
  --bg-warm: #FAF8F4;
  --bg-card: #ffffff;
  --text-dark: #333333;
  --text-muted: #6C757D;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(155, 29, 32, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 25px 50px -12px rgba(155, 29, 32, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Poppins', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--font-family);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

p {
  color: #555555;
  line-height: 1.7;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: rgba(155, 29, 32, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Full Page Loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-warm);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-content {
  text-align: center;
}
.loader-spice-bowl {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 20px;
  animation: rotateBowl 2s infinite linear;
}
.loader-spice-bowl svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}
@keyframes rotateBowl {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg); }
}
.loader-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  animation: pulseText 1.5s infinite ease-in-out;
}
@keyframes pulseText {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  z-index: 99999;
  transition: width 0.1s ease;
}

/* Custom Top Premium Information Bar */
.top-info-bar {
  background-color: #FCFAf6;
  border-bottom: 1px solid rgba(155, 29, 32, 0.03);
  font-size: 0.80rem;
  font-weight: 500;
  color: #616875;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 0;
  letter-spacing: 0.03em;
}

.top-info-bar .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.top-info-bar .info-item i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.top-info-bar .info-item a {
  color: #616875;
  transition: color 0.3s ease;
}

.top-info-bar .info-item a:hover {
  color: var(--primary) !important;
}

.top-info-bar .info-divider {
  color: #E6DFD3;
  font-weight: 300;
  margin: 0 12px;
}

.top-info-bar .top-info-tagline {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info-bar .top-info-tagline i {
  color: var(--secondary);
}

/* Custom Sticky Navbar */
.navbar-premium {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(216, 156, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(155, 29, 32, 0.015), 0 1px 2px rgba(0, 0, 0, 0.01);
}

.navbar-premium.scrolled {
  padding: 14px 0;
  background-color: #ffffff;
  box-shadow: 0 10px 35px rgba(155, 29, 32, 0.07), 0 1px 3px rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(216, 156, 38, 0.25);
}

/* Premium Brand Logo & Typography */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.brand-logo-icon {
  font-size: 2.1rem;
  color: var(--secondary);
  filter: drop-shadow(0 2px 8px rgba(216, 156, 38, 0.25));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-brand:hover .brand-logo-icon {
  color: var(--primary);
  transform: scale(1.10) rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(155, 29, 32, 0.25));
}

.brand-text {
  font-family: var(--font-family);
  font-size: 1.70rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-text-accent {
  color: var(--secondary);
  font-weight: 800;
}

.navbar-brand:hover .brand-text {
  letter-spacing: -0.015em;
  text-shadow: 0 2px 4px rgba(155, 29, 32, 0.04);
}

.navbar-premium.scrolled .brand-logo-icon {
  font-size: 1.85rem;
}

.navbar-premium.scrolled .brand-text {
  font-size: 1.55rem;
}

/* Nav links styling */
.nav-link-premium {
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 500;
  color: #2D3748 !important;
  padding: 10px 22px !important;
  margin: 0 10px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 30px;
  display: inline-block;
  z-index: 1;
}

/* Premium Custom Desktop Hover and Active States */
@media (min-width: 992px) {
  .nav-link-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.9) translateY(4px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Luxurious Gold Highlight Reveal */
  .nav-link-premium:hover {
    color: #1A202C !important;
    font-weight: 600;
    transform: translateY(-2px);
  }

  .nav-link-premium:hover::before {
    background: linear-gradient(135deg, #FFFDF9 0%, #FAF0D7 100%);
    border: 1px solid rgba(216, 156, 38, 0.25);
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 6px 16px rgba(216, 156, 38, 0.15);
  }

  /* Active Menu: Dark Primary Wine with white text, capsule style */
  .nav-link-premium.active {
    color: #ffffff !important;
    font-weight: 600;
    transform: translateY(-2px);
  }

  .nav-link-premium.active::before {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 1px solid var(--primary-dark);
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 8px 22px rgba(155, 29, 32, 0.22);
  }
}

/* Premium CTA Button */
.btn-header-cta {
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 11px 26px;
  border-radius: 30px;
  border: 1px solid rgba(155, 29, 32, 0.1);
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(155, 29, 32, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-header-cta i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-color: rgba(216, 156, 38, 0.15);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(216, 156, 38, 0.28);
}

.btn-header-cta:hover i {
  transform: translateX(4px);
}

/* Toggler and Hamburger */
.navbar-toggler-premium {
  border: none;
  outline: none !important;
  padding: 8px;
  background: transparent;
}

.navbar-toggler-premium:focus {
  box-shadow: none;
}

.navbar-toggler-premium .hamburger-icon {
  width: 24px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-premium .hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.navbar-toggler-premium[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-premium[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-premium[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Modern mobile collapse menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #ffffff;
    border: 1px solid rgba(216, 156, 38, 0.15);
    margin-top: 15px;
    padding: 20px 18px;
    box-shadow: 0 15px 40px rgba(155, 29, 32, 0.08);
    border-radius: 18px;
  }
  
  .navbar-nav {
    gap: 8px;
  }

  .nav-link-premium {
    padding: 12px 24px !important;
    margin: 4px 0;
    width: 100%;
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .nav-link-premium::before {
    display: none !important;
  }

  .nav-link-premium::after {
    display: none !important;
  }

  .nav-link-premium:hover {
    background-color: #FAF2E3 !important;
    color: var(--primary) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .nav-link-premium.active {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    font-weight: 600;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Glassmorphism Classes */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 32px rgba(155, 29, 32, 0.02);
  border-radius: 20px;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  box-shadow: 0 20px 40px rgba(155, 29, 32, 0.08);
  border-color: rgba(155, 29, 32, 0.18);
  transform: translateY(-4px);
}

/* Buttons Styling */
.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(155, 29, 32, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-premium-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-premium-primary:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(155, 29, 32, 0.4), 0 0 15px rgba(216, 156, 38, 0.25);
}
.btn-premium-primary:hover::before {
  opacity: 1;
}

.btn-premium-secondary {
  background-color: transparent;
  color: var(--primary);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-premium-secondary:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(155, 29, 32, 0.3);
}

.btn-premium-outline-gold {
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--secondary);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-premium-outline-gold:hover {
  background-color: var(--secondary);
  color: var(--bg-warm);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(216, 156, 38, 0.35);
}

/* Section Header Styles */
.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
.section-title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  margin: 0 auto;
  border-radius: 10px;
  transition: var(--transition-smooth);
}
.section-title-line.left {
  margin: 0;
}

/* Hero Section Style */
.hero-wrapper {
  position: relative;
  min-height: 95vh;
  background: radial-gradient(circle at 20% 30%, rgba(31, 5, 6, 1) 0%, rgba(62, 10, 12, 1) 45%, rgba(92, 15, 18, 1) 100%);
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: 110px;
}
.hero-glow-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(155, 29, 32, 0.25);
  filter: blur(120px);
  top: 15%;
  left: 5%;
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(216, 156, 38, 0.18);
  filter: blur(100px);
  bottom: 15%;
  right: 10%;
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 9s ease-in-out infinite alternate-reverse;
}
@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.25) translate(40px, 30px); opacity: 0.85; }
}

/* Floating Spice Illustrations & Decorative Elements */
.floating-spice {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}
.spice-leaf-1 {
  width: 30px;
  height: 50px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 0 100% 0 100%;
  top: 22%;
  left: 8%;
  transform: rotate(45deg);
  filter: drop-shadow(0 10px 15px rgba(46, 125, 50, 0.3));
  animation: floatSpiceLeft 8s ease-in-out infinite alternate;
}
.spice-leaf-2 {
  width: 20px;
  height: 35px;
  background: linear-gradient(135deg, #1b5e20, #388e3c);
  border-radius: 100% 0 100% 0;
  bottom: 25%;
  left: 45%;
  transform: rotate(-30deg);
  filter: drop-shadow(0 8px 12px rgba(27, 94, 32, 0.25));
  animation: floatSpiceRight 10s ease-in-out infinite alternate-reverse;
}
.spice-leaf-3 {
  width: 25px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 0 100% 0 100%;
  top: 15%;
  right: 12%;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 15px rgba(216, 156, 38, 0.3));
  animation: floatSpiceLeft 9s ease-in-out infinite alternate 1.5s;
}
.spice-berry-1 {
  width: 16px;
  height: 24px;
  background: linear-gradient(135deg, #e65100, #ff9800);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  bottom: 20%;
  right: 18%;
  transform: rotate(60deg);
  filter: drop-shadow(0 8px 12px rgba(230, 81, 0, 0.3));
  animation: floatSpiceRight 7s ease-in-out infinite alternate;
}
.spice-berry-2 {
  width: 12px;
  height: 12px;
  background: #3e2723;
  border-radius: 50%;
  top: 40%;
  right: 48%;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
  animation: floatSpiceLeft 11s ease-in-out infinite alternate-reverse;
}
.gold-dust-1 {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  top: 30%;
  left: 25%;
  box-shadow: 0 0 10px var(--secondary);
  animation: sparkle 4s ease-in-out infinite;
}
.gold-dust-2 {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  bottom: 35%;
  right: 35%;
  box-shadow: 0 0 12px #fff;
  animation: sparkle 5s ease-in-out infinite 2.5s;
}
@keyframes floatSpiceLeft {
  0% { transform: translateY(0) rotate(15deg) translateX(0); }
  100% { transform: translateY(-15px) rotate(35deg) translateX(5px); }
}
@keyframes floatSpiceRight {
  0% { transform: translateY(0) rotate(-15deg) translateX(0); }
  100% { transform: translateY(-20px) rotate(-35deg) translateX(-8px); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-warm), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(120deg, #ffffff 40%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.85rem;
  }
}
.hero-desc {
  font-size: 1.1rem;
  color: #dddddd;
  margin-bottom: 35px;
  max-width: 550px;
}
.hero-image-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-main-img {
  max-width: 90%;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
  animation: floatMain 6s ease-in-out infinite;
}
@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-badge-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  animation: floatBadge 4s ease-in-out infinite alternate;
}
.hero-badge-1 {
  top: 15%;
  right: 5%;
}
.hero-badge-2 {
  bottom: 15%;
  left: 5%;
  animation-delay: 1.5s;
}
@keyframes floatBadge {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

/* Inner Page Hero Banners */
.inner-hero {
  position: relative;
  background: linear-gradient(135deg, #2b0607 0%, #4f0b0e 100%);
  padding: 150px 0 100px;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(216, 156, 38, 0.1) 0%, transparent 70%);
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-warm), transparent);
  pointer-events: none;
}
.inner-hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
}
.inner-hero-title span {
  color: var(--secondary);
}
.inner-hero-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}
.inner-hero-breadcrumb a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.inner-hero-breadcrumb a:hover {
  color: var(--secondary);
}
.inner-hero-breadcrumb span {
  color: #888888;
}

/* Product Cards Grid & Design */
.product-card-premium {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(155, 29, 32, 0.05);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(155, 29, 32, 0.1), rgba(216, 156, 38, 0.05), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.product-card-premium:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(155, 29, 32, 0.12);
  border-color: rgba(155, 29, 32, 0.15);
}
.product-card-premium:hover::before {
  background: linear-gradient(135deg, rgba(155, 29, 32, 0.4), rgba(216, 156, 38, 0.3));
}
.product-img-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf6f0 0%, #ffffff 100%);
  padding: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.product-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(155, 29, 32, 0.03) 100%);
}
.product-main-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-premium:hover .product-main-img {
  transform: scale(1.15) rotate(2deg);
}
.product-badge-organic {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(216, 156, 38, 0.2);
}
.product-info-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-title-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}
.product-card-premium:hover .product-title-text {
  color: var(--primary);
}
.product-desc-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.product-action-btn {
  margin-top: auto;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  transition: var(--transition-smooth);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-card-premium:hover .product-action-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(155, 29, 32, 0.3);
  transform: translateY(-2px);
}

/* Category Filter Tabs & Styling */
.filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(155, 29, 32, 0.1);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(155, 29, 32, 0.3);
}

/* Feature Showcase Cards (Why Us) */
.feature-showcase-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  position: relative;
}
.feature-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(216, 156, 38, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.feature-showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(155, 29, 32, 0.08);
  border-color: rgba(155, 29, 32, 0.12);
}
.feature-showcase-card:hover::before {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.feature-icon-box {
  width: 75px;
  height: 75px;
  background-color: rgba(155, 29, 32, 0.04);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition-smooth);
}
.feature-icon-box svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
  transition: var(--transition-smooth);
}
.feature-showcase-card:hover .feature-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(155, 29, 32, 0.25);
}
.feature-showcase-card:hover .feature-icon-box svg {
  color: #ffffff;
}
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Animated Statistics Counter CSS */
.stats-box-premium {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(155, 29, 32, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}
.stats-box-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.stats-box-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(155, 29, 32, 0.08);
}
.stats-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* Testimonials / Review Slider Styles */
.testimonial-card-premium {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(155, 29, 32, 0.04);
  position: relative;
  height: 100%;
  transition: var(--transition-smooth);
}
.testimonial-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(155, 29, 32, 0.08);
  border-color: rgba(155, 29, 32, 0.12);
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(155, 29, 32, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}
.testimonial-rating {
  color: var(--secondary);
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #444444;
  margin-bottom: 25px;
  line-height: 1.7;
}
.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.testimonial-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Newsletter CTA Banner (Glassmorphic & Premium) */
.newsletter-banner-premium {
  position: relative;
  background: linear-gradient(135deg, #4f0b0e 0%, #1f0506 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: -80px;
  z-index: 5;
}
@media (max-width: 768px) {
  .newsletter-banner-premium {
    padding: 40px 20px;
    margin-bottom: -50px;
    border-radius: 16px;
  }
}
.newsletter-banner-premium::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216, 156, 38, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-form .form-control-premium {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
}
.newsletter-form .form-control-premium:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
  box-shadow: none;
  color: #ffffff;
}
.newsletter-form .form-control-premium::placeholder {
  color: #cccccc;
}

/* Team section card design */
.team-member-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.02);
  text-align: center;
}
.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-img-box {
  position: relative;
  overflow: hidden;
  background-color: #faf6f0;
}
.team-member-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-member-card:hover .team-member-img {
  transform: scale(1.08);
}
.team-social-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
  background: linear-gradient(to top, rgba(155, 29, 32, 0.95), transparent);
  transition: var(--transition-smooth);
}
.team-member-card:hover .team-social-overlay {
  bottom: 0;
}
.team-social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.team-social-link:hover {
  background-color: var(--secondary);
  color: #ffffff;
  transform: scale(1.1);
}
.team-info-box {
  padding: 24px;
}
.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* Manufacturing Process Cards on Why Us page */
.process-timeline-wrapper {
  position: relative;
}
.process-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .process-timeline-wrapper::before {
    left: 20px;
    transform: none;
  }
}
.process-node {
  position: relative;
  margin-bottom: 60px;
}
.process-node:last-child {
  margin-bottom: 0;
}
.process-node-dot {
  width: 24px;
  height: 24px;
  background-color: var(--secondary);
  border: 4px solid var(--bg-warm);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(216, 156, 38, 0.5);
  z-index: 2;
}
@media (max-width: 991px) {
  .process-node-dot {
    left: 20px;
    transform: translateX(-50%);
  }
}
.process-content-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}
.process-content-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(155, 29, 32, 0.08);
}
.process-step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.process-step-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-top: 15px;
}

/* Contacts Detail Card */
.contact-detail-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
  height: 100%;
}
.contact-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-detail-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(155, 29, 32, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.contact-detail-card:hover .contact-detail-icon {
  background-color: var(--primary);
  color: #ffffff;
}
.contact-detail-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Elegant Premium Input Styling */
.form-group-premium {
  margin-bottom: 24px;
}
.form-label-premium {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-control-premium {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}
.form-control-premium:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(155, 29, 32, 0.1);
  outline: none;
}
textarea.form-control-premium {
  min-height: 120px;
  resize: vertical;
}

/* Beautiful Centered Snackbar */
#snackbar-container {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 999999;
  width: 90%;
  max-width: 450px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#snackbar-container.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.snackbar-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--primary);
}
.snackbar-card.success {
  border-left-color: #2e7d32;
}
.snackbar-card.error {
  border-left-color: #d32f2f;
}
.snackbar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.snackbar-card.success .snackbar-icon {
  color: #2e7d32;
}
.snackbar-card.error .snackbar-icon {
  color: #d32f2f;
}
.snackbar-message {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
  flex-grow: 1;
}
.snackbar-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.snackbar-close:hover {
  color: var(--text-dark);
}

/* Premium Footer Styles */
.footer-wrapper {
  background: radial-gradient(circle at 50% 0%, rgba(216, 156, 38, 0.08) 0%, #130203 80%), #130203;
  padding: 100px 0 40px;
  color: #d1c7c4;
  position: relative;
  overflow: hidden;
}
.footer-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 156, 38, 0.25), transparent);
}
.footer-wrapper::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 156, 38, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer-brand-logo {
  height: 52px;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 8px rgba(155, 29, 32, 0.15));
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: #bfaea8;
}
.footer-social-wrapper {
  display: flex;
  gap: 14px;
}
.footer-social-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #bfaea8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social-btn:hover {
  background-color: rgba(155, 29, 32, 0.18);
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(155, 29, 32, 0.25);
}
.footer-title-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-title-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: #bfaea8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.footer-links-list a::before {
  content: '→';
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.footer-links-list a:hover {
  color: var(--secondary);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(216, 156, 38, 0.3);
}
.footer-links-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #bfaea8;
}
.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 50px;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #8a7770;
}
.footer-bottom-bar a {
  color: #8a7770;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-bottom-bar a:hover {
  color: var(--secondary);
}

/* Interactive Floating Components */
/* WhatsApp Floating Button */
#whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition-smooth);
}
#whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

/* Back To Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(155, 29, 32, 0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: var(--secondary);
  box-shadow: 0 15px 25px rgba(216, 156, 38, 0.35);
}

/* Modal Styling Overrides (Premium Look) */
.modal-premium .modal-content {
  border-radius: 24px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  background-color: var(--bg-warm);
}
.modal-premium .modal-header {
  border-bottom: none;
  padding: 30px 30px 10px;
}
.modal-premium .modal-body {
  padding: 10px 30px 30px;
}
.modal-premium .modal-img-container {
  background-color: #faf6f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.modal-premium .modal-product-img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.modal-premium .btn-close-custom {
  background: rgba(0,0,0,0.04);
  border-radius: 50%;
  padding: 10px;
  border: none;
  transition: var(--transition-smooth);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-premium .btn-close-custom:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Grid animation item */
.product-grid-item {
  transition: var(--transition-smooth);
}
.product-grid-item.hidden {
  display: none;
}
