/* ============================================
   SPARKLEPOP MAIN STYLES - REFRESHED
   Inspired by modern soda brand aesthetic
   ============================================ */

/* ========== GLOBAL RESET & VARIABLES ========== */
:root {
    --mint-green: #2D6A4F;
    --fresh-green: #40916C;
    --light-mint: #D8F3DC;
    --cream-bg: #F9F9F9;
    --white: #FFFFFF;
    --black: #1B1B1B;
    --dark-gray: #2D2D2D;
    --gray: #6C757D;
    --warm-orange: #E76F51;
    --soft-peach: #F4A261;
    --citrus: #F4D03F;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-soft: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-bg);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Canvas Background */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.site-wrapper {
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Tag */
.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--mint-green);
    font-weight: 600;
    background: var(--light-mint);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--black);
}

/* Responsive Section Header */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader-container {
    text-align: center;
    padding: 2rem;
}

.preloader-fruit {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: var(--mint-green);
    animation: bounceFruit 0.8s infinite alternate ease-in-out;
}

@keyframes bounceFruit {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.preloader-bubbles {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.preloader-bubbles span {
    width: 10px;
    height: 10px;
    background: var(--mint-green);
    border-radius: 50%;
    animation: bubblePop 1.2s infinite;
}

@keyframes bubblePop {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--mint-green);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.preloader-bar {
    width: 240px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 50px;
    margin: 0 auto 12px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--mint-green), var(--fresh-green));
    border-radius: 50px;
    transition: width 0.1s linear;
}

.preloader-percent {
    font-weight: 600;
    color: var(--gray);
}

@media (max-width: 480px) {
    .preloader-fruit {
        font-size: 2rem;
        gap: 1rem;
    }

    .preloader-bar {
        width: 180px;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--mint-green);
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo span {
    color: var(--warm-orange);
}

.logo i {
    font-size: 1.4rem;
    color: var(--citrus);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--black);
    transition: 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint-green);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mint-green);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.cart-icon,
.mobile-toggle {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    position: relative;
    cursor: pointer;
    color: var(--black);
    transition: transform 0.2s;
}

.cart-icon:hover,
.mobile-toggle:hover {
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--mint-green);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 2rem;
        display: block;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--mint-green);
    border: none;
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -8px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--fresh-green);
    box-shadow: 0 15px 25px -10px rgba(45, 106, 79, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mint-green);
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 500;
    color: var(--mint-green);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--mint-green);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-outline {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    padding: clamp(100px, 15vh, 160px) 0 clamp(50px, 8vh, 80px);
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--black);
}

.hero-title span {
    color: var(--mint-green);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
}

/* Hero Slideshow */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
    min-height: 480px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slideshow {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero-slide {
    position: absolute;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    visibility: visible;
    position: relative;
    z-index: 2;
}

.floating-can {
    position: relative;
    z-index: 10;
}

.floating-can img {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.12));
    animation: floatCan 3s infinite ease;
    transition: all 0.4s ease;
}

@keyframes floatCan {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Frame 15 */
.hero-image.frame-15 {
    position: relative;
}

.hero-image.frame-15 .floating-can img {
    border-radius: 80px 30px 80px 30px;
    transition: all 0.4s ease;
}

.hero-image.frame-15 .floating-can img:hover {
    border-radius: 30px 80px 30px 80px;
}

.hero-image.frame-15::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 4s infinite ease;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.7;
    }
}

/* Navigation Buttons */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mint-green);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 25;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.slide-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    background: var(--fresh-green);
}

.prev-slide {
    left: -20px;
}

.next-slide {
    right: -20px;
}

.slide-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 25;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--mint-green);
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .floating-can img {
        max-width: 320px;
    }

    .hero-image.frame-15::before {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .floating-can img {
        max-width: 260px;
    }

    .slide-nav {
        display: none;
    }

    .slide-dots {
        bottom: -30px;
    }

    .hero-image.frame-15::before {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .floating-can img {
        max-width: 220px;
    }

    .hero-image.frame-15::before {
        width: 240px;
        height: 240px;
    }

    .container {
        padding: 0 20px;
    }
}

/* ========== PARTNER SECTION - FULL WIDTH LOGO SLIDER ========== */
.partners-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Decorative background elements */
.partners-section::before {
    content: '🤝';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    bottom: -50px;
    left: -50px;
    pointer-events: none;
}

.partners-section::after {
    content: '⭐';
    position: absolute;
    font-size: 180px;
    opacity: 0.05;
    top: -30px;
    right: -30px;
    pointer-events: none;
}

/* Wave decoration at top */
.partners-section .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(45, 106, 79, 0.05) 20px,
            rgba(45, 106, 79, 0.05) 40px);
    pointer-events: none;
}

