/* ============================================
   VENKY'S LANDING PAGE - MODULAR CSS
   Font Family: Poppins (Headings) + Inter (Body)
   ============================================ */

/* ----------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
    /* Primary Colors */
    --primary-red: #d4051b;
    --dark-red: #d4051b;
    --primary-color: #d4051b;

    /* Secondary Colors */
    --secondary-color: #f1a661;
    --accent-yellow: #FFAE20;
    --accent-orange: #c16333;
    --accent-gold: #F89B21;
    --accent-green: #647849;
    --star-color: #FCD503;

    /* Neutral Colors */
    --dark-color: #131313;
    --dark-gray: #343a40;
    --text-color: #4a4a4a;
    --light-gray: #f8f9fa;
    --light-color: #f8f9fa;
    --border-color: #dee2e6;
    --muted-text: #868686;
    --light-muted: #828282;

    /* Product Colors */
    --product-bg: #f0e6d2;
    --product-title-bg: #d4b6a0;
    --testimonial-bg: #ffc107;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-display: 'Heavitas', sans-serif;
    --font-script: 'olivier_demo', cursive;

    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-black: 900;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 15px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 15px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.3s ease-in-out;
    --transition-slow: opacity 1.5s ease-in-out;

    /* Z-Index */
    --z-base: 0;
    --z-above: 2;
    --z-header: 9;
    --z-nav: 99;
    --z-overlay: 999;
    --z-modal: 9999;
}


/* ----------------------------------------
   2. GOOGLE FONTS IMPORT
   ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');


/* ----------------------------------------
   3. LOCAL FONT FACES
   ---------------------------------------- */
@font-face {
    font-family: 'PlusJakartaSansRegular';
    src: url('../css/fonts/PlusJakartaSansRegular.eot') format('embedded-opentype'),
        url('../css/fonts/PlusJakartaSansRegular.woff2') format('woff2'),
        url('../css/fonts/PlusJakartaSansRegular.woff') format('woff'),
        url('../css/fonts/PlusJakartaSansRegular.ttf') format('truetype'),
        url('../css/fonts/PlusJakartaSansRegular.svg#PlusJakartaSansRegular') format('svg');
}

@font-face {
    font-family: 'PlusJakartaSansSemiBold';
    src: url('../css/fonts/PlusJakartaSansSemiBold.eot') format('embedded-opentype'),
        url('../css/fonts/PlusJakartaSansSemiBold.woff2') format('woff2'),
        url('../css/fonts/PlusJakartaSansSemiBold.woff') format('woff'),
        url('../css/fonts/PlusJakartaSansSemiBold.ttf') format('truetype'),
        url('../css/fonts/PlusJakartaSansSemiBold.svg#PlusJakartaSansSemiBold') format('svg');
}

@font-face {
    font-family: 'PlusJakartaSansMedium';
    src: url('../css/fonts/PlusJakartaSansMedium.eot') format('embedded-opentype'),
        url('../css/fonts/PlusJakartaSansMedium.woff2') format('woff2'),
        url('../css/fonts/PlusJakartaSansMedium.woff') format('woff'),
        url('../css/fonts/PlusJakartaSansMedium.ttf') format('truetype'),
        url('../css/fonts/PlusJakartaSansMedium.svg#PlusJakartaSansMedium') format('svg');
}

@font-face {
    font-family: 'PlusJakartaSansBold';
    src: url('../css/fonts/PlusJakartaSansBold.eot') format('embedded-opentype'),
        url('../css/fonts/PlusJakartaSansBold.woff2') format('woff2'),
        url('../css/fonts/PlusJakartaSansBold.woff') format('woff'),
        url('../css/fonts/PlusJakartaSansBold.ttf') format('truetype'),
        url('../css/fonts/PlusJakartaSansBold.svg#PlusJakartaSansBold') format('svg');
}

