@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary-red: #c2272d;
    --accent-orange: #ffb800;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

[dir="rtl"] :root {
    --font-main: 'Cairo', sans-serif;
    --font-heading: 'Cairo', sans-serif;
}

[dir="rtl"] .hero-image-wrap {
    right: auto !important;
    left: -50px !important;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark-bg);
}

.premium-landing-wrapper {
    overflow-x: hidden;
}

/* Header Tweaks */
.section-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-wrap h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    color: var(--primary-red);
}

.brand-wrap span {
    color: var(--accent-orange);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-premium {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(194, 39, 45, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(194, 39, 45, 0.5);
    color: var(--white);
}

.hero-image-wrap {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 1;
}

.hero-image-wrap img {
    width: 100%;
    filter: contrast(140%) brightness(95%) drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: floating-burger 6s ease-in-out infinite;
    mix-blend-mode: screen; /* Removes black backgrounds from JPEG assets */
}

@keyframes floating-burger {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Side Cards */
.side-card {
    border-radius: 30px;
    height: 240px;
    margin-bottom: 20px;
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.side-card.has-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-section .col-lg-4 {
        margin-top: 30px;
    }
    .side-card {
        margin-top: 20px;
    }
}

.card-burger-1 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://source.unsplash.com/800x600/?burger');
    background-size: cover;
}

.card-burger-2 {
    background: #ffb800;
}

.side-card h4 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 10px;
    z-index: 2;
}

.side-card .price {
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
}

/* Category Cards */
.category-card {
    border-radius: 25px;
    padding: 35px;
    height: 320px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Specific Category Backgrounds */
.cat-purple { background: url('https://images.unsplash.com/photo-1571091718767-18b5b1457add?w=500&auto=format&fit=crop'); }
.cat-orange { background: url('https://images.unsplash.com/photo-1541518763669-27fef04b14ea?w=500&auto=format&fit=crop'); }
.cat-red { background: url('https://images.unsplash.com/photo-1473093226795-af9932fe5856?w=500&auto=format&fit=crop'); }
.cat-green { background: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=500&auto=format&fit=crop'); }

.category-card h3 {
    font-weight: 800;
    font-size: 28px;
    max-width: 200px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.category-card .cat-img {
    display: none; /* Hide the smaller floating image as we now have high-res backgrounds */
}

.category-card:hover .cat-img {
    transform: scale(1.1) rotate(-5deg);
}

/* Premium Product Card Styles */
.premium-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.premium-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.premium-product-card .card-image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-product-card .item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-product-card:hover .item-img {
    transform: scale(1.1);
}

.premium-product-card .badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.premium-product-card .card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-product-card .product-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-product-card .category-label {
    font-size: 11px;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    height: 16px;
}

.premium-product-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}

.premium-product-card .current-price {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.premium-product-card .old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.premium-product-card .rating-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.add-to-cart-btn {
    width: 36px;
    height: 36px;
    background: #ea580c; /* Modern Orange */
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.add-to-cart-btn:hover {
    transform: scale(1.15) rotate(90deg);
    background: #c2410c;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.5);
}

.add-to-cart-btn i {
    font-size: 18px;
    font-weight: bold;
}

.card-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 5;
}

.premium-product-card:hover .card-action-overlay {
    opacity: 1;
}

.quick-view-btn {
    width: 44px;
    height: 44px;
    background: white;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium-product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #0f172a;
    color: white;
}




/* Premium Brand Card */
.premium-brand-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.premium-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #008037;
}

.premium-brand-card a {
    text-decoration: none;
    color: inherit;
}

.brand-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 12px;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.premium-brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-details h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-meta .rating {
    background: #fff5eb;
    color: #ff8c00;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.brand-meta .delivery-time {
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

/* Most Ordered Premium Cards */
.most-ordered-card {
    position: relative;
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.most-ordered-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.15);
}

.card-save-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: 0.3s;
}

.card-save-icon i { font-size: 18px; }

.card-save-icon:hover {
    background: white;
    color: #008037;
    transform: scale(1.1);
}

.card-save-icon.active {
    background: white;
    color: #008037;
    border-color: #008037;
    animation: heartBeat 0.3s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.card-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.most-ordered-card h4 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    line-height: 1.1;
}

.most-ordered-card .product-desc {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-row {
    width: 100%;
}

.btn-add-to-cart {
    background: white;
    color: black !important;
    padding: 16px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-add-to-cart:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Slider Overrides for Most Ordered */
.most-ordered-slider .slick-list {
    overflow: visible;
    padding: 20px 0 !important;
}

.most-ordered-slider .slick-track {
    display: flex !important;
}

.most-ordered-slider .slick-slide {
    height: inherit !important;
    padding: 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.most-ordered-slider .slick-active {
    opacity: 1;
}

.most-ordered-section .slick-arrow {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center;
    justify-content: center;
}
/* Mobile App Promo Section */
.app-promo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 40px !important;
    position: relative;
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary-red);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
}

.app-promo-text {
    position: relative;
    z-index: 1;
}

.app-promo-card .display-4 {
    font-size: 56px;
    letter-spacing: -2px;
}

.accent-line {
    color: var(--accent-orange);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accent-line::after {
    content: '';
    height: 2px;
    width: 40px;
    background: var(--accent-orange);
}

.btn-store {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.btn-store:hover {
    background: white !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4) !important;
}

.btn-store:hover .text-white, 
.btn-store:hover .h6,
.btn-store:hover i {
    color: #000 !important;
}

.app-mockup-wrap {
    position: relative;
    z-index: 1;
}

.app-mockup-img {
    max-height: 500px;
    animation: floating-mockup 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

@keyframes floating-mockup {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@media (max-width: 991px) {
    .app-promo-card .display-4 {
        font-size: 38px;
    }
    .app-promo-card {
        padding: 40px 20px !important;
        text-align: center;
    }
    .store-buttons {
        justify-content: center;
    }
    .accent-line {
        justify-content: center;
    }
    .app-mockup-img {
        max-height: 400px;
        margin-top: 30px;
    }
}

.most-ordered-section .slick-prev { left: -25px; }
.most-ordered-section .slick-next { right: -25px; }

.most-ordered-section .slick-arrow:before {
    color: black;
    font-family: 'feather';
    font-size: 22px;
    opacity: 1;
}

.most-ordered-section .slick-prev:before { content: "\e910"; }
.most-ordered-section .slick-next:before { content: "\e912"; }

/* Mobile Cart Icon & Badge */
.mobile-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #008037;
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0,128,55,0.3);
    border: 2px solid #fff;
    z-index: 10;
}

[dir="rtl"] .cart-badge {
    right: auto;
    left: -8px;
}

/* Empty Cart Enhancement */
.empty-cart-msg i.display-4 {
    color: #e9ecef !important;
}

.empty-cart-msg p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #288649 !important;
    margin-top: 20px;
}

.empty-cart-msg .btn-outline-success {
    border-color: #288649 !important;
    color: #288649 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    margin-top: 25px !important;
    transition: all 0.3s ease;
}

.empty-cart-msg .btn-outline-success:hover {
    background-color: #288649 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 134, 73, 0.3);
}

/* Premium Empty State System */
.siddhi-main-body {
    min-height: 80vh !important;
    display: flex;
    flex-direction: column;
}

.order-body, #completed_orders, #pending_orders, #rejected_orders, #cancelled_orders {
    flex-grow: 1;
}

.premium-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    animation: fadeIn 0.6s ease-out;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    color: #cbd5e0;
}

.empty-state-icon i {
    font-size: 50px;
}

.empty-state-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #288649;
    opacity: 0.1;
    animation: pulse-ring 2s infinite;
}

