:root {
    --primary-bg: #EFE4D3;
    /* Cream/Beige fall-back */
    --dark-red: #3A0A10;
    --gold: #A77A42;
    --text-dark: #2C1A14;
    --text-light: #4c3f35;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-bg);
    font-family: var(--font-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section {
    padding-bottom: 60px;
    /* This creates breathing room between the blocks to distinguish them easily */
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 15px;
}

.logo-img {
    height: 140px;
    /* Matched to design scale */
    mix-blend-mode: multiply;
    /* Keeps dark logo visible, removes white box if present */
    border-radius: 8px;
    /* Slight radius instead of a perfect circle */
}

.navbar-nav {
    gap: 15px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #1a110e !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        background-color: rgba(239, 228, 211, 0.9);
        padding: 6px 14px !important;
        border-radius: 25px;
        margin: 0 4px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--gold);
        color: #1a110e !important;
    }
}

.nav-icons {
    padding-right: 25px;
}

.nav-icons .icon-link {
    color: var(--gold);
    font-size: 16px;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-icons .icon-link:hover {
    color: #fff;
}

.cart-badge {
    font-size: 0.55rem;
    padding: 3px 5px;
    background-color: var(--gold) !important;
    color: #fff !important;
}

/* Background image handles everything! */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 887px;
    background-image: url('../assets/Hero_Banner.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    z-index: 1;
}

.recipes-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 887px;
    background-image: url('../assets/Blog_Banner.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    z-index: 1;
}

/* We align the HTML text perfectly to match the image */
.hero-left {
    flex: 0 0 45%;
    padding: 250px 0 0 3%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-red);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--gold);
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero-divider {
    display: flex;
    align-items: center;
    width: 250px;
    margin-bottom: 30px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.divider-icon {
    color: var(--gold);
    margin: 0 15px;
    font-size: 1rem;
}

.hero-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 45px;
    font-weight: 500;
}

.btn-explore {
    background-color: var(--dark-red);
    color: #fff;
    padding: 15px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    border: none;
    align-self: flex-start;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}

.btn-explore:hover {
    background-color: #240509;
    color: #fff;
    transform: translateY(-2px);
}

.hero-center {
    flex: 1;
}

/* Right Banner area */
.hero-right {
    flex: 0 0 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 300px;
    text-align: center;
}

.right-banner-content {
    color: var(--primary-bg);
}

.banner-icon {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.banner-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2.5px;
    line-height: 1.8;
    color: var(--gold);
    font-weight: 400;
}

/* If the image already has the text, the user can toggle this class on the body to hide the HTML text */
.text-hidden .hero-title,
.text-hidden .hero-subtitle,
.text-hidden .hero-divider,
.text-hidden .hero-text,
.text-hidden .btn-explore,
.text-hidden .right-banner-content {
    opacity: 0;
}

/* Hero Carousel Indicators */
#heroCarousel .carousel-indicators {
    margin-bottom: 40px;
    z-index: 15;
}

#heroCarousel .carousel-indicators button {
    width: 35px !important;
    height: 5px !important;
    border-radius: 2px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6) !important;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--gold) !important;
    transform: none;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
}