@font-face {
    font-family: 'Breathing Personal Use Only';
    src: url('../css/fonts/BreathingPersonalUseOnly-Reg.eot') format('embedded-opentype'),
        url('../css/fonts/BreathingPersonalUseOnly-Reg.woff2') format('woff2'),
        url('../css/fonts/BreathingPersonalUseOnly-Reg.woff') format('woff'),
        url('../css/fonts/BreathingPersonalUseOnly-Reg.ttf') format('truetype'),
        url('../css/fonts/BreathingPersonalUseOnly-Reg.svg#BreathingPersonalUseOnly-Reg') format('svg');
}

@font-face {
    font-family: 'FE11004T';
    src: url('../css/fonts/FE11004T.eot') format('embedded-opentype'),
        url('../css/fonts/FE11004T.woff2') format('woff2'),
        url('../css/fonts/FE11004T.woff') format('woff'),
        url('../css/fonts/FE11004T.ttf') format('truetype'),
        url('../css/fonts/FE11004T.svg#FE11004T') format('svg');
}

@font-face {
    font-family: 'Heavitas';
    src: url('../css/fonts/Heavitas.eot') format('embedded-opentype'),
        url('../css/fonts/Heavitas.woff2') format('woff2'),
        url('../css/fonts/Heavitas.woff') format('woff'),
        url('../css/fonts/Heavitas.ttf') format('truetype'),
        url('../css/fonts/Heavitas.svg#Heavitas') format('svg');
}

@font-face {
    font-family: 'olivier_demo';
    src: url('../css/fonts/olivier_demo.eot') format('embedded-opentype'),
        url('../css/fonts/olivier_demo.woff2') format('woff2'),
        url('../css/fonts/olivier_demo.woff') format('woff'),
        url('../css/fonts/olivier_demo.ttf') format('truetype'),
        url('../css/fonts/olivier_demo.svg#olivier_demo') format('svg');
}


/* ----------------------------------------
   4. RESET & BASE STYLES
   ---------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--weight-regular);
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}


/* ----------------------------------------
   5. CUSTOM SCROLLBAR
   ---------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}


/* ----------------------------------------
   6. TYPOGRAPHY MODULE
   ---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    line-height: 1.3;
    color: var(--dark-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--weight-regular);
    color: var(--dark-color);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 75px;
    border-bottom: 15px solid var(--accent-yellow);
}

.section-header {
    position: relative;
    margin-bottom: 4rem;
}


/* ----------------------------------------
   7. BUTTONS MODULE
   ---------------------------------------- */
.view-more-btn {
    display: inline-block;
    background: #000;
    color: white;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--weight-medium);
    padding: 7px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.view-more-btn:hover {
    background: var(--accent-yellow);
    color: #000;
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}


/* ----------------------------------------
   8. LAYOUT MODULE
   ---------------------------------------- */
.productBody {
    position: relative;
    z-index: var(--z-base);
}

.productBody::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--z-header);
    width: 600px;
    height: 400px;
    background-image: url(../images/innerTop.webp);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}


/* ----------------------------------------
   9. HEADER/NAVIGATION MODULE
   ---------------------------------------- */
.venkysHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-overlay);
    transition: var(--transition);
}

.venkysHeader .navbar {
    padding: 0.5rem 1rem;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.venkysHeader .navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem 1rem;
    color: #000;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--weight-medium);
}

.venkysHeader.scrolled .navbar,
.venkysHeader .navbar.toggled {
    background-color: #fff !important;
}

/* Navbar Brand/Logo */
.venkysHeader .navbar-brand {
    position: absolute;
    left: 7rem;
    top: 2.5rem;
    z-index: var(--z-modal);
    transition: var(--transition);
}

.venkysHeader .navbar-brand img,
.venkysHeader.scrolled .navbar-brand img {
    height: 150px;
    max-width: 100%;
    max-height: 100%;
}

.venkysHeader.scrolled .navbar-brand {
    top: 0;
}