.premium-empty-state h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.premium-empty-state p {
    color: #718096;
    max-width: 320px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.empty-state-btn {
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.empty-state-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(40, 134, 73, 0.2);
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(0.95); opacity: 0.2; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism Product Card System */
.glass-product-card {
    height: 480px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    background: #000; /* Fallback for image loading */
}

.glass-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.glass-product-card .card-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0 !important;
}

.glass-product-card img.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.9);
}

.glass-product-card:hover img.product-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.glass-product-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.75) 35%, 
        rgba(0, 0, 0, 0.2) 70%, 
        transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
    transition: all 0.5s ease;
}

.glass-product-card:hover .card-overlay {
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.85) 45%, 
        rgba(0, 0, 0, 0.3) 80%, 
        transparent 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.glass-product-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: left;
    z-index: 3;
    color: white !important;
    background: transparent !important;
}

.glass-product-card .product-title {
    font-weight: 900;
    font-size: 1.8rem;
    color: white !important;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.glass-product-card .product-title a {
    color: white !important;
    text-decoration: none;
}

.landing-food-title,
.landing-food-title a {
    color: #fff !important;
}

.glass-product-card .product-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.glass-product-card .product-price .old-price,
.glass-product-card .product-price s {
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.glass-product-card .card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.glass-add-to-cart {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    background: white;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-transform: none;
}

.glass-select-option {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
    text-decoration: none !important;
}

.glass-select-option:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.glass-add-to-cart:hover {
    background: #f8f8f8;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #000;
}

.glass-add-to-cart i {
    font-size: 1.2rem;
}

/* Badge System */
.glass-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.glass-badge-veg {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.glass-badge-nonveg {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Rating Star */
.glass-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);/* Advanced Premium Overrides */


/* Typography & Colors Overrides */
.glass-product-card .current-price {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.glass-product-card .old-price {
    font-size: 0.9rem !important;
    opacity: 0.5;
    color: white !important;
}

.glass-product-card .product-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.glass-product-card .food-category {
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    font-weight: 700;
    font-size: 0.7rem;
    color: #f97316;
}
}

.glass-rating i {
    color: white;
}

.glass-rating {
    color: white;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
}

.glass-rating span {
    display: none; /* Hide number as per design which uses a bookmark icon or similar, but we'll use star */
}