@media (max-width: 1399px) and (min-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-left {
        flex: 0 0 32%;
        max-width: 400px;
        padding-top: 200px;
        padding-left: 2%;
    }

    .hero-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-center,
    .hero-right {
        flex: 1 1 100%;
        width: 100%;
        padding: 120px 20px 50px;
        align-items: center;
        text-align: center;
    }

    /* Mobile Header & Side Opening Drawer Styles */
    .header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .header:has(.navbar-collapse.show)::before,
    .header:has(.navbar-collapse.collapsing)::before {
        opacity: 1;
        visibility: visible;
    }

    .logo-img {
        height: 80px !important;
    }

    /* Custom Hamburger Icon */
    .navbar-toggler {
        width: 30px;
        height: 24px;
        position: relative;
        transition: .3s ease-in-out;
        cursor: pointer;
        z-index: 1050;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .navbar-toggler-icon {
        display: block;
        position: absolute;
        height: 2px;
        width: 24px;
        background: #ffffff;
        /* White color on mobile */
        border-radius: 2px;
        transition: .25s ease-in-out;
        top: 11px;
        left: 3px;
    }

    .navbar-toggler::before,
    .navbar-toggler::after {
        content: '';
        display: block;
        position: absolute;
        height: 2px;
        width: 24px;
        background: #ffffff;
        /* White color on mobile */
        border-radius: 2px;
        transition: .25s ease-in-out;
        left: 3px;
    }

    .navbar-toggler::before {
        top: 4px;
    }

    .navbar-toggler::after {
        top: 18px;
    }

    /* Animated to X when active (not collapsed) */
    .navbar-toggler:not(.collapsed) {
        position: fixed;
        top: 25px;
        right: 25px;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        opacity: 0;
        left: -20px;
    }

    .navbar-toggler:not(.collapsed)::before {
        top: 11px;
        transform: rotate(135deg);
        background: var(--gold) !important;
    }

    .navbar-toggler:not(.collapsed)::after {
        top: 11px;
        transform: rotate(-135deg);
        background: var(--gold) !important;
    }

    /* Side drawer menu (Full Width) */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #3e1619 0%, #2b0b0e 100%) !important;
        padding: 80px 40px !important;
        margin: 0 !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s !important;
        z-index: 1045 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        visibility: hidden !important;
        transform: translateX(0) !important;
        overflow: hidden !important;
    }

    .navbar-collapse.collapse:not(.show) {
        display: flex !important;
        visibility: hidden !important;
        transform: translateX(0) !important;
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        display: flex !important;
        visibility: visible !important;
        transform: translateX(-100%) !important;
    }

    .navbar-collapse.collapse.show {
        display: flex !important;
        visibility: visible !important;
        transform: translateX(-100%) !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 400px !important;
    }

    .navbar-nav .nav-item {
        width: 100% !important;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navbar-collapse.show .navbar-nav .nav-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        transition-delay: 0.3s;
    }

    .navbar-nav .nav-link {
        color: #f6efe6 !important;
        font-family: var(--font-heading) !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        letter-spacing: 3px !important;
        padding: 12px 0 !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(167, 122, 66, 0.2) !important;
        text-align: center !important;
        transition: color 0.3s ease, transform 0.3s ease !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--gold) !important;
        transform: scale(1.05) !important;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('../assets/Home_phone_banner_h1.webp');
        background-position: center center;
    }

    .logo-img {
        height: 80px;
        /* Make logo smaller on mobile so it doesn't overlap */
    }

    .hero-left {
        padding-top: 150px !important;
        /* Push text down below the logo */
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
        color: var(--primary-bg);
        /* Making the title light to contrast with dark background */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--gold);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }



    .hero-text {
        color: #f6efe6;
        /* Lighter text for readability */
        font-weight: 500;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .hero-divider {
        width: 200px;
    }

    .bestsellers-col,
    .heritage-col,
    .recipes-col,
    .regions-col,
    .info-right,
    .info-left {
        padding: 40px 20px !important;
    }

    .heritage-title,
    .recipes-content h3,
    .regions-header h2 {
        font-size: 1.5rem !important;
    }

    /* About Page Mobile Overrides */
    .our-story-bg-section {
        /* Full width background overlay on mobile so text can span 100% */
        background: linear-gradient(to right, rgba(74, 21, 27, 0.95) 0%, rgba(74, 21, 27, 0.85) 100%), url('../assets/ChatGPT%20Image%20Jul%2028,%202026,%2004_14_51%20PM.webp') center/cover no-repeat !important;
        padding: 50px 0 !important;
        min-height: auto !important;
    }

    .story-text-col {
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: left;
    }

    .story-desc {
        max-width: 100% !important;
        text-align: left;
        margin-left: 0;
    }

    .story-divider {
        justify-content: flex-start;
        /* Keep original left alignment */
    }

    .story-title {
        font-size: 2rem !important;
        text-align: left;
    }

    .kitchen-title,
    .diversity-title,
    .thank-you-title {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .kitchen-divider,
    .diversity-divider {
        justify-content: center;
    }

    .kitchen-desc,
    .diversity-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .spices-list-col {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .btn-subscribe,
    .subscribe-input {
        width: 100% !important;
    }

    /* Recipes Page Mobile Overrides */
    .recipes-hero {
        background-position: center center;
        min-height: auto;
    }

    .blog-layout-section .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .blog-sidebar-col {
        margin-top: 40px;
    }
}

/* --- Info Section --- */
.info-section {
    width: 100%;
}

.info-left {
    background-color: var(--primary-bg);
    padding: 25px;
    border: 1px solid #d3c4ad;
}

.features-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #d3c4ad;
}

.feature-item {
    text-align: center;
    font-family: var(--font-body);
}

.feature-item svg {
    margin-bottom: 12px;
    width: 55px;
    height: 55px;
}

.feature-item p {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.features-bottom-row {
    display: flex;
    margin-top: 15px;
}

.spice-box-img-wrapper {
    flex: 0 0 52%;
    border-right: 2px solid #d3c4ad;
    padding: 30px 30px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spice-box-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.loved-kitchens-wrapper {
    flex: 0 0 48%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kitchens-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.kitchens-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kitchens-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.kitchens-list li svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

/* Info Right */
.info-right {
    background-color: var(--dark-red);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.region-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary-bg);
    /* Cream color */
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .features-top-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .features-bottom-row {
        flex-direction: column;
    }

    .spice-box-img-wrapper {
        border-right: none;
        border-bottom: 2px solid #d3c4ad;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .features-top-row {
        gap: 25px 5px;
        padding: 20px 10px;
    }
    .feature-item {
        flex: 0 0 31%;
    }
    .feature-item svg {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    .feature-item p {
        font-size: 0.65rem;
    }
}

/* --- Best Sellers & Heritage Section --- */
.bestsellers-heritage-section {
    width: 100%;
}

.bestsellers-col {
    background-color: var(--primary-bg);
    padding: 85px 45px;
    border-top: 1px solid #d3c4ad;
}

.bestsellers-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.bestsellers-header h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 0 20px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.decor-line {
    height: 1px;
    background-color: var(--gold);
    width: 80px;
    position: relative;
}

.decor-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    top: -2.5px;
}

.decor-line:first-child::after {
    right: -3px;
}

.decor-line:last-child::after {
    left: -3px;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: auto;
    /* changed from smooth to auto to prevent jerky animation with our JS step */
    padding: 15px 10px 35px 10px;
    width: calc(100% - 100px);
    margin: 0 auto;
}

.product-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 columns on large screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 columns on medium-large screens */
    }
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 320px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-img-wrapper .product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    background-color: #f6f6f6;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.4s ease;
}

.product-img-wrapper .back-img {
    opacity: 0;
    z-index: 2;
}

.product-img-wrapper .front-img {
    opacity: 1;
    z-index: 1;
}

.product-card:hover .product-img-wrapper {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.product-card:hover .product-img-wrapper .back-img {
    opacity: 1;
}

.product-card h5 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-card:hover h5 {
    color: var(--gold);
}

.product-card h5 span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 6px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.cart-btn:hover {
    background: var(--gold);
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

.slider-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* Heritage Section (Right) */
.heritage-col {
    background-color: var(--dark-red);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--primary-bg);
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.4;
    color: var(--gold);
    font-weight: 500;
}

.heritage-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-outline-heritage {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    border-radius: 0;
    margin-bottom: 40px;
    text-decoration: none;
}

.btn-outline-heritage:hover {
    background: var(--gold);
    color: var(--dark-red);
}

.heritage-graphic {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.farmer-img {
    max-width: 80%;
    height: auto;
}

@media (max-width: 991px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .product-card {
        flex: 0 0 100%;
    }
}

/* --- Recipes & Regions Section --- */
.recipes-regions-section {
    width: 100%;
    border-top: 1px solid #d3c4ad;
}

.recipes-col {
    background-color: var(--dark-red);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 50px 60px 180px;
    overflow: hidden;
}

.recipes-bowl-img {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.05);
}

.recipes-content {
    position: relative;
    z-index: 2;
    color: var(--gold);
    max-width: 320px;
}

.recipes-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.recipes-content p {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-outline-recipes {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-recipes:hover {
    background: var(--gold);
    color: var(--dark-red);
}

.regions-col {
    background-color: var(--primary-bg);
    padding: 60px 40px;
}

.regions-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.regions-header h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 0 20px;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.regions-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.region-card {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.region-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.region-card:hover .region-bg {
    transform: scale(1.1);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.region-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}

.region-overlay p {
    font-size: 0.8rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.region-icon {
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .recipes-col {
        padding: 60px 40px;
        justify-content: center;
        text-align: center;
    }

    .recipes-bowl-img {
        opacity: 0.15;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .regions-grid {
        flex-wrap: wrap;
    }

    .region-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .region-card {
        flex: 0 0 100%;
    }
}

/* --- Features & Subscribe Section --- */
.site-footer {
    width: 100%;
}

.usp-bar {
    background-color: var(--dark-red);
    padding: 25px 0;
    border-bottom: 2px solid #591219;
}

.usp-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.usp-item p {
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 1px;
}

.usp-item svg {
    flex-shrink: 0;
}

.usp-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(167, 122, 66, 0.3);
}

.subscribe-bar {
    background-color: var(--primary-bg);
    border-bottom: 1px solid #d3c4ad;
}

.subscribe-row {
    min-height: 120px;
}

.palace-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: bottom;
    display: block;
    mix-blend-mode: multiply;
}

.subscribe-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}

.subscribe-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.subscribe-form {
    width: 100%;
    max-width: 500px;
}

.subscribe-input {
    border: 1px solid #d3c4ad;
    background: transparent;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.subscribe-input:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--gold);
}

.btn-subscribe {
    background-color: var(--dark-red);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-subscribe:hover {
    background-color: var(--gold);
    color: #fff;
}

@media (max-width: 991px) {
    .usp-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .usp-item {
        flex: 0 0 calc(50% - 20px);
        justify-content: flex-start;
    }

    .usp-divider {
        display: none;
    }

    .subscribe-bar {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .usp-item {
        flex: 0 0 100%;
    }
}

/* --- Footer Section --- */
.footer-main-area {
    background-color: var(--dark-red);
    padding: 60px 0 40px;
    color: var(--primary-bg);
}

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

.footer-logo {
    max-width: 150px;
}

.footer-tagline {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.social-icons a {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-heading {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 15px;
    text-align: center;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-icons i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
}

.custom-pay-icon {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.8;
    line-height: 1;
}

.scroll-top-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
    /* Push to bottom if flex column */
}

.scroll-top-btn:hover {
    background: var(--gold);
    color: var(--dark-red);
}

/* --- Our Story BG Section (About Page) --- */
.our-story-bg-section {
    background: linear-gradient(to right, #4a151b 25%, transparent 75%), url('../assets/ChatGPT%20Image%20Jul%2028,%202026,%2004_14_51%20PM.webp') center right/cover no-repeat;
    background-color: #4a151b;
    /* Fallback */
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.story-text-col {
    padding-right: 50px;
    padding-left: 4rem !important;
}

.story-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.story-divider .decor-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.story-divider .decor-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.story-desc {
    color: #e0d0c1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: var(--font-body);
    max-width: 430px;
}

.btn-outline-story {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
    margin-top: 20px;
}

.btn-outline-story:hover {
    background-color: var(--gold);
    color: var(--dark-red);
}

/* --- Our Promise Section (About Page) --- */
.our-promise-section {
    background-color: #f6efe6 !important;
    /* Creamy background from image */
}

.promise-header .promise-divider {
    display: flex;
    align-items: center;
}

.promise-header .promise-divider::before,
.promise-header .promise-divider::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 10px;
}

.promise-header .fa-diamond {
    color: var(--gold);
    font-size: 0.6rem;
}

.promise-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promise-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.kitchen-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #4a151b;
    margin-bottom: 15px;
}

.kitchen-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.kitchen-divider .decor-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.kitchen-divider .decor-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.kitchen-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-outline-kitchen {
    display: inline-block;
    border: 1px solid #4a151b;
    color: #4a151b;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}

.btn-outline-kitchen:hover {
    background-color: #4a151b;
    color: #fff;
}

/* --- Diversity Section (About Page) --- */
.diversity-section {
    width: 100%;
}

/* Top Dark Part */
.diversity-top {
    background: url('../assets/celebrating.webp') center/cover no-repeat;
    background-color: #3e1619;
    /* Fallback */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.diversity-text-col {
    padding-left: 2rem;
}

.diversity-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-overlay-card {
    background: rgba(43, 10, 13, 0.85);
    /* Dark maroon transparent background */
    border: 1.5px solid rgba(167, 122, 66, 0.35);
    /* Gold border matching design */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.diversity-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.diversity-divider .decor-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.diversity-divider .decor-icon {
    color: var(--gold);
    font-size: 1rem;
}

.diversity-desc {
    color: #e0d0c1;
    font-size: 1rem;
    line-height: 1.8;
    font-family: var(--font-body);
    max-width: 450px;
}

/* Spices List */
.spices-list-col {
    padding-left: 50px;
}

.spices-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spices-list li {
    color: #e0d0c1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.spices-list li i {
    color: var(--gold);
    font-size: 0.6rem;
}

/* Bottom Light Part */
.diversity-bottom {
    background-color: #f6efe6;
    padding: 60px 0;
    position: relative;
}

.thank-you-title {
    font-family: var(--font-heading);
    color: #4a151b;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.thank-you-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.thank-you-divider .decor-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.thank-you-divider .decor-icon {
    color: var(--gold);
    font-size: 1rem;
}

.thank-you-desc {
    color: #444;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Page Styles --- */
.contact-hero-section {
    background: linear-gradient(to right, #f8f4ec 40%, rgba(248, 244, 236, 0.4) 100%), url('https://picsum.photos/seed/contactbg/1920/800') center right/cover no-repeat;
    height: 500px;
    padding-top: 80px;
    position: relative;
}

.contact-hero-text {
    padding-left: 5rem;
}

.contact-title {
    font-family: var(--font-heading);
    color: #4a151b;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-divider .decor-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.contact-divider .decor-icon {
    color: var(--gold);
    font-size: 1rem;
}

.contact-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-desc {
    color: #555;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 0;
}

/* Get In Touch Section */
.get-in-touch-left {
    background-color: #3e1619;
    color: #fff;
    border-top: 1px solid rgba(167, 122, 66, 0.4);
    border-bottom: 1px solid rgba(167, 122, 66, 0.4);
}

.git-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.git-divider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.git-divider .decor-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
}

.git-divider .decor-icon {
    color: var(--gold);
    font-size: 1rem;
}

.info-heading {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-text {
    color: #e0d0c1;
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.8;
}

.info-separator {
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(167, 122, 66, 0.3);
}

.get-in-touch-right {
    background-color: var(--primary-bg);
    position: relative;
    border-top: 1px solid rgba(167, 122, 66, 0.4);
    border-bottom: 1px solid rgba(167, 122, 66, 0.4);
}

.map-pin-icon {
    font-size: 3rem;
    color: #4a151b;
    position: absolute;
    top: 40%;
    left: 45%;
}

.map-card {
    background: rgba(246, 239, 230, 0.95);
    border: 1px solid rgba(167, 122, 66, 0.5);
    padding: 20px 40px;
    border-radius: 4px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-card-title {
    font-family: var(--font-heading);
    color: #4a151b;
    margin-bottom: 10px;
}

.map-card-text {
    font-family: var(--font-body);
    color: #555;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-card-divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-card-divider .decor-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

/* Message & Help Section */
.message-form-col {
    background-color: #f6efe6;
}

.contact-form .form-control {
    background: transparent;
    border: 1px solid rgba(167, 122, 66, 0.3);
    border-radius: 0;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.btn-send-message {
    background-color: #3e1619;
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-send-message:hover {
    background-color: #2b0f12;
    color: var(--gold);
}

.help-col {
    background: linear-gradient(rgba(215, 181, 126, 0.9), rgba(215, 181, 126, 0.9)), url('https://picsum.photos/seed/spice2/800/600') bottom/cover no-repeat;
    background-color: #d7b57e;
    color: #4a151b;
}

.help-title {
    font-family: var(--font-heading);
    color: #4a151b;
}

.help-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
}

.help-list li i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* Support USP Bar */
.support-usp-bar {
    background-color: #3e1619;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.support-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

.support-item h6 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    color: var(--gold);
}

.support-item p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    margin-bottom: 0;
    color: #e0d0c1;
    line-height: 1.3;
}

/* --- Custom Enquiry Form Component --- */
.enquiry-form-container {
    background-color: #f8f1e5;
    border: 1px solid rgba(167, 122, 66, 0.3);
    border-radius: 12px;
    padding: 8px;
    margin: 1rem auto;
    max-width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.enquiry-form-inner {
    border: 1px solid rgba(167, 122, 66, 0.5);
    border-radius: 8px;
    padding: 25px 30px;
    background-color: #fdfaf5;
}

/* Top Ornament */
.form-ornament-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f1e5;
    padding: 0 15px;
    color: var(--gold);
    font-size: 1.5rem;
}

.form-heading {
    font-family: var(--font-heading);
    color: #4a151b;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 10px;
}

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

.form-divider .decor-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.form-divider .decor-icon {
    color: var(--gold);
    font-size: 1rem;
}

.form-subtitle {
    font-family: var(--font-body);
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.custom-form-group {
    background-color: #f6efe6;
    border: 1px solid rgba(167, 122, 66, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.custom-form-group:focus-within {
    border-color: #4a151b;
    background-color: #fff;
}

.custom-form-group.textarea-group {
    align-items: flex-start;
}

.custom-form-group .icon-wrapper {
    color: #a07a4e;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.custom-form-group.textarea-group .icon-wrapper {
    margin-top: 5px;
}

.custom-form-group .input-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.custom-form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a151b;
    margin-bottom: 2px;
}

.custom-form-group label span {
    color: #b52a2a;
}

.custom-form-group input,
.custom-form-group textarea {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    width: 100%;
}

.custom-form-group input::placeholder,
.custom-form-group textarea::placeholder {
    color: #a0978d;
    font-size: 0.9rem;
}

.custom-form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.btn-enquiry-submit {
    background-color: #3e1619;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 10px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-enquiry-submit:hover {
    background-color: var(--gold);
    color: #3e1619;
}

.form-footer-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #777;
}

.form-footer-text i {
    color: #a07a4e;
    margin-right: 5px;
}

/* --- Blog Layout Section --- */
.blog-layout-section {
    background-color: var(--primary-bg);
}

/* Blog Cards */
.blog-card {
    border: 1px solid #d3c4ad;
    border-radius: 4px;
    background-color: #f7ede1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio for 1920x1080 images */
}

.blog-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark-red);
    color: var(--gold);
    padding: 12px 15px;
    text-align: center;
    z-index: 2;
    transform: scale(0.7);
    transform-origin: top left;
}

.blog-date-badge .day {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 3px;
}

.blog-date-badge .month-year {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    letter-spacing: 1px;
    line-height: 1.2;
}

.blog-card-body {
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-category {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-red);
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--gold);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.page-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d3c4ad;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s;
}

.page-link:hover {
    border-color: var(--dark-red);
    color: var(--dark-red);
}

.page-link.active {
    background-color: var(--dark-red);
    color: var(--gold);
    border-color: var(--dark-red);
}

.page-dots {
    color: var(--text-dark);
    font-weight: 600;
}

.prev-link,
.next-link {
    border: none;
    color: var(--gold);
}

.prev-link:hover,
.next-link:hover {
    border: none;
    color: var(--dark-red);
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
    padding: 35px 30px;
    border: 1px solid #d3c4ad;
    text-align: center;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.widget-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.widget-icon {
    color: var(--gold);
    margin: 0 15px;
    font-size: 0.8rem;
}

/* Search Widget */
.search-form {
    display: flex;
    border: 1px solid #d3c4ad;
    background-color: var(--primary-bg);
}

.search-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.search-btn {
    background: var(--dark-red);
    color: var(--gold);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #240509;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--gold);
}

.category-list a i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.category-list .count {
    color: var(--text-light);
}

/* Popular Posts Widget */
.popular-post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

.popular-post-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.popular-post-info h5 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    color: var(--text-dark);
}

.popular-post-info .date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Stay Inspired Widget */
.stay-inspired-widget {
    background-color: var(--dark-red);
    color: var(--primary-bg);
    border: none;
}

.stay-inspired-widget .widget-title {
    color: var(--gold);
}

.stay-inspired-widget p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--primary-bg);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-input {
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: #fdfaf6;
    color: var(--text-dark);
}

.btn-subscribe {
    background: var(--dark-red);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 12px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-subscribe:hover {
    background: var(--gold);
    color: #fff;
}

.blog-detail-hero {
    height: auto !important;
    min-height: 600px !important;
    padding-bottom: 60px;
}

.blog-detail-hero .hero-left {
    padding-top: 150px;
}

.blog-html-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Page Overrides */
.help-text-content {
    padding: 8% 20% 0 5%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .help-text-content {
        padding: 40px 20px 40px 20px !important;
    }

    .get-in-touch-left,
    .message-form-col {
        padding: 40px 20px !important;
    }

    .support-item {
        width: 100%;
        justify-content: center;
        text-align: left;
        margin-bottom: 20px;
    }
}

/* Custom FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-bg);
    color: var(--dark-red);
    box-shadow: none;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.accordion-item {
    border: 1px solid var(--gold);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Products Catalog Section --- */
.products-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 887px;
    background-image: url('../assets/Hero_Banner.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    z-index: 1;
}

.catalog-section {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: var(--font-body);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-title-top {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #2b2b2b;
    letter-spacing: 2px;
}

.results-count {
    color: #666;
    font-size: 0.95rem;
}

.sort-dropdown-container {
    display: flex;
    align-items: center;
}

.sort-dropdown {
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    padding-right: 5px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.catalog-img-wrapper {
    background-color: #f6f6f6;
    aspect-ratio: 13 / 16;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.catalog-img-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.catalog-img-wrapper .catalog-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: opacity 0.4s ease;
}

.catalog-img-wrapper .front-img {
    opacity: 1;
    z-index: 1;
}

.catalog-img-wrapper .back-img {
    opacity: 0;
    z-index: 2;
}

.catalog-card:hover .front-img {
    opacity: 0 !important;
}

.catalog-card:hover .back-img {
    opacity: 1 !important;
}

.catalog-category {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 5px;
    font-weight: 400;
}

.catalog-item-title {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

@media (max-width: 991px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- Product Detail Section --- */
.product-detail-top-spacer {
    height: 190px;
    background-color: var(--primary-bg);
}

.product-detail-hero {
    background-color: var(--dark-red);
    padding: 40px 5% 40px;
    color: #ffffff;
}

.product-detail-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: #fff;
}

.product-detail-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

.product-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.product-image-col {
    flex: 0 0 45%;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-col img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-info-col {
    flex: 1;
    padding-top: 20px;
}

.product-info-col h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.3;
}

.product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.product-meta span {
    color: #333;
    font-weight: 500;
}

.product-description-short {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.product-variants {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 35px;
}

.btn-buy-bulk {
    background-color: var(--dark-red);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-buy-bulk:hover {
    background-color: var(--gold);
    color: #fff;
}

.more-about-section {
    margin-bottom: 60px;
}

.more-about-section h3 {
    font-size: 1.5rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 20px;
}

.other-products-section h3 {
    font-size: 1.5rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 30px;
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .product-detail-card {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .other-products-grid {
        grid-template-columns: 1fr;
    }
}

.detail-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: opacity 0.4s ease;
}

.detail-img-wrapper .front-img {
    opacity: 1;
    z-index: 1;
}

.detail-img-wrapper .back-img {
    opacity: 0;
    z-index: 2;
}

.detail-img-wrapper:hover .front-img {
    opacity: 0 !important;
}

.detail-img-wrapper:hover .back-img {
    opacity: 1 !important;
}

.product-image-col {
    background-color: #f6f6f6 !important;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 !important;
    /* Let wrapper handle padding and alignment */
}

/* Global hover effect for catalog cards to swap to back image and hide front image */
.catalog-card:hover .front-img {
    opacity: 0 !important;
}

.catalog-card:hover .back-img {
    opacity: 1 !important;
}

catalog-card:hover .back-img {
    opacity: 1 !important;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}