/* ============================================
   Nutrimonk - Premium Monk Fruit Sweetener
   Custom CSS Styles
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary-color: #6D1F32;
    --secondary-color: #C9A227;
    --background-color: #FAF8F3;
    --text-color: #2B2B2B;
    --accent-color: #E5D3A1;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 10px rgba(109, 31, 50, 0.1);
    --shadow-md: 0 5px 25px rgba(109, 31, 50, 0.15);
    --shadow-lg: 0 10px 50px rgba(109, 31, 50, 0.2);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-burgundy {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B2D42 100%);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-burgundy {
    color: var(--primary-color);
}

.text-gold {
    color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

.text-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Loading Animation
   ============================================ */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition-fast);
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: transparent;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    background: var(--secondary-color);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.nav-icon-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    font-size: 11px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.hero-badges .badge i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Hide slider nav on mobile */
@media (max-width: 991px) {
    .slider-nav {
        display: none;
    }
}

/* Desktop: Larger buttons on sides */
@media (min-width: 992px) {
    .slider-nav {
        padding: 0 60px;
    }

    .slider-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/* Slider Dots */
.hero-slider .owl-dots {
    position: absolute !important;
    bottom: 30px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 12px;
    z-index: 10;
    visibility: visible !important;
}

.hero-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
    display: block !important;
    visibility: visible !important;
}

.hero-slider .owl-dots .owl-dot:hover {
    background: var(--white);
}

.hero-slider .owl-dots .owl-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-tag.light {
    color: var(--white);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Monk Fruit Section
   ============================================ */
.monk-fruit-content {
    padding-right: 30px;
}

.monk-fruit-intro p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
}

.monk-fruit-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.monk-fruit-visual {
    position: relative;
}

.visual-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-main img {
    width: 100%;
    transition: var(--transition-slow);
}

.visual-main:hover img {
    transform: scale(1.05);
}

.visual-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.visual-badge {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--primary-color);
}

.visual-badge i {
    color: var(--secondary-color);
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    width: 320px;
    position: relative;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

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

.comparison-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.comparison-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--text-color);
}

.card-icon.gold {
    background: linear-gradient(135deg, var(--secondary-color), #D4AF37);
    color: var(--white);
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features li i {
    font-size: 18px;
}

.card-features li.positive i {
    color: var(--success-color);
}

.card-features li.negative i {
    color: #e74c3c;
}

.card-features li.neutral i {
    color: #f39c12;
}

.card-rating {
    text-align: center;
    color: var(--secondary-color);
    font-size: 18px;
}

.card-rating i {
    margin: 0 3px;
}

/* ============================================
   Products Section
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-fast);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.new {
    background: var(--secondary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 31, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-view-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-name {
    font-size: 1.2rem;
    margin: 10px 0;
    color: var(--text-color);
}

.product-rating {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.product-rating span {
    color: #999;
    margin-left: 5px;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    margin-top: auto;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Lifestyle Section
   ============================================ */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.lifestyle-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.lifestyle-image {
    width: 100%;
    height: 100%;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lifestyle-item:hover .lifestyle-image img {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(109, 31, 50, 0.9), transparent);
    color: var(--white);
    transition: var(--transition-fast);
}

.lifestyle-item:hover .lifestyle-overlay {
    padding-bottom: 40px;
}

.lifestyle-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.lifestyle-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.lifestyle-item:hover .lifestyle-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Recipes Section
   ============================================ */
.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

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

.recipe-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.recipe-time {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.recipe-content {
    padding: 25px;
}

.recipe-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 600;
}

.recipe-content h4 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: var(--text-color);
}

.recipe-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.recipe-meta span {
    font-size: 13px;
    color: #888;
}

.recipe-meta span i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.recipe-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.recipe-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--secondary-color);
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.certification-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.certification-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}

.certification-item h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.certification-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-logo-item {
    opacity: 0.7;
    transition: var(--transition-fast);
}

.cert-logo-item:hover {
    opacity: 1;
}

/* ============================================
   FAQ Section
   ============================================ */
.accordion-item {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    background: var(--white);
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.accordion-button::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4A1424 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-primary {
    padding: 15px 25px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ============================================
   Quick View Modal
   ============================================ */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    opacity: 1;
    transition: var(--transition-fast);
}

.btn-close:hover {
    background: var(--secondary-color);
    opacity: 1;
}

.quick-view-image {
    padding: 30px;
    background: var(--light-gray);
}

.quick-view-image img {
    border-radius: 15px;
}

.quick-view-content {
    padding: 30px;
}

.quick-view-content .product-category {
    display: block;
    margin-bottom: 10px;
}

.quick-view-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.quick-view-content .product-rating {
    margin-bottom: 15px;
}

.quick-view-content .product-price {
    margin-bottom: 20px;
}

.quick-view-content > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.product-features span {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.product-features i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-color);
}

.quantity-selector input {
    width: 80px;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    outline: none;
    transition: var(--transition-fast);
}

.quantity-selector input:focus {
    border-color: var(--primary-color);
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .comparison-card {
        width: 280px;
        padding: 30px;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-slide {
        padding: 100px 0 60px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-cards {
        flex-direction: column;
        align-items: center;
    }

    .comparison-card.featured {
        transform: scale(1);
    }

    .comparison-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-image::before {
        width: 250px;
        height: 250px;
    }

    .monk-fruit-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-item {
        height: 200px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .cert-logos {
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .slider-nav {
        bottom: 30px;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-links,
    .footer-newsletter {
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .payment-methods {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .brand-text {
        font-size: 20px;
    }

    .comparison-card {
        width: 100%;
        padding: 25px;
    }

    .benefit-card {
        padding: 30px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .accordion-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .quick-view-content {
        padding: 20px;
    }

    .quick-view-content h3 {
        font-size: 1.4rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   Navbar Toggler Customization
   ============================================ */
.navbar-toggler {
    border: none;
    padding: 10px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(109, 31, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Owl Carousel Customization
   ============================================ */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-slider .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: var(--transition-fast);
}

.hero-slider .owl-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.testimonial-slider .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-slider .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    transition: var(--transition-fast);
}

.testimonial-slider .owl-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero-slider .owl-nav,
.testimonial-slider .owl-nav {
    display: none;
}

/* ============================================
   Smooth Scroll
   ============================================ */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}