:root {
    --royal-burgundy: #8B2635;
    --royal-gold: #D4AF37;
    --cream: #FFF8DC;
    --dark-burgundy: #6B1D2A;
    --light-gold: #E6C547;
    --deep-gold: #B8941F;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-burgundy);
    line-height: 1.6;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(139,38,53,0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
}

.header-banner {
    background-color: var(--royal-burgundy);
    color: var(--white);
    padding: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-banner .logo {
    height: 200px;
    flex-shrink: 0;
}

.banner-text {
    flex-grow: 0;
    text-align: left;
}

.header-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--royal-gold);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--royal-gold);
}

.subheader {
    text-align: center;
    padding: 1rem;
}

.motto {
    font-size: 1.5rem;
    color: var(--royal-burgundy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.commitment {
    font-size: 1.1rem;
    color: var(--deep-gold);
}

.social-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--royal-gold);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--royal-gold);
}

.social-icon:hover {
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.contact-btn {
    background-color: var(--royal-gold);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem !important;
    text-decoration: none;
    border: 2px solid var(--royal-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: 2rem;
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    transform: translateY(-2px);
}

.product-categories {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-commitment {
    font-size: 1.2rem;
    color: var(--deep-gold);
    font-weight: 500;
}

.inventory-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.inventory-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    object-fit: contain;
}

.category {
    margin-bottom: 4rem;
}

.category h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-burgundy);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.product {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-burgundy);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-carousel {
    height: 300px;
    background-color: var(--cream);
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image {
    height: 300px;
    background-color: var(--cream);
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Swiper Carousel Styling */
.product-carousel.swiper {
    position: relative;
}

.product-carousel .swiper-wrapper {
    display: flex;
    height: 100%;
}

.product-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Swiper Pagination Styling */
.product-carousel .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.product-carousel .swiper-pagination-bullet {
    background-color: var(--royal-burgundy);
    opacity: 0.6;
}

.product-carousel .swiper-pagination-bullet-active {
    background-color: var(--royal-gold);
    opacity: 1;
}

/* Swiper Navigation Buttons */
.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev {
    color: var(--royal-gold);
    width: 40px;
    height: 40px;
    background-color: rgba(139, 38, 53, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.product-carousel .swiper-button-next:hover,
.product-carousel .swiper-button-prev:hover {
    background-color: var(--royal-burgundy);
    color: var(--white);
}

.product-carousel .swiper-button-next::after,
.product-carousel .swiper-button-prev::after {
    font-size: 20px;
}

.flavors {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.flavor-btn {
    background-color: var(--royal-burgundy);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.flavor-btn:hover {
    background-color: var(--deep-gold);
}

/* Hide flavor buttons for Jaggery and Honey products */
.jaggery-carousel ~ .flavors,
.honey-carousel ~ .flavors {
    display: none !important;
}

.product-info {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.nutritional-value, .health-benefits {
    flex: 1;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.nutritional-value h4, .health-benefits h4 {
    color: var(--royal-burgundy);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.nutritional-value ul, .health-benefits ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.foxnut-varieties {
    text-align: center;
    margin-bottom: 2rem;
}

.foxnut-varieties p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.foxnut-varieties small {
    display: block;
    color: var(--deep-gold);
    margin-top: 0.5rem;
}

.why-choose-us {
    background-color: var(--white);
    padding: 2rem 2rem;
    text-align: center;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-burgundy);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.feature {
    padding: 1rem;
}

.feature-bg {
    height: 50%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--royal-burgundy);
    font-family: 'Playfair Display', serif;
}

footer {
    background-color: var(--royal-burgundy);
    color: var(--white);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 0.5rem;
}

.social-links {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    text-decoration: none;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .header-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .header-banner .logo {
        height: 150px;
    }

    .header-banner h1 {
        font-size: 2rem;
    }

    .banner-text {
        text-align: center;
    }

    .social-nav {
        flex-direction: row;
        padding: 1rem;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .contact-btn {
        margin: 1rem auto;
    }

    .product-info {
        flex-direction: column;
        gap: 1rem;
    }

    .flavors {
        flex-wrap: wrap;
    }

    .flavor-btn {
        min-width: 120px;
    }

    .product {
        padding: 1rem;
    }

    .product h3 {
        font-size: 1.75rem;
    }

    .category h2 {
        font-size: 2rem;
    }

    .promises-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .promise-item {
        padding: 1rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .features {
        flex-wrap: wrap;
    }

    .feature {
        flex: 1 1 45%;
        min-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .header-banner .logo {
        height: 120px;
    }

    .header-banner h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .motto {
        font-size: 1.25rem;
    }

    .promises-grid {
        grid-template-columns: 1fr;
    }

    .product-carousel {
        height: 250px;
    }

    .product h3 {
        font-size: 1.5rem;
    }

    .feature {
        flex: 1 1 100%;
    }
}

/* Promises Grid Styles */
.promises-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.promise-item {
    flex: 1 1 calc(25% - 1.125rem);
    min-width: 0;
    max-width: 100%;
}

.promise-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-5px);
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promise-heading {
    color: var(--royal-burgundy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.promise-text {
    color: var(--deep-gold);
    font-size: 0.9rem;
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PDF Downloads Section */
.pdf-downloads {
    background-color: var(--cream);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.pdf-downloads h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-burgundy);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pdf-subtitle {
    text-align: center;
    color: var(--deep-gold);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pdf-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 1rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: visible;
}

.pdf-item {
    flex: 1 1 calc(25% - 0.75rem);
    min-width: 0;
    max-width: 100%;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(139,38,53,0.2);
}

.pdf-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pdf-item h3 {
    color: var(--royal-burgundy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.pdf-item p {
    color: var(--deep-gold);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pdf-download-btn {
    display: inline-block;
    background-color: var(--royal-burgundy);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--royal-burgundy);
}

.pdf-download-btn:hover {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    transform: translateY(-2px);
}

.pdf-download-btn i {
    margin-right: 0.5rem;
}

/* Responsive PDF Grid */
@media screen and (max-width: 768px) {
    .pdf-downloads h2 {
        font-size: 2rem;
    }

    .pdf-grid {
        gap: 1.5rem;
        padding: 1rem;
    }

    .pdf-item {
        min-width: 180px;
        max-width: 250px;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .pdf-downloads h2 {
        font-size: 1.75rem;
    }

    .pdf-grid {
        flex-direction: column;
        align-items: center;
    }

    .pdf-item {
        width: 100%;
        max-width: 100%;
    }
}