/* Navbar Toggler (Hamburger) */
.navbar-toggler {
    width: 25px;
    height: 20px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler span,
.navbar-toggler::before,
.navbar-toggler::after {
    display: block;
    height: 3px;
    width: 100%;
    background-color: red;
    position: absolute;
    left: 0;
    content: '';
    background-image: none;
    transition: var(--transition-fast);
}

.navbar-toggler span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler::before {
    top: 0;
}

.navbar-toggler::after {
    bottom: 0;
}


/* ----------------------------------------
   10. HERO SECTION MODULE
   ---------------------------------------- */
.hero-slider-container {
    width: 100%;
    height: 650px;
}

.hero-slider-container .swiper {
    width: 100%;
    height: 100%;
}

.hero-content-box {
    position: relative;
    top: 0;
    right: 0;
    width: 300px;
    /* background-color: var(--accent-gold); */
    margin: 0 0 0 auto;
    padding: 0;
    text-align: center;
    z-index: 3;
    transform: translateY(30%);
}

.hero-content-box h2 {
    font-family: var(--font-display);
    color: #bd3f08;
    font-size: 36px;
    line-height: 32px;
    font-weight: 600;
}

.hero-content-box .subTxt {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--weight-regular);
    letter-spacing: 2px;
}

/* Oliver Script Text */
.oliverTxt {
    font-family: var(--font-script);
    color: var(--accent-green);
    font-size: 42px;
    position: relative;
    display: inline-block;
    width: auto;
}

.oliverTxt::after {
    content: '';
    position: absolute;
    left: 40%;
    bottom: 0;
    width: 25%;
    border: 2px solid #eab731;
}

/* Bottom Note */
.bottom-note img {
    max-width: 100%;
    width: 280px;
}

/* Hero Content Full */
.hero-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: var(--weight-bold);
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--weight-light);
    margin-bottom: 30px;
    max-width: 800px;
}

.hero-slide-1 {
    background-image: url('../images/slide-1.webp');
}

/* Hero View Badge */
.heroview {
    position: absolute;
    left: 45%;
    bottom: -20px;
}


/* ----------------------------------------
   11. SWIPER SLIDER MODULE
   ---------------------------------------- */
.swiper-fade .swiper-slide {
    transition-property: opacity !important;
}

.swiper-slide {
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    opacity: 0;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

/* Slide Content */
.slide-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    text-align: right;
    line-height: 1.2;
}

.slide-subtitle {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    text-align: left;
    line-height: 1.5;
}

.slide-content-left,
.slide-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slide-image {
    max-width: 400px;
    object-fit: cover;
}

.slide-description {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.slide-description p {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    margin: 0;
}

.slide-description img {
    width: 400px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}


/* ----------------------------------------
   12. ABOUT SECTION MODULE
   ---------------------------------------- */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/Venkys-Bg.webp") center center no-repeat;
    background-size: 100% 100%;
}

.aboutWrapp {
    background-color: #fff;
    padding: 60px 30px;
}

.spices-collection-img {
    overflow: hidden;
    height: 410px;
}

.spices-collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding-left: 15px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--weight-regular);
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: var(--weight-semibold);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--weight-regular);
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}


/* ----------------------------------------
   13. WHY CHOOSE MODULE
   ---------------------------------------- */
.why-choose-inline h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--weight-semibold);
    color: #000;
}

.feature-box-small {
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 74, 74, 0.33);
    transition: var(--transition);
    height: 100%;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    line-height: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius-full);
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-small h6 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--weight-medium);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-box-small p.small {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.4;
}


/* ----------------------------------------
   14. FEATURE ITEMS MODULE
   ---------------------------------------- */
.feature-item {
    margin-bottom: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--radius-full);
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}


/* ----------------------------------------
   15. INTRODUCTION SECTION MODULE
   ---------------------------------------- */
.introduction-section {
    background: var(--light-gray);
}

.intro-images {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.intro-images img {
    flex: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.intro-content h3 {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

.intro-content h4 {
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    color: #000;
    margin: var(--space-xl) 0 var(--space-md);
}


/* ----------------------------------------
   16. PRODUCTS SECTION MODULE
   ---------------------------------------- */
#products {
    scroll-margin-top: 120px;
}

.products-section {
    padding: 60px 0 100px;
    background-color: var(--light-color);
}

.product-showcase {
    padding: 0 20px;
}

.product-package-img {
    overflow: hidden;
}

.product-package-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cooked-dish-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cooked-dish-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Card */
.product-card {
    margin-bottom: 30px;
    position: relative;
}

.product-flip {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--product-bg);
    display: flex;
    flex-direction: column;
}

.product-front,
.product-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--product-bg);
    display: flex;
    flex-direction: column;
    transition: opacity 0.6s ease;
}