/* Wave decoration at bottom */
.partners-section .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(90deg,
            rgba(45, 106, 79, 0.05),
            rgba(45, 106, 79, 0.05) 20px,
            transparent 20px,
            transparent 40px);
    pointer-events: none;
}

.partners-section .section-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.partners-section .section-tag {
    background: linear-gradient(135deg, var(--white), var(--light-mint));
    border: 1px solid rgba(45, 106, 79, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.partners-section .section-header h2 {
    background: linear-gradient(135deg, var(--black) 0%, var(--mint-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Partner Swiper - Full Width */
.partners-swiper {
    padding: 20px 0 60px;
    overflow: visible;
    width: 100%;
    position: relative;
    z-index: 2;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

/* Card styling */
.partners-swiper .swiper-slide {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Card gradient border on hover */
.partners-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint-green), var(--citrus), var(--warm-orange));
    opacity: 0;
    transition: opacity 0.3s;
}

.partners-swiper .swiper-slide:hover::before {
    opacity: 1;
}

.partners-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -18px rgba(45, 106, 79, 0.3);
    background: var(--white);
    border-color: rgba(45, 106, 79, 0.1);
}

/* Partner Logo - Enhanced */
.partner-logo {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #E8F5E9 0%, #D8F3DC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.partner-logo img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: all 0.3s;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.partners-swiper .swiper-slide:hover .partner-logo {
    transform: scale(1.08);
    background: linear-gradient(135deg, #D8F3DC 0%, #C8E6D9 100%);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.15);
}

.partners-swiper .swiper-slide:hover .partner-logo img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 15px rgba(45, 106, 79, 0.2));
}

/* Partner Info */
.partner-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 6px 0;
    color: var(--black);
    transition: color 0.3s;
}

.partners-swiper .swiper-slide:hover h4 {
    color: var(--mint-green);
}

.partner-info p {
    font-size: 0.75rem;
    color: var(--gray);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Swiper Pagination */
.partners-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.partners-swiper .swiper-pagination-bullet {
    background: var(--mint-green);
    opacity: 0.3;
    transition: all 0.3s;
    width: 8px;
    height: 8px;
    margin: 0 5px;
}

.partners-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 10px;
    background: var(--mint-green);
}

/* Custom Navigation Buttons */
.partners-swiper .swiper-button-prev,
.partners-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.partners-section:hover .partners-swiper .swiper-button-prev,
.partners-section:hover .partners-swiper .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

.partners-swiper .swiper-button-prev::after,
.partners-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
    color: var(--mint-green);
}

.partners-swiper .swiper-button-prev:hover,
.partners-swiper .swiper-button-next:hover {
    background: var(--mint-green);
    transform: scale(1.05);
}

