    /*banner*/
    .main-slider-container {
        width: 100%;
        height: 850px; /* Desktop height */
        background: #eee;
        position: relative;
        overflow: hidden;
    }
    .swiper { width: 100%; height: 100%; }
    .swiper-slide img, .swiper-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ఇమేజ్ సాగకుండా బ్యానర్ లాగా కట్ అవుతుంది */
    }

    /* --- Mobile View Adjustment --- */
    @media (max-width: 768px) {
        .main-slider-container { 
            height: 300px; /* మొబైల్ లో బ్యానర్ సైజు */
        }
        /* మొబైల్ లో బాణాలు (Arrows) చిన్నవి చేయడానికి లేదా తీసేయడానికి */
        .swiper-button-next, .swiper-button-prev {
            transform: scale(0.6);
        }
    }
/*end Banner*/

/*about us*/
    /* --- BASE & COLORS --- */
:root {
    --brand-green: #699C47;
    --deep-black: #111111;
    --soft-para: #555555;
}

.premium-about-section {
    padding: 100px 0;
    background: #ffffff;
}

/* --- TYPOGRAPHY --- */
.global-cursive-top {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--brand-green);
    display: block;
    margin-bottom: 5px;
}

.global-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--deep-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-brand-green {
    color: var(--brand-green);
}

.brand-line {
    width: 60px;
    height: 3px;
    background: var(--brand-green);
    margin-bottom: 25px;
}

.global-para {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--soft-para);
    margin-bottom: 30px;
}

/* --- FEATURE LIST --- */
.feature-list-clean {
    list-style: none;
    padding: 0;
}

.feature-list-clean li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-list-clean li i {
    color: var(--brand-green);
    font-size: 18px;
}

/* --- BUTTON --- */
.black-pill-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--deep-black);
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.black-pill-btn:hover {
    background: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(105, 156, 71, 0.2);
}

/* --- VISUALS & QUOTE --- */
.about-visual-box {
    position: relative;
    padding-right: 40px;
}

.rounded-custom {
    border-radius: 80px 20px 80px 20px;
    border: 10px solid #fff;
}

.floating-quote-card {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #fff;
    padding: 25px;
    max-width: 300px;
    border-radius: 15px;
    border-left: 5px solid var(--brand-green);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.quote-icon-box {
    color: var(--brand-green);
    margin-bottom: 10px;
    font-size: 20px;
}

.quote-text-cursive {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    color: #444;
    line-height: 1.3;
    margin-bottom: 10px;
}

.quote-author-line span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
}

/* --- MOBILE --- */
@media (max-width: 991px) {
    .global-main-title { font-size: 34px; }
    .about-visual-box { padding-right: 0; margin-top: 50px; }
    .floating-quote-card { position: relative; bottom: 0; margin-top: 20px; max-width: 100%; }
}
/*end About Us*/

/*snacks*/
/* --- 1. GLOBAL TYPOGRAPHY & COLORS --- */
:root {
    --brand-green: #699C47;
    --rich-black: #111111;
    --text-muted: #666666;
}

/* --- 2. HEADER STYLING --- */
.global-cursive-highlight {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--brand-green);
    display: block;
    margin-bottom: 5px;
}

.global-premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--rich-black);
    line-height: 1.2;
    margin-bottom: 10px;
}

.text-logo-green {
    color: var(--brand-green);
}

.global-tagline-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.premium-accent-line {
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
}

/* --- 3. CUSTOM TABS --- */
.premium-tab-nav {
    border: none !important;
    gap: 10px;
}

.premium-tab-nav .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--rich-black);
    border: 2px solid #eee !important;
    border-radius: 50px !important;
    padding: 10px 25px;
    transition: 0.3s;
}

.premium-tab-nav .nav-link.active {
    background-color: var(--brand-green) !important;
    color: #fff !important;
    border-color: var(--brand-green) !important;
}

/* --- 4. PRODUCT CARD REFINEMENT --- */
/* (Assuming these classes are inside your PHP function) */
.bd-trending__item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.bd-trending__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--brand-green);
}