.product-front {
    background-color: var(--product-bg);
    opacity: 1;
}

.product-back {
    opacity: 0;
    padding: 0;
}

.product-card:hover .product-front {
    opacity: 0;
}

.product-card:hover .product-back {
    opacity: 1;
}

/* Product Front Overlay */
.front-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(217 217 217 / 88%) 0%, transparent 50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Description */
.product-description {
    position: absolute;
    width: 100%;
    z-index: 99;
    text-align: center;
    padding: 40px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    gap: 7px;
}

.desc-line1 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--weight-black);
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0;
}

.desc-line2 {
    font-family: 'Breathing Personal Use Only', var(--font-accent);
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--accent-orange);
    text-transform: capitalize;
    display: block;
    margin-top: 2px;
}

.product-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    background-color: var(--product-bg);
    flex-grow: 1;
}

/* Product Back */
.product-back-image {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
}

.product-back-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

/* Product Title */
.product-title {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    background-image: url('../images/product-title-bg.webp');
    background-position: center center;
    background-size: 100% 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title h5 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--weight-medium);
    margin-bottom: 5px;
    color: #fff;
}

.product-title h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--weight-bold);
    margin-bottom: 0;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.product-title p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.1;
}


/* ----------------------------------------
   17. TESTIMONIALS SECTION MODULE
   ---------------------------------------- */
.testimonials-section {
    position: relative;
    padding: 50px 0;
    background: #fff;
}

.testimonial-header {
    background: var(--accent-yellow);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-header h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: var(--weight-regular);
    color: var(--dark-color);
    text-transform: uppercase;
}

/* Testimonial Swiper */
.testimonial-swiper .swiper-slide {
    padding: 5px 10px;
}

.testimonial-swiper-container {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    background-color: white;
    padding: 15px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    padding: 0;
    position: relative;
}

/* Testimonial Stars */
.testimonial-slide-stars {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--star-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimonial-slide-stars span {
    color: var(--text-color);
    margin-left: 5px;
    font-weight: var(--weight-semibold);
}

/* Testimonial Profile */
.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 25px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-family: var(--font-body);
    font-size: 16px;
}

.testimonial-stars {
    color: var(--star-color);
}

.testimonial-stars span {
    color: var(--text-color);
    margin-left: 5px;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'FE11004T';
    font-size: 18px;
    font-weight: var(--weight-medium);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    color: var(--text-color);
}

.testimonial-text::before {
    content: '"';
    font-family: 'PlusJakartaSansRegular', var(--font-accent);
    font-size: 40px;
    font-weight: var(--weight-bold);
    color: var(--accent-yellow);
    position: absolute;
    left: -20px;
    top: -20px;
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.testimonial-button-prev,
.testimonial-button-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light-color);
    color: var(--primary-red);
    border: 2px solid #ccc;
    border-radius: var(--radius-full);
    margin-right: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Testimonial Stars Slider */
.testimonial-stars-slider {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    z-index: 10;
}

.testimonial-stars-slider .swiper-slide {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars-slider .stars {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-stars-slider .rating-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--weight-semibold);
    color: var(--dark-color);
}


/* ----------------------------------------
   18. STORE LOCATOR MODULE
   ---------------------------------------- */
.store-locator {
    background: var(--primary-red);
    color: white;
}

.store-locator a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--weight-semibold);
}


/* ----------------------------------------
   19. CONTACT SECTION MODULE
   ---------------------------------------- */
.contact-section {
    position: relative;
    padding: 150px 0;
    background: url("../images/Venkys-Bg.webp") center center no-repeat;
    background-size: 100% 100%;
    color: white;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background-color: #464644;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
}

/* Form Controls */
.contact-form .form-control {
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 16px;
}

.contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.contact-form .form-control:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.contact-form .btn-lg {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-transform: capitalize;
}

