:root {
  /* Colors - Premium Food Export Palette */
  --primary: #2d6a4f; /* More Vibrant Forest Green */
  --secondary: #606c38; /* Olive */
  --accent: #dda15e; /* Gold Accent */
  --accent-light: #fefae0; /* Beige/Cream */
  --text-dark: #283618; /* Dark Text */
  --text-light: #fefae0;
  --bg-white: #ffffff;
  --bg-soft: #f8f9fa;
  
  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Effects */
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-medium: 0 20px 40px rgba(0,0,0,0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Base Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

/* Fade-in Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Solid Navbar Band */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: linear-gradient(90deg, #1a2f1e 0%, #1b3a24 55%, #2d6a4f 100%);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

nav.scrolled {
  background: linear-gradient(90deg, #1a2f1e 0%, #1b3a24 55%, #2d6a4f 100%);
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}

/* Navbar text behavior */
nav .logo, 
nav .nav-links a,
nav .lang-btn {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
  color: white;
}

nav.scrolled .lang-btn {
  color: white;
  border-color: rgba(255,255,255,0.5);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  font-family: 'Cormorant SC', 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #f0c97a;
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.6),
    0 0 20px rgba(240,201,122,0.2);
  transition: var(--transition);
  line-height: 1;
}

.logo:hover {
  color: #f5d98e;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.5),
    0 0 30px rgba(245,217,142,0.4);
}

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

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

.nav-links a {
  text-decoration: none;
  color: inherit; /* Controlled by nav state */
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.lang-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid currentColor; /* Matches text color */
  color: inherit;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.lang-btn.active {
  background-color: var(--primary);
  color: white;
}

/* Hero Slider */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.content-left {
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    background-color: #1a2f1e;
}

#slide-2 .slide-bg { background-position: center 20%; }
#slide-1 .slide-bg { background-position: center center; }
#slide-sundried .slide-bg { background-position: center 15%; }
#slide-3 .slide-bg { background-position: center center; }

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(45, 106, 79, 0.3), 
        rgba(0, 0, 0, 0.6)
    );
}

.drone-effect {
    animation: droneShot 25s infinite alternate ease-in-out;
}

@keyframes droneShot {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-0.5%, -0.5%); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
    position: relative;
}

.content-left .hero-content {
    text-align: left;
    margin-left: 8%;
}

@media (max-width: 768px) {
    .content-left .hero-content {
        text-align: center;
        margin-left: 0;
    }
    .slide.content-left {
        justify-content: center;
    }
    /* Slider images: use cover on mobile, don't zoom out */
    .slide-bg {
        background-size: cover !important;
        background-position: center center !important;
    }
    /* Make hero section shorter on mobile */
    .hero-section {
        height: 60vh;
    }
    /* Scale hero text down significantly */
    .hero-content h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
    }
    .btn {
        font-size: 0.75rem !important;
        padding: 10px 20px !important;
    }
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: 25px;
    line-height: 1.05;
    font-weight: 800;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5); /* Added shadow for readability */
}

.hero-content p {
    font-size: 1.5rem;
    color: #f1f1f1; /* Brighter than gold-light for contrast */
    margin-bottom: 45px;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--primary);
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: var(--accent-light);
}

/* Product Tabs & Grid */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 32px;
  font-size: 1.15rem;
  border-radius: 40px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Product Slider CSS */
.product-slider-wrapper {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.product-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 5px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  transition: opacity 0.3s ease;
  flex: 1;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: -25px;
}

.slider-arrow.next {
  right: -25px;
}

@media (max-width: 768px) {
  .slider-arrow.prev { left: 0px; }
  .slider-arrow.next { right: 0px; }
}

.product-card {
  flex: 0 0 340px; /* Fixed width for slider cards */
  scroll-snap-align: start;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.product-img {
  height: 320px;
  overflow: hidden;
  background: #fdfdfd; /* Lighter background for premium feel */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  cursor: zoom-in; /* Indicate interactivity */
}

.product-img:hover img {
  transform: scale(1.05); /* Slight zoom on hover for premium feel */
}

/* Lightbox Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  opacity: 0;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: block;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  z-index: 2100;
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  transform: rotate(90deg);
  color: var(--accent);
}

@media (max-width: 768px) {
  .close-modal {
    top: 20px;
    right: 20px;
    font-size: 50px;
  }
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.9rem;
  color: #666;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  height: 600px;
  background-image: url('assets/product_roasted_veg_1774436602900.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-item .icon {
  font-size: 2rem;
  color: var(--accent);
}

.highlight-item h4 {
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--primary);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

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

input, textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-soft);
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
}

.contact-info .info-item {
  margin-bottom: 30px;
}

.contact-info h4 {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: var(--accent);
}

.map-placeholder {
  height: 200px;
  background-color: #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 1px dashed #ccc;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  background-color: var(--bg-soft);
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { height: 400px; }
  .section-title h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; } /* Mobile menu would go here */
  .hero-content { text-align: center; }
  .hero { height: 80vh; }
  .highlights { grid-template-columns: 1fr; }
}

/* Global Map Section */
.map-section {
    padding: 30px 0;
    min-height: 400px;
    background: #0a0a0a;
    color: white;
    overflow: hidden;
}

