@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Anek+Bangla:wght@400;500;600;700&family=Fondamento&family=Poppins:wght@400;500;600;700&display=swap');
/* =================================
   ROOT VARIABLES (Code 2 theke newa)
   ================================= */
:root {
    --primary-color: #A3C86C;
    --primary-dark: #7D9A4D;
    --primary-light: #B8D88A;
    --primary-extra-light: #F3F7E1;
    --accent-color: #F9D34E;
    --accent-dark: #E1B93F;
    --accent-light: #FFEC85;
    --background-white: #FFFFFF;
    --background-light: #F1F8E4;
    --overlay-bg: rgba(0, 0, 0, 0.85);
    --text-color: #4F4A35;
    --text-light: #7D7B55;
    --text-lighter: #A4A38F;
    --text-on-primary: #FFFFFF;
    --divider-color: rgba(163, 200, 108, 0.2);
    --hover-gray: #E8E9E0;
    --error-red: #B71C1C;
    --error-red-dark: #9A0000;
    --rating-color: #FFC107;
    --price-color: #FF5722;
    --rating-bg: #F0F9E5;
    --header-height: 60px;
}




/* Loader */
#loader {
    height: 100%;
    width: 100%;
    background-color: var(--primary-dark);
    position: fixed;
    z-index: 9999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1 {
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right, var(--background-white), var(--primary-light));
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: linear;
}

#loader h1:nth-child(2) {
    animation-delay: 1.5s;
}

#loader h1:nth-child(3) {
    animation-delay: 2.5s;
}

@keyframes load {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width:600px) {
    #loader h1 {
        font-size: 11vw;
    }
}




/* =================================
   UPGRADED & IMPROVED HEADER CSS
   ================================= */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 15px;
    /* আরও ভালো ব্যালেন্সের জন্য প্যাডিং অ্যাডজাস্ট করা হয়েছে */
    height: 110px;
    box-sizing: border-box;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#main-header.scrolled {
    background-color: var(--primary-dark);
    padding: 6px 15px;
    /* স্ক্রল করার সময় প্যাডিং */
}
/* Make header solid green when menu is open, even at the top */
html.nav-open #main-header {
    background-color: var(--primary-dark);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    /* স্পেস অ্যাডজাস্ট করা হয়েছে */
}

/* === ব্র্যান্ডের নামের নতুন স্টাইল === */
.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    /* দুটি লাইনের জন্য সাইজ সামান্য বড় করা হয়েছে */
    color: var(--text-on-primary);
    font-weight: 700;
    /* আরও বোল্ড */
    margin: 0;
    line-height: 1.1;
    /* দুটি লাইনের জন্য অ্যাডজাস্ট করা হয়েছে */
    text-transform: uppercase;
    /* অনুরোধ অনুযায়ী */
    transition: font-size 0.3s ease;
}

#main-header.scrolled .brand-name {
    font-size: 1em;
    /* স্ক্রল করার সময় ছোট হবে */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    /* আইকনগুলোর মধ্যে ফাঁকা জায়গা বাড়ানো হয়েছে */
}

/* === সেরা আইকন স্টাইল (আপগ্রেডেড) === */
.header-icon{
    color: var(--text-on-primary);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    font-size: 1.3em;
    /* আইকন বড় এবং স্পষ্ট করা হয়েছে */
    padding: 5px;
    /* ক্লিক করার জায়গা বাড়ানো হয়েছে */
}

.header-icon:hover{
    opacity: 0.8;
    transform: scale(1.1);
    /* হোভার করলে সুন্দর জুম এফেক্ট */
}






/* সার্চ বার (Updated for consistent look) */
.search-link-wrapper {
    position: relative;
    width: 100%;
    display: block; /* A tag as block */
}

/* === NEW V5 SEARCH BAR STYLES (Adapted from menu.css) === */
.search-container.v5 {
    position: relative;
    width: 100%;
}

/* Base input style */
.search-container.v5 input[type="text"] {
    width: 100%;
    height: 48px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background-color: var(--primary-extra-light); /* Using a theme variable */
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding: 0 45px 0 45px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    caret-color: var(--primary-color);
    -webkit-appearance: none;
    box-sizing: border-box; /* Important for width calculation */
    /* Home Page specific: Keep it non-interactive to force link click */
    pointer-events: none; 
}

/* Scrolled state for the input */
#main-header.scrolled .search-container.v5 input[type="text"] {
    background-color: var(--background-white);
}


.search-container.v5 .fas.fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-lighter);
    transition: color 0.3s ease;
    z-index: 1;
    font-size: 1.1em; /* Adjusted for better visibility */
}


/* Animated placeholder's style */
#placeholder-container-home {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.2s ease;
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    right: 45px;
}

#placeholder-text-home {
    color: var(--text-lighter); /* Adjusted to match Menu CSS */
    font-size: 1rem;
    transition: opacity 0.4s ease-in-out;
}