.contact-form .btn-lg .fa-solid {
    margin-left: 10px;
}

/* Form Labels */
.form-label {
    font-family: var(--font-body);
    color: white;
    font-weight: var(--weight-medium);
    margin-bottom: 8px;
    display: block;
    font-size: 18px;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    align-items: center;
}

.country-code {
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: var(--weight-semibold);
    position: relative;
}

.country-code:after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    height: 20px;
    border-right: 2px solid #a5a5a5;
}

.phone-input-group .form-control {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    border-left: none;
}

/* Contact Content */
.contact-content {
    text-align: left;
    padding-left: 70px;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: var(--weight-regular);
    margin-bottom: 20px;
}

.contact-content p {
    font-family: var(--font-body);
    margin-bottom: 30px;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
}

.rating-section .stars {
    color: var(--secondary-color);
    margin-right: 15px;
}

.rating-section span {
    color: rgba(255, 255, 255, 0.8);
}


/* ----------------------------------------
   20. FOOTER MODULE
   ---------------------------------------- */
.footer {
    background: var(--dark-color);
    color: white;
    font-family: 'FE11004T';
}

.footer-logo {
    max-height: 150px;
    width: auto;
}

.footList {
    padding-left: 0;
    list-style: none;
}

.toprodList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.toprodList li {
    width: 48%;
}

.footList a {
    font-family: var(--font-body);
    font-size: 20px;
}

.footList li::marker {
    font-size: 1.5em;
}

.foot_head {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--weight-regular);
    color: var(--accent-gold);
}

.footer a {
    font-family: 'FE11004T';
    font-size: 18px;
    line-height: 36px;
    text-decoration: none;
    color: white !important;
    transition: color 0.3s ease;
}

/* Social Links */
.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a .fab:hover,
.footList a:hover {
    color: var(--accent-gold) !important;
}


/* ----------------------------------------
   21. PRODUCT DETAIL PAGE MODULE
   ---------------------------------------- */
.productWrapp {
    position: relative;
    z-index: 99;
}

.product-detail {
    padding: 300px 15px 70px;
}

.product-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--weight-regular);
    color: #3C3C3C;
    text-transform: uppercase;
}

.rating-stars {
    color: #ffc107;
    font-size: var(--fs-md);
}

.gryclr {
    font-family: var(--font-body);
    font-size: 18px;
}

.gryclr span a {
    color: var(--light-muted);
}

.gryclr strong {
    color: #000;
}

/* Product Info */
.product-info {
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
}

.product-info span {
    font-family: var(--font-body);
    display: inline-block;
    font-weight: var(--weight-medium);
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--muted-text);
}

.product-info span strong {
    font-weight: var(--weight-medium);
    color: #3C3C3C;
}

.dtls .text-muted {
    font-family: var(--font-body);
    color: var(--muted-text) !important;
    font-size: 18px;
}

/* Product Images */
.thumb-img {
    width: 100%;
    height: 277px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-bottom: 10px;
}

.thumb-img.active-thumb {
    border: 3px solid red;
}

.main-img-wrapper {
    width: 100%;
    height: 564px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.main-img {
    width: 100%;
    border: 1px solid #ccc;
    transition: transform 0.4s ease;
}

.left-thumb-wrapper {
    max-width: 185px;
}

.innerReviewstar .rwTxt {
    color: #918f8f;
}

.pd-left {
    padding-left: 50px;
}


/* ----------------------------------------
   22. ACCORDION MODULE
   ---------------------------------------- */
.accordion-wrapper .accordion-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color) !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 0.75rem;
}

.accordion-wrapper .accordion-button {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--weight-medium);
    padding: 8px;
    color: #000;
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

.accordion-wrapper .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
}

.accordion-wrapper .accordion-button:focus {
    box-shadow: none;
}

.accordion-wrapper .accordion-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--weight-regular);
    color: #626262;
}


/* ----------------------------------------
   23. NUTRITION TABLE MODULE
   ---------------------------------------- */