.partners-swiper .swiper-button-prev:hover::after,
.partners-swiper .swiper-button-next:hover::after {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .partner-logo {
        width: 115px;
        height: 115px;
    }

    .partner-logo img {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 992px) {
    .partners-section {
        padding: 60px 0;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }

    .partner-logo img {
        width: 65px;
        height: 65px;
    }

    .partner-info h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }

    .partner-logo {
        width: 85px;
        height: 85px;
    }

    .partner-logo img {
        width: 55px;
        height: 55px;
    }

    .partner-info h4 {
        font-size: 0.9rem;
    }

    .partner-info p {
        font-size: 0.65rem;
    }

    .partners-swiper .swiper-slide {
        padding: 25px 15px;
    }

    .partners-swiper .swiper-button-prev,
    .partners-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }

    .partner-logo {
        width: 75px;
        height: 75px;
    }

    .partner-logo img {
        width: 45px;
        height: 45px;
    }

    .partner-info h4 {
        font-size: 0.8rem;
    }

    .partner-info p {
        font-size: 0.6rem;
    }

    .partners-swiper .swiper-slide {
        padding: 20px 12px;
        gap: 12px;
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 200px 0 90px;
    background: var(--white);
    position: relative;
    -webkit-clip-path: url(#wave-top);
    clip-path: url(#wave-top);
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s;
}

.about-image img:hover {
    transform: scale(1.01);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--black);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about {
        padding: 200px 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 400px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 270px 0;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 60px 0 100px;
    background: var(--cream-bg);
    -webkit-clip-path: url(#wave-bottom);
    clip-path: url(#wave-bottom);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    padding: 30px 30px 0 30px;
    background: var(--light-mint);
    border-radius: 24px 24px 0 0;
}

.product-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: all 0.3s;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--warm-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-info {
    padding: 20px 24px 28px;
    background: var(--white);
}

.product-card h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 6px 0;
    color: var(--black);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.price {
    font-weight: 700;
    color: var(--mint-green);
    font-size: 1.5rem;
    margin: 12px 0;
}

.add-to-cart {
    background: var(--mint-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: var(--fresh-green);
    transform: translateY(-2px);
}

.product-rating {
    margin: 8px 0;
    color: var(--citrus);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .products {
        padding: 40px 0 150px;
    }

    .product-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-image-wrapper {
        padding: 20px 15px 0;
    }

    .product-card img {
        max-width: 140px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .add-to-cart {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .product-desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 40px 0 210px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        max-width: 160px;
    }
}

/* ========== BEST SELLER SECTION - PREMIUM ENHANCED ========== */
.best-seller {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.best-seller::before {
    content: '✦';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 120px;
    color: var(--mint-green);
    opacity: 0.03;
    font-family: monospace;
    pointer-events: none;
}

.best-seller::after {
    content: '✨';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 100px;
    color: var(--citrus);
    opacity: 0.04;
    pointer-events: none;
}

.best-seller .section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--mint-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.best-seller .section-header p {
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Swiper container enhancement */
.bestseller-swiper {
    padding: 40px 0 70px;
    overflow: visible;
}

/* Card enhancement */
.bestseller-swiper .swiper-slide {
    background: var(--white);
    border-radius: 32px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bestseller-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--mint-green), var(--fresh-green), var(--citrus), var(--warm-orange));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
}

.bestseller-swiper .swiper-slide:hover::before {
    opacity: 1;
}

.bestseller-swiper .swiper-slide:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 55px -20px rgba(45, 106, 79, 0.35);
    border-color: rgba(45, 106, 79, 0.1);
}

/* Badge - Premium */
.best-seller-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--citrus), var(--warm-orange));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(2px);
}

.best-seller-badge i {
    font-size: 0.75rem;
}

/* Image Container - Premium */
.bestseller-img-wrapper {
    position: relative;
    background: linear-gradient(135deg, #E8F5E9 0%, #D8F3DC 100%);
    padding: 45px 25px 35px;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative circles */
.bestseller-img-wrapper .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.bestseller-img-wrapper .deco-circle-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
}

.bestseller-img-wrapper .deco-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 10px;
    left: -20px;
}

.bestseller-img-wrapper .deco-circle-3 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 10%;
}

.bestseller-img-wrapper img {
    width: 220px;
    height: 220px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    position: relative;
    z-index: 10;
}

.bestseller-swiper .swiper-slide:hover img {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 30px 35px rgba(45, 106, 79, 0.3));
}

/* Sparkle effect on hover */
.bestseller-img-wrapper::after {
    content: '✨';
    position: absolute;
    font-size: 30px;
    top: 20%;
    right: 15%;
    opacity: 0;
    transition: all 0.4s;
    pointer-events: none;
    z-index: 15;
}

.bestseller-swiper .swiper-slide:hover .bestseller-img-wrapper::after {
    opacity: 0.8;
    transform: translate(10px, -10px);
}

/* Content - Premium */
.bestseller-content {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 0 0 32px 32px;
}

.bestseller-content h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    margin: 0 0 8px 0;
    color: var(--black);
    transition: all 0.3s;
    letter-spacing: -0.3px;
}

.bestseller-swiper .swiper-slide:hover h3 {
    color: var(--mint-green);
    transform: translateY(-2px);
}

/* Rating Stars - Premium */
.bestseller-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 12px 0;
}

.bestseller-rating i {
    font-size: 0.9rem;
    color: var(--citrus);
    transition: all 0.2s;
}

.bestseller-rating i.far {
    color: #e0e0e0;
}

.bestseller-swiper .swiper-slide:hover .bestseller-rating i {
    transform: scale(1.05);
}

/* Price - Premium */
.bestseller-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mint-green);
    letter-spacing: -1px;
    position: relative;
}

.current-price::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--mint-green), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.bestseller-swiper .swiper-slide:hover .current-price::after {
    transform: scaleX(1);
}

