:root {
    /* Color Palette */
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --accent: #D4A574;
    --accent-dark: #B8885F;
    --secondary: #CD853F;
    
    /* Neutral Colors */
    --dark: #1A1A1A;
    --gray-dark: #4A4A4A;
    --gray: #6B6B6B;
    --gray-light: #ADADAD;
    --light: #F5F5F5;
    --white: #FFFFFF;
    
    /* Background Colors */
    --bg-cream: #FAF8F5;
    --bg-beige: #F5EFE7;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-cart {
    position: relative;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(160, 82, 45, 0.75) 50%, rgba(205, 133, 63, 0.65) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.badge-custom {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 165, 116, 0.3);
    border: 1px solid rgba(212, 165, 116, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #F4E4C1;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #F4E4C1 0%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 600px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-primary-custom {
    background: #D4A574;
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-primary-custom:hover {
    background: #B8885F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    color: var(--dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #D4A574;
    color: #D4A574;
    transform: translateY(-3px);
}

/* Hero Product Circle */
.hero-product-circle {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-circle-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(212, 165, 116, 0.5);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.product-circle-ring::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-reverse 30s linear infinite;
}

/* Swiper Container */
.heroSwiper {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.heroSwiper .swiper-wrapper {
    align-items: center;
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-circle-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-circle-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(139, 69, 19, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    z-index: 10;
}

.product-circle-label h4 {
    font-size: 1.25rem;
    margin: 0 0 5px 0;
    color: #D4A574;
}

.product-circle-label p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--white);
}

/* Swiper Navigation Arrows */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.5);
    color: var(--white);
    transition: var(--transition);
}

.heroSwiper .swiper-button-prev:after,
.heroSwiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: rgba(212, 165, 116, 0.6);
    transform: scale(1.1);
    border-color: #D4A574;
}

.heroSwiper .swiper-button-prev {
    left: -25px;
}

.heroSwiper .swiper-button-next {
    right: -25px;
}

.heroSwiper .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Swiper Pagination Dots */
.heroSwiper .swiper-pagination {
    bottom: -50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: rgba(212, 165, 116, 0.6);
    transform: scale(1.2);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #D4A574;
    width: 35px;
    border-radius: 6px;
    border-color: rgba(212, 165, 116, 0.5);
}

/* Slide Counter Indicator */
.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 69, 19, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-counter .current {
    color: #D4A574;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.slide-counter .separator {
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
}

.slide-counter .total {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.floating-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.card-overlay p {
    font-size: 1rem;
    color: var(--accent);
    margin: 0;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: 5%;
    animation-delay: 1s;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Section Styling */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    background: var(--bg-cream);
    padding: 6rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.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-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.product-tag.rice {
    background: linear-gradient(135deg, #D4A574, #E5B886);
}

.product-tag.millet {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.btn-add-cart {
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: scale(0.8);
}

.product-card:hover .btn-add-cart {
    transform: scale(1);
}

.btn-add-cart:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.product-sizes {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.product-rating {
    color: #FFA500;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--gray-light);
    margin-left: 0.5rem;
}

.btn-view-all {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-view-all:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features-section {
    background: var(--bg-beige);
    padding: 6rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 900;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent);
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand .brand-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-tagline {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-contact ul li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .floating-card {
        width: 220px;
        height: 260px;
    }
    
    .circle-1, .circle-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-brand .brand-name {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 60px;
    }
    
    .floating-card {
        width: 180px;
        height: 220px;
    }
    
    .product-image {
        height: 220px;
    }
}

/* Product Detail Modal */
.product-modal .modal-content {
    border-radius: 30px;
    overflow: hidden;
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-close-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.product-detail-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.product-tag-detail {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

.product-detail-content {
    padding: 3rem;
    height: 600px;
    overflow-y: auto;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-detail-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefits-title,
.size-title,
.quantity-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-badge i {
    color: var(--accent);
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-option {
    flex: 1;
    padding: 1.25rem;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.size-option:hover {
    border-color: var(--accent);
    background: rgba(212, 165, 116, 0.1);
}

.size-option.active {
    background: var(--primary);
    border-color: var(--primary);
}

.size-option.active .size-label,
.size-option.active .size-price {
    color: var(--white);
}

.size-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.size-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.qty-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.qty-input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.product-footer-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
    margin-top: 2rem;
}

.total-price-section {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 0.95rem;
    color: var(--gray);
}

.total-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-heading);
}

.btn-add-to-cart-detail {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-add-to-cart-detail:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Modal Related Products */
.modal-related-section {
    background: var(--bg-cream);
    padding: 3rem 0;
    margin-top: 2rem;
}

.modal-section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.modal-related-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.modal-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.modal-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.modal-related-info {
    padding: 1rem;
    text-align: center;
}

.modal-related-info h5 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.modal-related-info p {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
}

/* About Modal Styles */
.btn-close-custom-white {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-close-custom-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

.about-hero-modal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.section-badge-light {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    backdrop-filter: blur(10px);
}

.about-hero-title-modal {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin: 1.5rem 0;
    font-weight: 900;
}

.about-hero-description-modal {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.value-card-modal {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card-modal:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon-modal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-title-modal {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-description-modal {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.info-title-modal {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-intro-modal {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bhakri-list-modal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bhakri-item-modal {
    display: flex;
    gap: 1rem;
    align-items: start;
    font-size: 1.05rem;
    line-height: 1.8;
}

.bhakri-bullet-modal {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stats-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-modal {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card-modal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-card-number-modal {
    font-size: 3rem;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-card-label-modal {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.contact-info-card-modal {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card-modal:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

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

.contact-details-modal {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-label-modal {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-value-modal {
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

.contact-value-modal:hover {
    color: var(--primary);
}

.contact-person-modal {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-person-modal strong {
    color: var(--primary);
}

.btn-whatsapp-modal {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-whatsapp-modal:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Responsive Modal Styles */
@media (max-width: 991px) {
    .product-detail-image {
        height: 400px;
    }
    
    .product-detail-content {
        height: auto;
        padding: 2rem;
    }
    
    .stats-grid-modal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .product-detail-title {
        font-size: 2rem;
    }
    
    .size-options {
        flex-direction: column;
    }
    
    .product-footer-modal {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .btn-add-to-cart-detail {
        width: 100%;
    }
    
    .benefits-badges {
        flex-direction: column;
    }
    
    .benefit-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-product-circle {
        width: 350px;
        height: 350px;
        margin-top: 50px;
    }
    
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .heroSwiper .swiper-button-prev:after,
    .heroSwiper .swiper-button-next:after {
        font-size: 16px;
    }
    
    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-product-circle {
        width: 300px;
        height: 300px;
    }
    
    .product-circle-label {
        bottom: 20px;
        padding: 12px 25px;
    }
    
    .product-circle-label h4 {
        font-size: 1.1rem;
    }
    
    .product-circle-label p {
        font-size: 0.85rem;
    }
    
    .heroSwiper .swiper-button-prev {
        left: -15px;
    }
    
    .heroSwiper .swiper-button-next {
        right: -15px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .slide-counter .current {
        font-size: 0.95rem;
    }
}