.table-wrapper {
    margin: 0 auto;
    border: 2px solid #000;
    padding: 20px;
    background: #fff;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table th,
.nutrition-table td {
    border-bottom: 1px solid #ccc;
    padding: 12px;
    text-align: left;
    color: var(--dark-color);
}

.nutrition-table thead th {
    font-family: 'FE11004T', var(--font-heading);
    font-size: 28px;
    font-weight: var(--weight-light);
    text-align: center;
    padding: 12px;
    border-bottom: 2px solid #000;
    color: var(--dark-color);
}

.nutrition-table .sub-header {
    font-weight: var(--weight-bold);
    border-bottom: 8px solid #000;
}

.nutrition-table .value-col {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--weight-regular);
    text-align: right;
    color: var(--dark-color);
}

.nutrition-table .gvalue-col {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--weight-light);
    text-align: right;
    color: var(--text-color);
}

.nutrition-table .small {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    text-align: left;
    padding: 10px;
}

.fonttd {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: var(--weight-light);
}


/* ----------------------------------------
   24. RESPONSIVE STYLES
   ---------------------------------------- */

/* --- Extra Small Devices (max-width: 575px) --- */
@media (max-width: 575px) {
    .product-flip {
        height: 550px;
    }

    .desc-line1,
    .desc-line2 {
        font-size: 18px;
    }

    .product-title {
        min-height: 45px;
        padding: 8px 6px;
    }

    .product-title p {
        font-size: 11px;
        line-height: 1.1;
    }

    .product-front img {
        height: 150px;
        padding: 0;
    }
}

/* --- Small Devices (max-width: 576px) --- */
@media (max-width: 576px) {
    .swiper-slide {
        padding: 20px 15px;
        min-height: 100%;
        background-size: cover;
    }

    .slide-title {
        font-size: var(--fs-xl);
    }

    .slide-image {
        max-width: 250px;
        height: 150px;
    }

    .product-card {
        margin-bottom: var(--space-md);
    }

    .hero-box {
        margin-top: 7rem;
    }

    .logo-wrapper {
        max-width: 200px;
        height: 200px;
        padding: 2rem 1.5rem;
    }

    .logo-img {
        max-height: 120px;
    }

    .nutrition-table th,
    .nutrition-table td {
        padding: 8px;
        font-size: 14px;
    }

    .nutrition-table thead th {
        font-size: 18px;
    }
}