.map-container {
    width: 100%;
    max-height: 400px;
    margin-top: 20px;
    position: relative;
    background: radial-gradient(circle at center, #1b4332 0%, #0a0a0a 70%);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.world-map-svg {
    width: 100%;
    height: 400px;
}

.base-map-img {
    opacity: 0.1;
    filter: invert(1) brightness(0.5) sepia(1) hue-rotate(100deg) saturate(2);
}

.continent {
    fill: #222;
    stroke: #333;
    stroke-width: 0.5;
}

.turkiye-shape {
    fill: #1b4332;
    stroke: #4ade80;
    stroke-width: 1;
    filter: url(#glow);
    animation: highlightTR 3s infinite alternate;
}

.origin-pulse {
    fill: #fbbf24;
    filter: drop-shadow(0 0 5px #fbbf24);
    animation: pulseOrigin 2s infinite;
}

@keyframes highlightTR {
    from { fill: #1b4332; stroke-opacity: 0.5; }
    to { fill: #2d6a4f; stroke-opacity: 1; }
}

.dest-pulse {
    fill: #fbbf24;
    opacity: 0;
    animation: fadeInDest 1s forwards 2s;
}

.export-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards infinite;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.map-label {
    fill: white;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 1000; opacity: 0; }
    30% { opacity: 1; }
    70% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -1000; opacity: 0; }
}

@keyframes pulseOrigin {
    0% { r: 4; opacity: 1; }
    50% { r: 8; opacity: 0.5; }
    100% { r: 4; opacity: 1; }
}

@keyframes fadeInDest {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

/* Gradients for SVG */
.world-map-svg::before {
    content: '';
    display: block;
}
.partner-section {
    min-height: 450px;
    height: auto;
    padding: 60px 0;
    position: relative;
    background-image: url('assets/sarvello_partner_v6.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 30, 15, 0.88); /* Darker Green Overlay for Banner feel */
    z-index: 1;
}

.partner-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.partner-section .section-title {
    margin-bottom: 40px;
}

.partner-section .section-title h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0px;
}

.partner-section .section-title h2::after {
    display: none; /* Cleaner look for banner */
}

.partner-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0 10px;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.partner-item p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .partner-bar {
        justify-content: center;
        gap: 30px;
    }
    .partner-item {
        flex: none;
        width: 45%;
    }
}

/* Packaging Section CSS */
.packaging-section {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.packaging-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: var(--font-main);
  color: var(--accent-light);
}

.packaging-section p {
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.packaging-icons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
  flex-wrap: wrap;
}

.pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.pack-item:hover {
  transform: translateY(-10px);
}

.pack-item svg {
  color: var(--accent-light);
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.25));
}

.pack-item span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* Parallax Section */
.parallax-section {
  height: 450px;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/sarvello_parallax_group.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 58, 36, 0.7); /* Deep primary green overlay */
}

.parallax-section .container-narrow {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
}

.parallax-section h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.parallax-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Background Animation Lines (Premium Effect) */
.bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; /* Above backgrounds, below most content if sections have z-index */
  display: flex;
  justify-content: space-around;
  padding: 0 5%;
}

.bg-lines .line {
  width: 1px;
  height: 100%;
  background: rgba(221, 161, 94, 0.05); /* Very subtle gold line */
  position: relative;
  overflow: hidden;
}

.bg-lines .line::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -1px;
  width: 2px;
  height: 30vh;
  background: linear-gradient(to bottom, transparent, var(--accent), white, transparent);
  opacity: 0;
  animation: raindrop 6s infinite ease-in;
}

/* Different delays for natural look */
.bg-lines .line:nth-child(1)::before { animation-delay: 0s; }
.bg-lines .line:nth-child(2)::before { animation-delay: 1.5s; }
.bg-lines .line:nth-child(3)::before { animation-delay: 3s; }
.bg-lines .line:nth-child(4)::before { animation-delay: 4.5s; }
.bg-lines .line:nth-child(5)::before { animation-delay: 2.5s; }
.bg-lines .line:nth-child(6)::before { animation-delay: 5.5s; }

@keyframes raindrop {
  0% {
    top: -20%;
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-fab img {
    width: 100%;
    height: 100%;
    border-radius: 14px; /* Matches the rounded square look of the official icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: block;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-fab:hover img {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    /* WhatsApp FAB */
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* ── Navbar ── */
    nav .container {
        padding: 10px 16px;
    }
    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 0.78rem;
    }
    .lang-switcher {
        margin-left: 8px;
    }

    /* ── Hero Slider ── */
    .slide-bg,
    #slide-1 .slide-bg,
    #slide-2 .slide-bg,
    #slide-sundried .slide-bg,
    #slide-3 .slide-bg {
        background-size: cover !important;
        background-position: center center !important;
    }

    .hero-content {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* ── Products Section ── */
    .filter-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 0 12px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .product-card {
        width: 100%;
    }

    /* ── Section Headings ── */
    .section-title {
        font-size: 2rem;
    }

    /* ── Parallax / Quote Sections ── */
    .parallax-section h2 {
        font-size: 2rem;
    }
    .parallax-section p {
        font-size: 1rem;
    }

    /* ── Packaging Section ── */
    .packaging-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ── Contact / Footer ── */
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