.old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* Sold Count - Premium */
.sold-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-mint);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mint-green);
    margin-top: 12px;
    align-self: center;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.sold-count i {
    font-size: 0.8rem;
    transition: all 0.3s;
}

.bestseller-swiper .swiper-slide:hover .sold-count {
    background: var(--mint-green);
    color: white;
    transform: translateY(-2px);
}

.bestseller-swiper .swiper-slide:hover .sold-count i {
    color: white;
    animation: fireFlicker 0.5s ease infinite;
}

@keyframes fireFlicker {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Quick Add Button - Premium */
.quick-add {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--mint-green);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    border: none;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(45, 106, 79, 0.25);
    z-index: 20;
}

.bestseller-swiper .swiper-slide:hover .quick-add {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.quick-add:hover {
    background: var(--fresh-green);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.35);
}

/* Swiper Navigation Icons (Optional) */
.bestseller-swiper .swiper-button-prev,
.bestseller-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.bestseller-swiper .swiper-button-prev:hover,
.bestseller-swiper .swiper-button-next:hover {
    background: var(--mint-green);
    transform: scale(1.05);
}

.bestseller-swiper .swiper-button-prev::after,
.bestseller-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--mint-green);
}

.bestseller-swiper .swiper-button-prev:hover::after,
.bestseller-swiper .swiper-button-next:hover::after {
    color: white;
}

/* Swiper Pagination - Premium */
.bestseller-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.bestseller-swiper .swiper-pagination-bullet {
    background: var(--mint-green);
    opacity: 0.2;
    transition: all 0.3s;
    width: 8px;
    height: 8px;
    margin: 0 6px;
}

.bestseller-swiper .swiper-pagination-bullet:hover {
    opacity: 0.5;
    transform: scale(1.2);
}

.bestseller-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 10px;
    background: var(--mint-green);
}