/* --- Mobile Devices (320px - 767px) --- */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .swiper-fade .swiper-slide {
        background-image: linear-gradient(#ffffff91, #ffffff75), url(../images/hero-banners/slide-1.webp);
    }

    .venkysHeader {
        position: absolute;
        z-index: var(--z-overlay);
    }

    .venkysHeader.fixed-top.scrolled {
        position: fixed;
    }

    .venkysHeader.scrolled .navbar-brand img {
        height: 80px;
    }

    .productBody::before {
        z-index: var(--z-above);
        background-size: auto;
        width: 100%;
    }

    .venkysHeader .navbar-brand {
        position: static;
    }

    .venkysHeader .navbar-brand img {
        height: 80px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 80vh;
        padding: var(--space-md) 0;
    }

    .hero-box {
        margin-top: 8rem;
        padding: 2rem var(--space-md) 1.5rem;
        width: 95%;
    }

    .hero-content-box {
        top: 0;
        right: 0;
        transform: translateY(0);
        max-width: 100%;
        width: 100%;
        height: 100%;
        color: #000;
        padding: 200px 20px 10px;
        z-index: 3;
    }

    .bottom-note {
        right: 45px;
        z-index: var(--z-header);
        bottom: 20px;
    }

    .bottom-note img {
        width: 100%;
    }

    /* Section Title Mobile */
    .section-title {
        font-size: 20px;
        padding: 0.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title::after {
        border-bottom-width: 10px;
        bottom: -10px;
    }

    .testimonial-header {
        padding: 2rem var(--space-md);
        margin-bottom: 2rem;
    }

    .newsletter-content h3 {
        font-size: var(--fs-xl);
        margin-top: 2rem;
    }

    /* About Section Mobile */
    .about-section {
        background-image: url(../images/Venkys-Bgmob.png);
        padding: 40px 0;
    }

    .aboutWrapp {
        padding: 30px;
    }

    .spices-collection-img {
        height: 100%;
    }

    .about-content {
        padding-left: 0;
        margin: 20px 0;
    }

    .about-content h2 {
        font-size: var(--fs-base);
        margin-bottom: 10px;
    }

    .why-choose-inline h3 {
        font-size: 16px;
    }

    .why-choose-inline .col-md-4 {
        margin-bottom: 10px;
    }

    /* Products Section Mobile */
    .products-section {
        padding: 20px 0 0;
    }

    .product-title {
        font-size: var(--fs-xl);
    }

    .mob-direction {
        flex-direction: column;
    }

    .left-thumb-wrapper {
        max-width: 80px;
        display: flex;
    }

    .left-thumb-wrapper .thumb-img {
        margin-right: 15px;
        height: auto;
    }

    .pd-left {
        padding-left: 15px;
    }

    .product-flip {
        height: 380px;
    }

    .desc-line1,
    .desc-line2 {
        font-size: 20px;
    }

    .product-title {
        min-height: 50px;
        padding: 10px 8px;
    }

    .product-title p {
        font-size: 12px;
        line-height: 1.1;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 20px 0;
    }

    .testimonial-header {
        justify-content: center;
    }

    .testimonial-swiper-container {
        margin-top: 15px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 0;
        background: url(../images/Venkys-Bgfoot.png);
        background-size: 100% 100%;
    }

    .contact-content {
        padding-left: 0;
    }

    .contact-content h2 {
        font-size: 23px;
        text-align: center;
    }

    /* Nutrition Table Mobile */
    .nutrition-table {
        font-size: 14px;
    }

    .nutrition-table th,
    .nutrition-table td {
        padding: 8px 10px;
    }

    .product-info {
        flex-direction: column;
    }

    .product-detail {
        padding: 250px 15px 20px;
    }
}

/* --- Tablet Devices (768px - 991px) --- */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .swiper-fade .swiper-slide {
        background-image: linear-gradient(#ffffff91, #ffffff75), url(../images/hero-banners/slide-1.webp);
    }

    .venkysHeader .navbar-brand img {
        height: 80px;
    }

    .venkysHeader.scrolled .navbar-brand img {
        height: 80px !important;
    }

    .main-img {
        height: 100%;
    }

    .productBody::before {
        z-index: var(--z-above);
        background-size: auto;
        width: 100%;
    }

    .hero-slider-container {
        width: 100%;
        height: 750px;
    }

    .swiper-slide {
        background-size: cover;
    }

    .venkysHeader .navbar-brand {
        position: static;
    }

    .hero-section {
        min-height: 80vh;
        padding: var(--space-md) 0;
    }

    .spices-collection-img img {
        width: 100%;
        height: auto;
    }

    .bottom-note img {
        max-width: 500px;
    }

    .hero-content-box {
        top: 0;
        right: 0;
        transform: translateY(0);
        max-width: 100%;
        width: 100%;
        height: 100%;
        color: #000;
        padding: 200px 20px 0;
        z-index: 3;
    }

    .bottom-note {
        right: 45px;
        z-index: var(--z-header);
        bottom: 20px;
    }

    .bottom-note img {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
        padding: 0.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title::after {
        border-bottom-width: 10px;
        bottom: -10px;
    }

    .testimonial-header {
        padding: 2rem var(--space-md);
        margin-bottom: 2rem;
    }

    .testimonial-header h1 {
        font-size: 26px;
    }

    .newsletter-content h3 {
        font-size: var(--fs-xl);
        margin-top: 2rem;
    }

    .about-section {
        background-image: url(../images/Venkys-Bgmob.png);
        padding: 0;
        min-height: auto;
    }

    .aboutWrapp {
        padding: 30px;
    }

    .spices-collection-img {
        height: 100%;
    }

    .about-content {
        padding-left: 0;
        margin: 20px 0;
    }

    .about-content h2 {
        font-size: var(--fs-base);
        margin-bottom: 10px;
    }

    .why-choose-inline h3 {
        font-size: 16px;
    }

    .why-choose-inline .col-md-4 {
        margin-bottom: 10px;
    }

    .products-section {
        padding: 20px 0 0;
    }

    .product-title {
        font-size: var(--fs-xl);
    }

    .mob-direction {
        flex-direction: column;
    }

    .left-thumb-wrapper {
        max-width: 80px;
        display: flex;
    }

    .left-thumb-wrapper .thumb-img {
        margin-right: 15px;
    }

    .pd-left {
        padding-left: 15px;
    }

    .product-flip {
        height: 380px;
    }

    .desc-line1,
    .desc-line2 {
        font-size: 20px;
    }

    .product-title {
        min-height: 50px;
        padding: 10px 8px;
    }

    .product-title p {
        font-size: 12px;
        line-height: 1.1;
    }

    .testimonials-section {
        padding: 20px 0;
    }

    .testimonial-header {
        justify-content: center;
    }

    .testimonial-swiper-container {
        margin-top: 15px;
    }

    .contact-section {
        padding: 80px 0;
        background: url(../images/Venkys-Bgfoot.png);
        background-size: cover;
    }

    .contact-content {
        padding-left: 0;
    }

    .contact-content h2 {
        font-size: 23px;
        text-align: center;
    }

    .nutrition-table {
        font-size: 14px;
    }

    .nutrition-table th,
    .nutrition-table td {
        padding: 8px 10px;
    }

    .product-info {
        flex-direction: column;
    }

    .product-detail {
        padding: 250px 15px 20px;
    }

    .thumb-img {
        height: auto;
    }

    .main-img-wrapper {
        height: 100%;
    }
}

/* --- Small Desktop (992px - 1024px) --- */
@media screen and (min-width: 992px) and (max-width: 1024px) {
    .venkysHeader.scrolled .navbar-brand img {
        height: 80px;
    }

    .venkysHeader .navbar {
        padding: 1.5rem var(--space-md);
    }

    .spices-collection-img img {
        height: auto;
    }

    .hero-slider-container {
        width: 100%;
        height: 800px;
    }

    .about-section {
        background-image: url(../images/Venkys-Bgmob.png);
        padding: 40px 0;
    }

    .main-img-wrapper {
        height: 100%;
    }

    .thumb-img {
        height: 204px;
    }

    .bottom-note img {
        width: 100%;
    }

    .hero-slide-1 {
        background-size: cover;
        background-position: center right 0;
    }

    .products-section {
        padding: 60px 0 30px;
    }
}

/* --- Medium Desktop (1025px - 1179px) --- */
@media screen and (min-width: 1025px) and (max-width: 1179px) {
    .main-img-wrapper {
        height: 100%;
    }

    .thumb-img {
        height: 204px;
    }
}

/* --- Large Desktop (1180px - 1280px) --- */
@media screen and (min-width: 1180px) and (max-width: 1280px) {
    .venkysHeader.scrolled .navbar-brand img {
        height: 80px;
    }

    .venkysHeader .navbar {
        padding: 1rem var(--space-md);
    }

    .main-img-wrapper {
        height: 420px;
    }

    .thumb-img {
        height: 204px;
    }
}

/* --- Extra Large Desktop (1280px - 1439px) --- */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .left-thumb-wrapper {
        max-width: 173px;
    }

    .thumb-img {
        height: 234px;
    }

    .main-img-wrapper {
        height: 477px;
    }
}

/* Better alignment */
.navbar-nav .form-select {
    min-width: 90px;
    font-size: 13px;
}

/* Remove ugly default focus */
.form-select:focus {
    box-shadow: none;
    border-color: #ccc;
}

.VIpgJd-ZVi9od-ORHb {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
    height: 0;
}

.productBody {
    top: 0 !important;
}


/* Smooth dropdown */
.dropdown-menu {
    border-radius: 10px;
    border: none;
}

.dropdown-item {
    font-size: 16px;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

/* Hide Google bar */
.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.video-wrapper {
    width: 100%;
    /* max-width: 500px; */
    /* height: 580px; */
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}