.bd-product__title a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--rich-black);
    text-decoration: none;
    transition: 0.3s;
}

.bd-product__title a:hover {
    color: var(--brand-green);
}

.bd-product__new-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--brand-green);
}

/* --- 5. BUTTON --- */
.premium-black-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--rich-black);
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
    border: none;
}

.premium-black-btn:hover {
    background: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(105, 156, 71, 0.3);
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 768px) {
    .global-premium-title { font-size: 32px; }
    .premium-tab-nav { justify-content: center !important; }
}

/*end Snacks*/


/* Traditional Taste*/
/* --- BRAND COLORS --- */
:root {
    --brand-green: #699C47;
    --deep-black: #111111;
    --text-grey: #555555;
}

/* --- TYPOGRAPHY REFINEMENTS --- */

.global-premium-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-black);
}

.text-brand-green {
    color: var(--brand-green);
}

.global-cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--brand-green);
    display: block;
}

.premium-description-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--text-grey);
}

.global-tagline-style {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    font-size: 14px;
    display: block;
}

/* --- SECTION DESIGN ELEMENTS --- */

.brand-accent-line {
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin-top: 10px;
}

.motto-box-strip {
    border-left: 5px solid var(--brand-green);
    padding: 15px 25px;
    background: #f9fdf7;
    border-radius: 0 15px 15px 0;
}

.motto-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-size: 14px;
}

.feature-status-card {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #222;
    font-size: 15px;
    transition: 0.3s;
}

.feature-status-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-green {
    color: var(--brand-green);
}

/* --- IMAGE & BADGE --- */

.main-about-img {
    width: 100%;
    border-radius: 60px 15px 60px 15px;
    border: 10px solid #ffffff;
    transition: 0.5s ease;
}

.organic-floating-badge {
    position: absolute;
    bottom: 25px;
    right: 20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 5px solid var(--brand-green);
}

.badge-icon {
    background: var(--brand-green);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* --- BUTTON & CONTACT --- */
.premium-pill-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--deep-black);
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
    border: none;
}

.premium-pill-btn:hover {
    background: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(105, 156, 71, 0.3);
}

.contact-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    display: block;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-black);
    text-decoration: none;
    border-bottom: 2px solid var(--brand-green);
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--brand-green);
}

/* --- RESPONSIVE --- */

@media (max-width: 991px) {
    .global-premium-heading { font-size: 36px; }
    .ps-lg-5 { padding-left: 15px !important; }
}

@media (max-width: 768px) {
    .organic-floating-badge { 
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -40px;
        margin-left: 20px;
        width: fit-content;
    }
}
/*end Traditional Taste*/

/*powder*/
/* --- SECTION STYLING --- */
.powder-section-bg {
    position: relative;
    padding: 120px 0;
    /* Clean Overlay for Readability */
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('img/powder.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

/* --- TYPOGRAPHY REFINEMENT --- */
.global-premium-heading {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #111111; /* Rich Black */
    line-height: 1.2;
}

.text-brand-green {
    color: #699C47; /* Logo Green */
}

.global-cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: #699C47;
    margin-bottom: 5px;
    display: block;
}

.premium-tagline-style {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-top: 10px;
}

.brand-accent-line {
    width: 70px;
    height: 4px;
    background: #699C47;
    margin-top: 20px;
    border-radius: 2px;
}

/* --- PRODUCT CARD STYLING (Powder Section Specific) --- */
.powder-section-bg .bd-trending__item {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.powder-section-bg .bd-trending__item:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 25px 50px rgba(105, 156, 71, 0.15) !important;
    border-color: #699C47 !important;
}

/* --- PREMIUM BUTTON --- */
.premium-pill-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #111111;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium-pill-btn:hover {
    background: #699C47;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(105, 156, 71, 0.3);
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 991px) {
    .powder-section-bg {
        padding: 80px 0;
        background-attachment: scroll;
    }
    .global-premium-heading {
        font-size: 38px;
    }
}
/* end Powders*/