/* =================================
   NYKAA STYLE HERO SECTION (MODIFIED FOR DYNAMIC HEIGHT)
   ================================= */
.hero {
    width: 100%;
    position: relative;
    /* height এবং min-height সরিয়ে দেওয়া হয়েছে */
}

.hero-slideshow-wrapper {
    width: 100%;
    height: auto; /* উচ্চতা এখন জাভাস্ক্রিপ্ট দ্বারা নিয়ন্ত্রিত হবে */
    min-height: 250px; /* লোড হওয়ার সময় একটি ন্যূনতম উচ্চতা */
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    /* উচ্চতা পরিবর্তনের জন্য স্মুথ ট্রানজিশন */
    transition: height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* === Hero Section Loading Placeholder === */
.hero-slideshow-wrapper:empty::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--background-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.slideshow {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

/* === Image fade-in effect & dynamic height styles === */
.hero-img {
    width: 100%;
    height: auto; /* ছবির আসপেক্ট রেশিও ঠিক রাখার জন্য */
    display: block; /* অতিরিক্ত স্পেস দূর করার জন্য */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* object-fit: cover; সরিয়ে দেওয়া হয়েছে কারণ এখন ছবির পুরোটা দেখা যাবে */
}
.hero-img.loaded {
    opacity: 1;
}


.dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background-color: #FFFFFF;
    width: 24px;
    border-radius: 5px;
}

/* =================================
   NEW SECTIONS (Code 2 theke newa)
   ================================= */

/* Vej Thali Section */
.vej-thali {
    padding: 40px 10px;
    text-align: center;
}

.vej-thali-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-extra-light), var(--primary-light));
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vej-thali-text h2 {
    font-size: 2.5em;
    font-family: "Amarante", serif;
    font-weight: 400;
    color: var(--primary-dark);
    text-decoration: underline;
    text-transform: capitalize;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .vej-thali-text h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.vej-thali-date {
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.vej-thali-items {
    list-style-type: disc;
    padding: 0;
    margin: 50px;
}

.vej-thali-items li {
    font-family: "Anek Bangla", sans-serif;
    font-size: 1.4em;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-color);
}

.vej-thali h1 {
    font-family: 'poppins', cursive;
    font-size: 1.2em;
    color: var(--price-color);
    margin: 10px 0;
    font-weight: bold;
}

.vej-thali-items li:last-child {
    border-bottom: none;
}

.order-now-btn {
    display: block;
    background-color: var(--primary-dark);
    color: var(--text-on-primary);
    text-align: center;
    padding: 12px 25px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    width: 200px;
    margin: 20px auto;
}

.order-now-btn:hover {
    background-color: var(--primary-color);
}

/* ======================================================= */
/* ★★★ FINAL REAL RATIO PREMIUM OFFERS SECTION STYLES ★★★ */
/* ======================================================= */

.offers-premium {
    background-color: var(--background-white);
    padding: 50px 0;
    overflow: hidden;
}

/* Common heading style */
.bestsellers-heading {
    text-align: center;
    font-size: 2.5em;
    font-family: "Amarante", serif;
    font-weight: 400;
    color: var(--primary-dark);
    text-transform: capitalize;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.offers-carousel-wrapper {
    position: relative;
}

.offers-carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 25px;
    gap: 20px;
    scrollbar-width: none;
}

.offers-carousel-container::-webkit-scrollbar {
    display: none;
}

.offer-card-premium {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--background-light); /* Added for consistency */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.offer-card-premium .offer-image-wrapper {
    width: 100%;
    /* Fixed height or aspect-ratio shoriye deoya hoyeche */
    background-color: #f4f4f4; /* Image load howar age placeholder color */
}

.offer-card-premium img {
    width: 100%;
    height: auto; /* ★ IMAGE-ER REAL RATIO BOJAY RAKHBE ★ */
    display: block; /* Extra space remove korar jonno */
    transition: transform 0.4s ease;
}

.offer-card-premium:hover img {
    transform: scale(1.03); /* Subtle hover effect */
}

/* Dots-er style */
.offers-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.offers-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border: none;
    padding: 0;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offers-carousel-dots .dot.active {
    background-color: var(--primary-dark);
    transform: scale(1.2);
}


/* Responsive Design */
@media (min-width: 768px) {
    .offer-card-premium {
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .offer-card-premium {
        flex-basis: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    .bestsellers-heading {
        font-size: 2rem;
    }
}

/* Explore Our Bestsellers Section */
.bestsellers {
    color: var(--text-color);
    background-color: var(--background-white);
    text-align: center;
}

.bestsellers-heading {
    font-size: 2.5em;
    font-family: "Amarante", serif;
    font-weight: 400;
    color: var(--primary-dark);
    text-transform: capitalize;
    padding-top: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .bestsellers-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.bestsellers-carousel {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    touch-action: pan-y;
}

.bestsellers-items {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.bestseller-item {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    transition: opacity 0.5s ease;
}

.bestseller-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.bestseller-item h3 {
    font-family: 'Fondamento', cursive;
    margin: 10px 0;
    font-size: 1.5em;
    color: var(--primary-dark);
}

.bestseller-item p {
    font-family: 'poppins', cursive;
    margin-bottom: 10px;
    color: var(--text-color);
}

.bestseller-item .price {
    font-size: 1.2em;
    color: var(--price-color);
    margin: 10px 0;
    font-weight: bold;
}

.view-details {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-dark);
    color: var(--text-on-primary);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-details:hover {
    background-color: var(--primary-color);
}

.bestsellers .arrow {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 2em;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.bestsellers .left-arrow {
    left: -1px;
}

.bestsellers .right-arrow {
    right: -1px;
}

.bestsellers-dots {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 0;
}

.bestsellers-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    position: relative;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.bestsellers-dot.active {
    background-color: var(--primary-light);
}

@media (max-width: 768px) {
    .bestseller-item {
        flex: 0 0 50%;
    }

    .bestsellers .arrow {
        visibility: hidden;
    }
}

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

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 80px 0;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.testimonials-section .section-title {
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5em;
    font-family: "Amarante", serif;
    font-weight: 400;
    color: var(--primary-dark);
    text-transform: capitalize;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.testimonials-carousel {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    width: 100%;
    padding: 40px;
    background: var(--background-white);
    border-radius: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--divider-color);
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rating {
    color: var(--rating-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-family: 'poppins', sans-serif;
}

.customer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.customer-name {
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'Fondamento', cursive;
    color: var(--primary-dark);
}

.customer-location {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .testimonial {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial {
        padding: 25px 15px;
    }
}

/* =================================
   STICKY FOOTER NAVIGATION
   ================================= */
.sticky-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--background-white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.sticky-footer-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sticky-footer-nav .nav-link i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.sticky-footer-nav .nav-link:hover {
    color: var(--primary-dark);
}

.sticky-footer-nav .nav-link.active {
    color: var(--primary-dark);
}

/* ★ IMPORTANT: Jate footer-er content main footer-er niche na chole jay ★ */
body {
    /* Adjust this value if your sticky footer height changes */
    padding-bottom: 40px;
}



/* Form Popup Styles */
.form-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-popup-container.active {
    display: flex;
    opacity: 1;
}

.form-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.close-form-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    background: var(--primary-extra-light);
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-form-popup:hover {
    transform: rotate(180deg);
}

#formIframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Thumbnail Styles */
.form-thumbnail {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: auto;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
    /* Initially visible */
}

.form-thumbnail:hover {
    transform: translateY(-5px) scale(1.05);
}

.form-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* এই কোডটি আগের body.no-scroll-এর জায়গায় বসান */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
    /* কিছু মোবাইল ব্রাউজারের জন্য এটি জরুরি */
}


/* Add to Home Screen Banner - Modern Frosted Look */
.a2hs-banner {
    position: fixed;
    bottom: 70px;
    /* Adjusted to be above sticky footer */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', sans-serif;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.a2hs-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.banner-content p {
    font-size: 0.95em;
    margin: 0;
    color: #ffffff;
    flex: 1;
}

.install-button {
    background-color: var(--background-white);
    color: var(--primary-dark);
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85em;
    font-weight: bold;
    cursor: pointer;
}



/* Hero Section এ প্রতিটি স্লাইডকে লিংক বানানোর জন্য স্টাইল */
.hero-slide-link {
    display: block;
    flex-shrink: 0; /* এটি খুব জরুরি, স্লাইডকে সঙ্কুচিত হতে বাধা দেয় */
    width: 100%;
    height: 100%;
}






/* =================================
   HOMEPAGE SKELETON PLACEHOLDERS
   ================================= */
.thali-skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 100%;
}
.thali-skeleton-wrapper .skeleton-line {
    width: 80%;
    height: 20px;
    margin: 0 auto;
}
.thali-skeleton-wrapper .skeleton-line.title {
    height: 35px;
    width: 60%;
    margin-bottom: 10px;
}
.thali-skeleton-wrapper .skeleton-line.price {
    height: 25px;
    width: 30%;
    margin-top: 10px;
}

.card-skeleton {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-skeleton .skeleton-image {
    width: 100%;
    height: 150px;
}
.card-skeleton .skeleton-text {
    height: 20px;
    width: 80%;
}
.card-skeleton .skeleton-price {
    height: 20px;
    width: 40%;
}

@media (min-width: 768px) {
    .card-skeleton {
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media (min-width: 992px) {
    .card-skeleton {
        flex-basis: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }
}