/* Responsive */
@media (max-width: 1200px) {
    .bestseller-img-wrapper {
        min-height: 270px;
    }

    .bestseller-img-wrapper img {
        width: 190px;
        height: 190px;
    }

    .current-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .best-seller {
        padding: 70px 0;
    }

    .best-seller .section-header h2 {
        font-size: 2.5rem;
    }

    .bestseller-img-wrapper {
        min-height: 240px;
        padding: 35px 20px 25px;
    }

    .bestseller-img-wrapper img {
        width: 170px;
        height: 170px;
    }

    .current-price {
        font-size: 1.6rem;
    }

    .quick-add {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        bottom: 22px;
        right: 22px;
    }

    .bestseller-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .best-seller {
        padding: 60px 0;
    }

    .best-seller .section-header h2 {
        font-size: 2rem;
    }

    .best-seller .section-header p {
        font-size: 0.85rem;
    }

    .bestseller-img-wrapper {
        min-height: 200px;
        padding: 25px 15px 20px;
    }

    .bestseller-img-wrapper img {
        width: 140px;
        height: 140px;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .quick-add {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 18px;
        right: 18px;
    }

    .best-seller-badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        top: 12px;
        left: 12px;
    }

    .bestseller-content h3 {
        font-size: 1.1rem;
    }

    .bestseller-content {
        padding: 20px 16px 24px;
    }

    .bestseller-rating i {
        font-size: 0.7rem;
    }

    .sold-count {
        font-size: 0.6rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .best-seller {
        padding: 50px 0;
    }

    .best-seller .section-header h2 {
        font-size: 1.8rem;
    }

    .bestseller-img-wrapper {
        min-height: 170px;
    }

    .bestseller-img-wrapper img {
        width: 115px;
        height: 115px;
    }

    .bestseller-content {
        padding: 16px 12px 20px;
    }

    .current-price {
        font-size: 1.3rem;
    }

    .quick-add {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        bottom: 14px;
        right: 14px;
    }

    .bestseller-content h3 {
        font-size: 1rem;
    }

    .sold-count {
        font-size: 0.55rem;
        padding: 4px 10px;
    }
}

/* ========== NUTRITION SECTION - RESPONSIVE ========== */
.nutrition-section {
    padding: 210px 0;
    background: var(--white);
    -webkit-clip-path: url(#wave-top);
    clip-path: url(#wave-top);
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.nutrition-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.nutrition-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.nutrition-icon {
    width: 70px;
    height: 70px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.nutrition-icon i {
    font-size: 2rem;
    color: var(--mint-green);
}

.nutrition-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.nutrition-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.nutrition-badge {
    display: inline-block;
    background: var(--light-mint);
    color: var(--mint-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Nutrition Responsive */
@media (max-width: 992px) {
    .nutrition-section {
        padding: 200px 0;
    }

    .nutrition-grid {
        gap: 1.5rem;
    }

    .nutrition-card {
        padding: 1.5rem;
    }

    .nutrition-icon {
        width: 60px;
        height: 60px;
    }

    .nutrition-icon i {
        font-size: 1.6rem;
    }

    .nutrition-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nutrition-section {
        padding: 250px 0;
    }

    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nutrition-card {
        padding: 1.2rem;
    }

    .nutrition-icon {
        width: 50px;
        height: 50px;
    }

    .nutrition-icon i {
        font-size: 1.3rem;
    }

    .nutrition-card h3 {
        font-size: 1rem;
    }

    .nutrition-card p {
        font-size: 0.8rem;
    }

    .nutrition-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .nutrition-section {
        padding: 270px 0;
    }

    .nutrition-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nutrition-card {
        padding: 1.2rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .nutrition-icon {
        margin: 0;
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .nutrition-card h3 {
        margin-bottom: 0.2rem;
    }

    .nutrition-badge {
        margin-top: 0.3rem;
    }
}

/* ========== SUBSCRIPTION SECTION - MODERN MINIMALIST ========== */
.subscription-section {
    padding: 60px 0 110px;
    background: var(--cream-bg);
    position: relative;
    -webkit-clip-path: url(#wave-bottom);
    clip-path: url(#wave-bottom);
}

/* Toggle Switch */
.subscription-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-option {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-option.active {
    color: var(--mint-green);
}

.save-badge {
    background: var(--citrus);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    margin-left: 6px;
    font-weight: 600;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: #e0e0e0;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--mint-green);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

/* Subscription Plans Grid */
.subscription-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Plan Card */
.plan {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--mint-green);
}

/* Popular Plan */
.plan.popular {
    border: 2px solid var(--mint-green);
    background: linear-gradient(135deg, var(--white), var(--light-mint));
    transform: scale(1.02);
}

.plan.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint-green);
    color: white;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Plan Icon */
.plan-icon {
    width: 60px;
    height: 60px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.plan-icon i {
    font-size: 1.8rem;
    color: var(--mint-green);
}

.plan h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.plan-description {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Plan Price */
.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--mint-green);
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mint-green);
}

.plan-price .period {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--gray);
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li i {
    color: var(--mint-green);
    font-size: 0.8rem;
    width: 18px;
}

/* Buttons */
.btn-plan {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: 2px solid var(--mint-green);
    color: var(--mint-green);
}

.btn-plan.btn-primary {
    background: var(--mint-green);
    border: none;
    color: white;
}

.btn-plan:hover {
    transform: translateY(-2px);
}

.btn-plan.btn-primary:hover {
    background: var(--fresh-green);
}

.btn-plan:not(.btn-primary):hover {
    background: var(--mint-green);
    color: white;
}

/* Savings Badge */
.savings-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--citrus);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Guarantee Section */
.subscription-guarantee {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.guarantee-item i {
    font-size: 1rem;
    color: var(--mint-green);
}

/* Responsive */
@media (max-width: 992px) {
    .subscription-section {
        padding: 40px 0 150px;
    }

    .subscription-plans {
        gap: 1.5rem;
    }

    .plan {
        padding: 1.5rem;
    }

    .plan-price .price {
        font-size: 2rem;
    }

    .subscription-guarantee {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .subscription-section {
        padding: 40px 0 210px;
    }

    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan.popular {
        transform: scale(1);
        order: -1;
    }

    .plan.popular:hover {
        transform: translateY(-8px);
    }

    .subscription-toggle {
        margin-bottom: 2rem;
    }

    .subscription-guarantee {
        gap: 1.5rem;
    }

    .guarantee-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .subscription-section {
        padding: 40px 0 210px;
    }

    .subscription-toggle {
        gap: 0.8rem;
    }

    .toggle-option {
        font-size: 0.8rem;
    }

    .plan {
        padding: 1.2rem;
    }

    .plan-icon {
        width: 50px;
        height: 50px;
    }

    .plan-icon i {
        font-size: 1.4rem;
    }

    .plan h3 {
        font-size: 1.2rem;
    }

    .plan-price .price {
        font-size: 1.8rem;
    }

    .subscription-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* ========== FAQ SECTION - RESPONSIVE ========== */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream-bg);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(45, 106, 79, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--mint-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Responsive */
@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }

    .faq-question i {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 0.9rem 1rem;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.8rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* ========== SUSTAINABILITY SECTION - RESPONSIVE ========== */
.sustainability-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-mint), var(--cream-bg));
    -webkit-clip-path: url(#wave-top);
    clip-path: url(#wave-top);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.sustainability-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sustainability-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mint-green);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.sustainability-image {
    position: relative;
}

.sustainability-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.eco-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.eco-badge i {
    font-size: 1.5rem;
    color: var(--mint-green);
}

/* Sustainability Responsive */
@media (max-width: 992px) {
    .sustainability-section {
        padding: 60px 0;
    }

    .sustainability-grid {
        gap: 3rem;
    }

    .sustainability-content h2 {
        font-size: 2rem;
    }

    .sustainability-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sustainability-section {
        padding: 270px 0;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sustainability-content h2 {
        font-size: 1.8rem;
    }

    .sustainability-content p {
        font-size: 0.9rem;
    }

    .sustainability-stats {
        justify-content: center;
    }

    .sustainability-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .eco-badge {
        bottom: -15px;
        right: -10px;
        padding: 0.8rem;
    }

    .eco-badge i {
        font-size: 1.2rem;
    }

    .eco-badge span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .sustainability-section {
        padding: 270px 0;
    }

    .sustainability-content h2 {
        font-size: 1.5rem;
    }

    .sustainability-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat {
        text-align: center;
        width: 100%;
    }

    .stat-number {
        font-size: 1.3rem;
        display: inline-block;
        margin-right: 0.5rem;
    }

    .stat-label {
        display: inline-block;
        font-size: 0.75rem;
    }

    .eco-badge {
        position: relative;
        margin-top: 1rem;
        display: inline-flex;
        bottom: 0;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
    }
}

/* ========== GALLERY SECTION - PINTEREST STYLE MASONRY ========== */
.gallery-section {
    padding: 80px 0;
    background: var(--cream-bg);
    position: relative;
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray);
    margin-top: -15px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.gallery-grid {
    position: relative;
    width: 100%;
    margin: 0 auto;
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    margin: 0 0 20px;
    break-inside: avoid;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
}

.gallery-badge i {
    font-size: 0.65rem;
    color: #ff6b6b;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-info i {
    margin-right: 5px;
}

.gallery-info i.fa-heart {
    color: #ff6b6b;
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    background: var(--mint-green);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: var(--fresh-green);
    transform: translateY(-2px);
}

/* Hidden gallery items */
.hidden-gallery-item {
    display: none;
}

/* Show when loaded */
.hidden-gallery-item.show {
    display: block;
}

/* Gallery Masonry Responsive - 2 baris di mobile tetap masonry */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 16px;
    }

    .gallery-item {
        margin: 0 0 16px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 12px;
    }

    .gallery-item {
        margin: 0 0 12px;
        border-radius: 16px;
    }

    .gallery-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }

    .gallery-info {
        font-size: 0.7rem;
        gap: 10px;
    }

    .gallery-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery-item {
        margin: 0 0 10px;
        border-radius: 14px;
    }

    .gallery-overlay {
        padding: 12px 10px 10px;
    }

    .gallery-info {
        font-size: 0.65rem;
        gap: 8px;
    }

    .btn-load-more {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* Gallery Modal Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS - WITH AVATAR ========== */
.testimonials {
    background: var(--light-mint);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    -webkit-clip-path: url(#wave-bottom);
    clip-path: url(#wave-bottom);
}

.testimonials::before {
    content: '“”';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 20px;
    left: 20px;
    font-family: serif;
    pointer-events: none;
}

.testimonials::after {
    content: '⭐';
    position: absolute;
    font-size: 150px;
    opacity: 0.03;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
}

.testimonial-swiper {
    padding: 30px 0 50px;
    overflow: hidden;
}

.testimonial-swiper .swiper-slide {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.testimonial-swiper .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Avatar Styling */
.testimonial-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--mint-green);
    padding: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.testimonial-swiper .swiper-slide:hover .testimonial-avatar img {
    transform: scale(1.05);
    border-color: var(--citrus);
}

.quote-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--mint-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.quote-icon i {
    font-size: 0.7rem;
}

/* Stars */
.stars {
    color: var(--citrus);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 3px;
}

/* Testimonial Text */
.testimonial-swiper .swiper-slide p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Author Name */
.testimonial-swiper .swiper-slide h4 {
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--mint-green);
    font-size: 1rem;
}

/* Location */
.testimonial-swiper .swiper-slide small {
    color: var(--gray);
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.testimonial-swiper .swiper-slide small i {
    font-size: 0.6rem;
}

/* Swiper Pagination */
.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--mint-green);
    opacity: 0.3;
    transition: all 0.3s;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .quote-icon {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-swiper .swiper-slide {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .quote-icon {
        width: 22px;
        height: 22px;
        bottom: -3px;
        right: -3px;
    }

    .quote-icon i {
        font-size: 0.55rem;
    }

    .stars {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-swiper .swiper-slide p {
        font-size: 0.85rem;
    }

    .testimonial-swiper .swiper-slide h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-swiper .swiper-slide {
        padding: 1.2rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .testimonial-avatar img {
        border-width: 2px;
    }

    .quote-icon {
        width: 18px;
        height: 18px;
    }

    .quote-icon i {
        font-size: 0.45rem;
    }

    .testimonial-swiper .swiper-slide p {
        font-size: 0.8rem;
    }

    .testimonial-swiper .swiper-slide h4 {
        font-size: 0.85rem;
    }

    .stars {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* ========== CONTACT SECTION - ENHANCED ========== */
.contact-section {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.contact-section::before {
    content: '💬';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: 10%;
    left: -50px;
    pointer-events: none;
    transform: rotate(-15deg);
}

.contact-section::after {
    content: '📧';
    position: absolute;
    font-size: 180px;
    opacity: 0.03;
    bottom: 20%;
    right: -50px;
    pointer-events: none;
    transform: rotate(10deg);
}

/* Section header enhancement */
.contact-section .section-header {
    position: relative;
    margin-bottom: 3rem;
}

.contact-section .section-tag {
    background: linear-gradient(135deg, var(--light-mint), var(--white));
    border: 1px solid rgba(45, 106, 79, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.contact-section .section-header h2 {
    background: linear-gradient(135deg, var(--black) 0%, var(--mint-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Contact Grid - Enhanced */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Contact Info Card - Premium */
.contact-info {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 106, 79, 0.08);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(45, 106, 79, 0.15);
}

/* Decorative line on contact info */
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--citrus), var(--warm-orange));
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info:hover::before {
    opacity: 1;
}

/* Contact Items - Enhanced */
.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 1rem;
}

.contact-item:hover {
    background: rgba(45, 106, 79, 0.05);
    transform: translateX(8px);
}

.contact-item i {
    font-size: 1.6rem;
    color: var(--mint-green);
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-mint);
    border-radius: 50%;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--mint-green);
    color: white;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Form - Premium */
.contact-form {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 106, 79, 0.08);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(45, 106, 79, 0.15);
}

.contact-form::before {
    content: '✉️';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 120px;
    opacity: 0.03;
    pointer-events: none;
}

/* Form Fields - Enhanced */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 1.2rem;
    border: 2px solid #f0f0f0;
    border-radius: 60px;
    font-family: var(--font-body);
    background: var(--cream-bg);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--mint-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.contact-form textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 120px;
}

/* Input icons */
.contact-form .input-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
}

.contact-form .input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form .input-wrapper input {
    padding-left: 45px;
}

.contact-form .input-wrapper input:focus+i {
    color: var(--mint-green);
}

/* Send Button - Enhanced */
.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--mint-green), var(--fresh-green));
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
}

.contact-form .btn-primary i {
    transition: transform 0.3s;
}

.contact-form .btn-primary:hover i {
    transform: translateX(5px);
}

/* Map - Enhanced */
.fullwidth-map {
    width: 100%;
    height: 400px;
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 2rem 2rem 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

/* Map custom styling */
.custom-map-icon {
    background: transparent;
}

.custom-map-icon i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Leaflet map customization */
.leaflet-popup-content-wrapper {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: var(--font-body);
}

.leaflet-popup-content b {
    color: var(--mint-green);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0 0;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.8rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        padding: 0.3rem;
    }

    .contact-item i {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .fullwidth-map {
        height: 320px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 0;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .contact-item {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.75rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .contact-form .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .fullwidth-map {
        height: 280px;
        border-radius: 1.5rem 1.5rem 0 0;
    }
}

/* ========== FOOTER - ENHANCED MATCHING THEME ========== */
.footer {
    background: linear-gradient(135deg, #1a2e28 0%, #0d1f1c 100%);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(69, 158, 100, 0.2);
}

/* Decorative top border with brand color */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--citrus), var(--warm-orange), var(--mint-green));
    background-size: 200%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

/* Subtle leaf pattern decoration */
.footer::after {
    content: '🌿';
    position: absolute;
    font-size: 180px;
    opacity: 0.03;
    bottom: -30px;
    right: -30px;
    pointer-events: none;
    transform: rotate(-15deg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand .logo {
    color: var(--white);
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--mint-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand .logo:hover {
    color: var(--citrus);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.footer-brand p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 250px;
    line-height: 1.6;
}

/* Brand decorative line */
.footer-brand::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--mint-green);
    margin-top: 1rem;
    border-radius: 2px;
}

/* Social Icons - Enhanced */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(69, 158, 100, 0.15);
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid rgba(69, 158, 100, 0.3);
}

.social-icons a:hover {
    color: var(--white);
    background: var(--mint-green);
    transform: translateY(-3px);
    border-color: var(--mint-green);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links h4 {
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--mint-green);
    transition: width 0.3s;
    border-radius: 2px;
}

.footer-links div:hover h4::after {
    width: 50px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.7rem;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--citrus);
    transform: translateX(5px);
}

/* Newsletter Section */
.footer-newsletter {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(69, 158, 100, 0.2);
}

.footer-newsletter h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-newsletter h4 i {
    color: var(--citrus);
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 380px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(69, 158, 100, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--mint-green);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
    background: linear-gradient(135deg, var(--mint-green), var(--fresh-green));
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(69, 158, 100, 0.15);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.footer-bottom .heart {
    color: var(--warm-orange);
    display: inline-block;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Footer brand icon */
.footer-brand .sparkle-icon {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.2rem;
    color: var(--citrus);
    animation: sparkle 1s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateY(-2px) translateX(0);
    }

    .footer-newsletter .newsletter-form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-newsletter .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
        max-width: 300px;
    }

    .footer-newsletter input {
        text-align: center;
    }

    .footer-newsletter button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand .logo {
        font-size: 1.5rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.65rem;
    }
}

/* ========== SWIPER PAGINATION ========== */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: var(--mint-green);
    opacity: 0.3;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: var(--black);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    max-width: 350px;
    border-left: 4px solid var(--mint-green);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification i {
    font-size: 1.2rem;
}

.toast-notification.success {
    border-left-color: var(--mint-green);
}

.toast-notification.success i {
    color: var(--mint-green);
}

.toast-notification.error {
    border-left-color: var(--warm-orange);
}

.toast-notification.error i {
    color: var(--warm-orange);
}

.toast-notification.info {
    border-left-color: var(--citrus);
}

.toast-notification.info i {
    color: var(--citrus);
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 14px 20px;
        font-size: 0.85rem;
    }
}

/* ========== CART DRAWER SLIDER ========== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: var(--white);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--mint-green);
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: #f5f5f5;
    color: var(--black);
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.cart-empty i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn-shop-now {
    background: var(--mint-green);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shop-now:hover {
    background: var(--fresh-green);
    transform: translateY(-2px);
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light-mint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--black);
}

.cart-item-price {
    color: var(--mint-green);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--mint-green);
    color: white;
}

.item-quantity {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.item-total {
    font-weight: 700;
    color: var(--black);
    margin-top: 8px;
    font-size: 0.9rem;
}

.remove-item {
    position: absolute;
    top: 15px;
    right: 0;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.remove-item:hover {
    color: var(--warm-orange);
    transform: scale(1.1);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cart-total span:first-child {
    font-weight: 600;
    color: var(--black);
}

.cart-total span:last-child {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--mint-green);
}

.btn-checkout {
    background: linear-gradient(135deg, var(--mint-green), var(--fresh-green));
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

.btn-continue-shopping {
    background: none;
    border: none;
    color: var(--gray);
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-continue-shopping:hover {
    color: var(--mint-green);
}

/* Cart Drawer Responsive */
@media (max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-image img {
        width: 50px;
        height: 50px;
    }

    .cart-header {
        padding: 15px 20px;
    }

    .cart-header h3 {
        font-size: 1.1rem;
    }

    .cart-items-container {
        padding: 15px;
    }

    .cart-item {
        gap: 12px;
        padding: 12px 0;
    }

    .cart-item-details h4 {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 0.8rem;
    }

    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .item-quantity {
        min-width: 20px;
    }

    .item-total {
        font-size: 0.8rem;
    }

    .cart-footer {
        padding: 15px 20px;
    }

    .cart-total span:last-child {
        font-size: 1.1rem;
    }

    .btn-checkout {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}