/*NO PRESERVATIVES*/
/* --- FEATURES LAYOUT --- */
.premium-features-section {
  
}

.features-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* --- ICON STYLING --- */
.icon-circle-bg {
    width: 180px;
    height: 180px;
    background: #f9fdf7; /* Light green tint */
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.icon-circle-bg img {
    height: 110px; /* Uniform height */
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* --- TEXT STYLING --- */
.premium-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #111111; /* Rich Black */
    line-height: 1.4;
    text-transform: uppercase;
}

/* --- HOVER EFFECTS --- */
.premium-feature-item:hover .icon-circle-bg {
    background: #ffffff;
    border-color: #699C47; /* Logo Green */
    box-shadow: 0 15px 30px rgba(105, 156, 71, 0.15);
    transform: translateY(-10px);
}

.premium-feature-item:hover .icon-circle-bg img {
    transform: scale(1.1);
}

.premium-feature-item:hover .premium-feature-title {
    color: #699C47;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .features-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .icon-circle-bg {
        width: 150px;
        height: 150px;
    }
    .icon-circle-bg img {
        height: 90px;
    }
}

@media (max-width: 575px) {
    .features-grid-wrapper {
        grid-template-columns: 1fr;
    }
}
/*end NO PRESERVATIVES*/

/*why choose*/
/* Section background clear ga clean white ga set cheshanu */
.premium-why-choose {
    background: #ffffff;
    padding: 100px 0;
}

/* Headings: Playfair Display vaadanu, About section heading laaga */
.global-premium-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.text-brand-green {
    color: #699C47;
}

/* Script Font: Great Vibes (About section cursive style) */
.global-cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: #699C47;
    display: block;
}

/* Sub-title: Plus Jakarta Sans (Powder section sub-title style) */
.premium-tagline-style {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-top: 5px;
}

.brand-accent-line {
    width: 60px;
    height: 3px;
    background: #699C47;
}

/* Items Typography: Jakarta Sans for readability */
.item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #111111;
}

.item-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: #fff;
    line-height: 1.6;
}

/* Icons & Layout */
.choose-icon-holder {
    min-width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
}

.choose-icon-holder img {
    width: 30px;
    height: auto;
}

/* Animation for the Center Image */
.floating-img {
    animation: bounceEffect 6s ease-in-out infinite;
    max-height: 480px;
}

@keyframes bounceEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Compatibility */
@media (max-width: 991px) {
    .global-premium-heading { font-size: 32px; }
    .choose-content.text-end { text-align: left !important; }
    .choose-item-box { flex-direction: row-reverse; justify-content: flex-end; }
}
/*end why choose*/

/*counter*/
/* Container Background & Padding */
.napalli-counter-section {
    padding: 1s0px 0;
    background-color: #fff; /* or match your site bg */
}

.counter-card-wrapper {
    background-color: #00b449; /* Your theme green */
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Grid Layout */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* Individual Item Styling */
.counter-item {
    padding: 10px;
}

.counter-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plus {
    color: #ffcc00; /* Optional: Make the + a different color for pop */
    margin-left: 5px;
}

.counter-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on tablets */
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .counter-grid {
        grid-template-columns: 1fr; /* 1 column on small phones */
    }
    .counter-card-wrapper {
        padding: 40px 20px;
    }
}
/* end Counter-->


/*Brand-area-start */
/* Background ni clean ga marchanu - Screenshots lo unna texture sync avvali kabatti */
.brand-section-clean {
    background-color: transparent; 
    padding: 100px 0 80px;
}

/* Headings Consistency - Playfair Display */
.global-premium-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.text-brand-green {
    color: #699C47;
}

/* Script Font Style - Great Vibes */
.global-cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #699C47;
    display: block;
}

/* Sub-title Style - Plus Jakarta Sans */
.premium-tagline-style {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #666;
    margin-top: 5px;
}

.brand-accent-line {
    width: 60px;
    height: 3px;
    background: #699C47;
    border-radius: 10px;
}

/* Logo Styling */
.brand-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-item img {
    max-height: 80px; 
    max-width: 170px;
    width: auto;
    height: auto;
    /* Premium Look kosam grayscale filter initial ga (optional, lekapothe line ni remove cheyandi) */
    filter: grayscale(100%); 
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Swiper Fixes */
.swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .global-premium-heading { font-size: 32px; }
    .global-cursive-text { font-size: 28px; }
    .brand-item { height: 100px; }
    .brand-item img { max-height: 55px; }
}
/*end Brand-area-start */


/*testimonials*/
/* Section Reset */
.testimonials-section {
    background-color: #ffffff;
    overflow: hidden;
}

/* Typography Consistency */
.global-premium-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #111111;
}

.text-brand-green {
    color: #699C47;
}

.global-cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #699C47;
    display: block;
}

.premium-tagline-style {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-top: 5px;
}

.brand-accent-line {
    width: 60px;
    height: 3px;
    background: #699C47;
}

/* Testimonial Cards Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #699C47;
}

.quote-icon {
    color: rgba(105, 156, 71, 0.2);
    font-size: 30px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
}

/* Customer Profile Styling */
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.photo-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.customer-photo, .customer-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #699C47;
}

.customer-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    color: #699C47;
    font-size: 20px;
}

.customer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
}

.customer-location {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .global-premium-heading { font-size: 32px; }
    .testimonial-card { padding: 30px; }
}
/*end Testimonials*/



/*add to cart*/
    /* మీ పాత స్టైల్స్ అన్నీ అలాగే ఉన్నాయి */
    .added-to-cart, .added-to-wishlist {
        position: fixed !important; 
        top: 60px !important;       
        left: 50% !important;        
        transform: translateX(-50%) !important; 
        z-index: 99999 !important;   
        display: none;              
        width: 90%;                 
        max-width: 400px;           
        padding: 12px 20px;
        border-radius: 6px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        font-weight: bold;
    }
    .added-to-cart { background-color: #28a745; color: white; }
    .added-to-wishlist { background-color: #007bff; color: white; }
    
    .global-alert-container {
        position: fixed !important; 
        top: 65px !important;       
        left: 50% !important;       
        transform: translateX(-50%) !important; 
        z-index: 9999 !important;   
        width: 90% !important;      
        max-width: 400px !important; 
    }

    @media (max-width: 767.98px) {
        .mobile-header-status, .bd-top-bar-area, .bd-header-right { display: none !important; }
        .product-grid-container .col-6 { width: 100% !important; }
    }

/* end add to cart*/


/* క్లోజ్ బటన్ స్టైలింగ్ (మీరు దీనిని main.css లో చేర్చవచ్చు) */
#closeAlertBtn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.8;
    position: absolute; /* alert లోపల కుడి చివర ఉండటానికి */
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    color: inherit; /* మెసేజ్ రంగును తీసుకుంటుంది */
}
/* మెసేజ్ బాక్స్ స్థానం (మీరు ముందే సెట్ చేసినది) */
.message-alert-container {
    position: fixed; 
    top: 10px; 
    right: 80px; 
    z-index: 1050; 
    width: 300px; 
}



/* --- 1. GLOBAL RESET & FONTS --- */
:root {
    --brand-green: #699C47;
    --deep-black: #111111;
    --soft-para: #555555;
}

/* --- 2. BANNER (MOBILE FIX) --- */
.main-slider-container {
    width: 100%;
    height: 750px; 
    background: #eee;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .main-slider-container { height: 280px !important; } /* Balanced height for mobile */
    .swiper-button-next, .swiper-button-prev { transform: scale(0.5); }
}

/* --- 3. PRODUCT GRID (FORCING 2 ROWS/COLUMNS) --- */
/* This ensures "Na'Palli Snacks" and "Powders" show 2 products per row */
.product-grid-container .row, 
.bd-trending__content .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -5px;
    margin-left: -5px;
}

@media (max-width: 768px) {
    /* Set column width to exactly 50% for 2 rows */
    .product-grid-container [class*='col-'], 
    .bd-trending__item-wrapper,
    .row.gy-4 > div {
        width: 50% !important; 
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 5px !important; /* Smaller gap for mobile */
    }

    .bd-trending__item {
        padding: 10px;
        height: 100%;
    }

    .bd-product__title a {
        font-size: 14px;
        line-height: 1.3;
        display: block;
        margin-top: 5px;
    }

    .bd-product__new-price {
        font-size: 15px;
    }
}

/* --- 4. ADD TO CART / WISHLIST / VIEW ICONS FIX --- */
/* Making icons look better on small product cards */
@media (max-width: 768px) {
    .bd-product__action {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }

    .bd-product__action a, 
    .bd-product__action button {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 12px !important;
        border-radius: 50%;
    }
    
    /* WhatsApp Floating Button Adjustment */
    #whatsapp-chat-widget, .whatsapp-icon {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 15px !important;
    }
}

/* --- 5. ABOUT SECTION & IMAGES --- */
.rounded-custom, .main-about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .global-main-title, .global-premium-heading { font-size: 26px !important; }
    .global-cursive-text, .global-cursive-top { font-size: 24px !important; }
    
    /* Centering images on mobile */
    .about-visual-box, .about-img-wrapper {
        text-align: center;
        margin-top: 20px;
    }
    
    .rounded-custom {
        border-radius: 40px 15px !important;
        border: 5px solid #fff !important;
    }

    /* Floating badge fix for traditional taste section */
    .organic-floating-badge {
        position: relative !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: -20px auto 20px !important;
        width: fit-content;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* --- 6. WHY CHOOSE SECTION (LIST ALIGNMENT) --- */
@media (max-width: 991px) {
    .choose-content.text-end { text-align: left !important; }
    .choose-item-box { 
        flex-direction: row !important; 
        text-align: left !important;
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .floating-img {
        max-height: 250px;
        margin: 20px 0;
    }
}

/* --- 7. NO PRESERVATIVES (2x2 GRID) --- */
@media (max-width: 768px) {
    .features-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .icon-circle-bg {
        width: 100px !important;
        height: 100px !important;
    }
    .icon-circle-bg img {
        height: 60px !important;
    }
}

/* --- 8. ALERTS (CART POPUPS) --- */
.added-to-cart, .added-to-wishlist, .global-alert-container {
    position: fixed !important;
    top: 70px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 85% !important;
    z-index: 10000 !important;
}

/*millet Snack*/
/* Font Styles like Logo */
.cursive-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: #2e7d32;
    display: block;
    margin-bottom: -10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #333;
    font-weight: 700;
    text-transform: capitalize;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #81b441; /* Logo light green color */
    margin: 10px auto;
}

.millet-scroll-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.millet-wrapper {
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    cursor: pointer;
}

.millet-track {
    display: flex;
    gap: 50px;
    animation: scroll-millet 30s linear infinite;
    width: max-content;
}

/* Card as Link */
.millet-card {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    text-decoration: none !important; /* Removes underline */
    display: block;
    transition: all 0.3s ease;
}

.millet-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin: 0 auto 15px;
    background: #fff;
    transition: all 0.4s ease;
}

.millet-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.millet-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.view-btn {
    font-size: 12px;
    color: #81b441;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.3s;
}

/* Hover Effects */
.millet-card:hover {
    transform: translateY(-10px);
}

.millet-card:hover .millet-circle {
    border-color: #2e7d32;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.millet-card:hover .view-btn {
    opacity: 1;
}

@keyframes scroll-millet {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.millet-wrapper:hover .millet-track {
    animation-play-state: paused;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .cursive-title { font-size: 1.8rem; }
    .millet-circle { width: 120px; height: 120px; }
    .millet-card { width: 140px; }
}
/*end Millet snack*/

