/*
 * EazyEats Professional Theme v4 — FULL REDESIGN
 * Matched to logo: #E30613 bold red + white
 *
 * TO REVERT: Delete this file + remove the <link> from
 * resources/views/layouts/app.blade.php
 * Also: git checkout -- resources/views/
 */

/* ========================================================
   1. PALETTE (logo-matched)
   ======================================================== */
:root {
    --ez: #E30613;
    --ez-dk: #c40511;
    --ez-lt: #ff4757;
    --ez-ghost: rgba(227, 6, 19, 0.06);
    --ez-glow: rgba(227, 6, 19, 0.18);
    --dark: #1b1b2f;
    --dark2: #2d2d44;
    --txt: #1a1a1a;
    --txt2: #555;
    --txt3: #999;
    --bg: #f4f5f7;
    --white: #fff;
    --border: #eaeaea;
    --green: #16a34a;
    --star: #f59e0b;
}


/* ========================================================
   2. GLOBAL
   ======================================================== */
body {
    -webkit-font-smoothing: antialiased;
    background: var(--bg) !important;
    color: var(--txt);
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--txt);
}

a:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--ez) !important;
    border-color: var(--ez) !important;
}

.btn-primary:hover {
    background: var(--ez-dk) !important;
    border-color: var(--ez-dk) !important;
}

.btn-outline-primary {
    color: var(--ez) !important;
    border-color: var(--ez) !important;
}

.btn-outline-primary:hover {
    background: var(--ez) !important;
    color: #fff !important;
}

.text-primary {
    color: var(--ez) !important;
}

.border-primary {
    border-color: var(--ez) !important;
}

.badge-primary {
    background: var(--ez) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--ez);
}

input:checked+.slider {
    background: var(--ez);
}

.slick-prev:before,
.slick-next:before {
    color: var(--ez) !important;
}


/* ========================================================
   3. HEADER — clean white, red accent line
   ======================================================== */
.section-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-main {
    background: var(--white) !important;
    border-bottom: 3px solid var(--ez) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
    padding: 8px 0;
}

.head-loc .feather-map-pin {
    background: var(--ez-ghost) !important;
    color: var(--ez) !important;
}

.header-main #user_locationnew {
    background: #f8f8f8 !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
}

.header-main #user_locationnew:focus {
    border-color: var(--ez) !important;
    box-shadow: 0 0 0 3px var(--ez-ghost) !important;
}

.header-main .address-dropdown-btn {
    background: #f8f8f8 !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
}

.header-main .takeaway-div {
    background: var(--ez-ghost) !important;
    border-radius: 24px;
}

.header-right .widget-header {
    position: relative;
    font-weight: 500;
}

.header-right .widget-header:hover,
.header-right .widget-header:hover i,
.header-right .widget-header:hover span {
    color: var(--ez) !important;
}

.header-right .widget-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ez);
    transition: width 0.25s;
    border-radius: 2px;
}

.header-right .widget-header:hover::after {
    width: 100%;
}

.brand-wrap {
    display: flex;
    align-items: center;
}

.brand-wrap img {
    max-width: 75px;
    height: auto;
}


/* ========================================================
   4. MOBILE HEADER
   ======================================================== */
.mobile-header {
    background: var(--white) !important;
    padding: 10px 16px;
    border-bottom: 3px solid var(--ez);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.mobile-header .cart-icon-wrapper,
.mobile-header .guest-user-icon {
    background: var(--ez-ghost) !important;
    border-color: rgba(227, 6, 19, 0.1) !important;
}

.mobile-search-container {
    background: var(--white);
}


/* ========================================================
   5. SECTION TITLES
   ======================================================== */
.title {
    margin-bottom: 22px !important;
}

.title h5 {
    font-weight: 800 !important;
    font-size: 22px !important;
    color: var(--txt);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 0 !important;
}

.title h5::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 22px;
    background: var(--ez);
    border-radius: 3px;
    position: static !important;
    transform: none !important;
}

.title .see-all a {
    color: var(--ez) !important;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--ez);
    padding: 6px 18px;
    border-radius: 50px;
    transition: all 0.2s;
}

.title .see-all a:hover {
    background: var(--ez);
    color: #fff !important;
}


/* ========================================================
   6. STATIC CATEGORIES — overlay text on image
   ======================================================== */
.static-categories-section {
    background: var(--white);
    padding: 28px 0 18px !important;
}

.static-category-card {
    text-decoration: none !important;
    display: block !important;
    position: relative;
    overflow: visible;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.static-category-card:hover {
    transform: translateY(-4px);
}

.static-category-image {
    border-radius: 16px !important;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
}

.static-category-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.static-category-card:hover .static-category-image img {
    transform: scale(1.08);
}

/* Overlay gradient on image */
.static-category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

/* Title overlay at bottom */
.static-category-title {
    position: absolute !important;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin: 0 !important;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}


/* ========================================================
   7. FOOD CATEGORIES — MASONRY GRID
   JS extracts items from Slick and puts them in .ez-cat-grid
   ======================================================== */

.top-categories-section {
    padding: 28px 0 !important;
    background: var(--white);
    margin: 8px 0;
}

/* Hide original slider (before JS replaces it) */
.top-categories-section .categories-slider {
    display: none !important;
}

/* ---- The clean grid (injected by JS) ---- */
.ez-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Each category card — horizontal: image + title */
.ez-cat-grid .cat-slide-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    background: var(--bg);
    border-radius: 14px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    position: relative;
    cursor: pointer;
    min-width: 0;
}
.ez-cat-grid .cat-slide-item:hover {
    background: var(--white);
    border-color: var(--ez);
    box-shadow: 0 6px 20px var(--ez-glow);
    transform: translateY(-2px);
}

/* Link — horizontal */
.ez-cat-grid .cat-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    width: 100%;
    text-decoration: none !important;
}

/* Image — small rounded square */
.ez-cat-grid .cat-img-wrapper {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    border-radius: 12px !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    background: var(--white);
    flex-shrink: 0;
}
.ez-cat-grid .cat-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block;
}

/* Title — beside image */
.ez-cat-grid .cat-title {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--txt) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ez-cat-grid .cat-slide-item:hover .cat-title {
    color: var(--ez) !important;
}

/* Hover arrow */
.ez-cat-grid .cat-slide-item::after {
    content: '\203A';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: var(--txt3);
    opacity: 0;
    transition: all 0.2s ease;
}
.ez-cat-grid .cat-slide-item:hover::after {
    opacity: 1;
    color: var(--ez);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .ez-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ez-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ez-cat-grid .cat-slide-item { padding: 8px 12px; border-radius: 12px; }
    .ez-cat-grid .cat-img-wrapper { width: 44px !important; height: 44px !important; min-width: 44px; border-radius: 10px !important; }
    .ez-cat-grid .cat-title { font-size: 13px !important; }
}
@media (max-width: 433px) {
    .ez-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .ez-cat-grid .cat-slide-item { padding: 8px 10px; gap: 10px; }
    .ez-cat-grid .cat-img-wrapper { width: 40px !important; height: 40px !important; min-width: 40px; }
    .ez-cat-grid .cat-title { font-size: 12px !important; }
}


/* ========================================================
   8. BANNER SECTION — framed with accent
   ======================================================== */
.ecommerce-banner.multivendor-banner {
    background: var(--white);
    padding: 0 0 10px !important;
    margin: 0 0 8px;
}

#top_banner {
    border-radius: 16px !important;
}

#top_banner .banner-img,
#top_banner .banner-img img {
    border-radius: 16px !important;
}

#top_banner .slick-dots li.slick-active button:before {
    color: var(--ez) !important;
}


/* ========================================================
   9. PARTNERS — dark strip with logos
   ======================================================== */
.partners-section {
    background: var(--dark) !important;
    padding: 32px 0 !important;
    margin: 8px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal stripe pattern */
.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 40px);
    pointer-events: none;
}

.partners-section .partner-logo-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--white);
    transition: all 0.3s ease;
}

.partners-section .partner-logo-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--ez-glow);
    border-color: var(--ez);
}


/* ========================================================
   10. STORE CARDS — OVERLAY DESIGN (text on image)
   This is the biggest visual change — cards now show
   title/rating overlaid on the bottom of the image
   ======================================================== */

.store-card {
    border-radius: 16px !important;
    overflow: hidden;
    background: var(--white);
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    position: relative;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px var(--ez-glow), 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Make image taller for overlay design */
.store-card .store-card-image {
    overflow: hidden;
    position: relative;
    height: 220px !important;
}

.store-card .store-image {
    transition: transform 0.5s ease;
}

.store-card:hover .store-image {
    transform: scale(1.06);
}

/* Always-visible gradient for text readability */
.store-card .store-image-overlay {
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.65) 100%) !important;
    opacity: 1 !important;
}

/* Content — overlaid at bottom of image */
.store-card .store-card-content {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px !important;
    z-index: 3;
    background: transparent !important;
}

.store-card .store-title {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer row */
.store-card .store-card-footer {
    border-top: none !important;
    padding-top: 4px !important;
    margin-top: 0 !important;
}

/* Rating */
.store-card .store-rating {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 3px 8px;
    border-radius: 6px;
    gap: 4px;
}

.store-card .store-rating i {
    color: var(--star) !important;
    font-size: 13px !important;
}

.store-card .store-rating .rating-value {
    font-weight: 800;
    color: #fff !important;
    font-size: 13px !important;
}

.store-card .store-rating .rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

/* Delivery time */
.store-card .store-delivery-time {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 12px;
}

.store-info-divider {
    color: rgba(255, 255, 255, 0.4);
}

/* Status badges */
.store-status {
    border-radius: 6px !important;
    font-size: 10px !important;
    padding: 4px 10px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.store-status.status-open {
    background: rgba(22, 163, 74, 0.85) !important;
}

.store-status.status-closed {
    background: rgba(227, 6, 19, 0.85) !important;
}

.store-discount:not(:empty) {
    background: var(--ez) !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    padding: 4px 10px !important;
}

/* Slider nav */
.slider-nav-btn:hover {
    background: var(--ez) !important;
    border-color: var(--ez) !important;
}

.slider-nav-btn:hover i {
    color: #fff !important;
}

.slider-progress-bar {
    background: var(--ez) !important;
}

@media(max-width:768px) {
    .store-card .store-card-image {
        height: 180px !important;
    }

    .store-card .store-title {
        font-size: 14px !important;
    }
}

/* Location text in overlay cards = white */
.store-card .store-location {
    color: rgba(255, 255, 255, 0.7) !important;
}

.store-card .store-location i {
    color: var(--ez-lt) !important;
}

.store-card .store-location span {
    color: rgba(255, 255, 255, 0.7) !important;
}


/* ========================================================
   11. PRODUCT CARDS — same overlay treatment
   ======================================================== */
.store-card.product-card .store-card-content {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    z-index: 3;
}

.store-card.product-card .store-title {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.store-card.product-card .store-card-footer {
    border-top: none !important;
}

.store-card.product-card .store-rating .rating-value {
    color: #fff !important;
}

.store-card.product-card .store-rating .rating-count {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Price text in overlay */
.store-card.product-card .store-card-footer span,
.store-card.product-card .item-price,
.store-card.product-card .price-text {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


/* ========================================================
   12. SECTION BACKGROUNDS — visual rhythm
   ======================================================== */
.most-popular-store-section,
.new-arrivals-section {
    background: var(--white);
    padding: 36px 0 !important;
    margin: 8px 0;
}

.most-popular-item-section {
    padding: 32px 0 !important;
    background: transparent;
}

.offers-coupons-section {
    padding: 32px 0 !important;
    background: var(--ez-ghost);
    margin: 8px 0;
}

.home-categories-section {
    padding: 28px 0 !important;
    background: transparent;
}

.all-stores-section {
    background: var(--white);
    padding: 36px 0 !important;
    margin: 8px 0;
}

/* Red accent strip at top of page */
.siddhi-home-page::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--ez) 0%, var(--ez-lt) 50%, var(--ez) 100%);
}


/* ========================================================
   13. GENERAL CARDS
   ======================================================== */
.grid-card,
.card,
.list-card {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    overflow: hidden;
    background: var(--white);
}

.grid-card:hover,
.card:hover,
.list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--ez-glow), 0 4px 10px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(227, 6, 19, 0.12) !important;
}


/* ========================================================
   14. BUTTONS / FORMS / DROPDOWNS / MODALS
   ======================================================== */
.btn {
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    border-radius: 10px;
}

.form-control {
    border-radius: 8px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--ez);
    box-shadow: 0 0 0 3px var(--ez-ghost);
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 6px;
    animation: ezDrop 0.15s ease;
}

@keyframes ezDrop {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: background 0.15s;
}

.dropdown-item:hover {
    background: var(--ez-ghost);
}

.dropdown-item i {
    color: var(--ez);
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 24px;
}

.modal-header h5 {
    font-weight: 700;
}

.modal-body {
    padding: 20px 24px;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
}


/* ========================================================
   15. MOBILE FILTERS
   ======================================================== */
.filter-btn.active {
    background: var(--ez) !important;
    color: #fff !important;
    border-color: var(--ez) !important;
    box-shadow: 0 3px 10px var(--ez-glow);
}

.mode-btn.active {
    background: var(--ez) !important;
}

.search-submit-btn {
    background: var(--ez) !important;
}

.deat-plus-btn {
    background: var(--ez) !important;
}

.deat-plus-btn:hover {
    background: var(--ez-dk) !important;
}

.deat-plus-icon {
    color: var(--ez) !important;
}

.deat-plus-section {
    background: var(--ez-ghost) !important;
    border-radius: 12px;
}


/* ========================================================
   16. LOAD MORE / FOOTER / BADGES / SCROLLBAR
   ======================================================== */
.fu-loadmore-btn {
    text-align: center;
    padding: 20px 0;
}

.fu-loadmore-btn .loadmore-btn {
    background: var(--ez) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 40px !important;
    border-radius: 50px !important;
    font-weight: 600;
    box-shadow: 0 4px 14px var(--ez-glow);
    transition: all 0.3s;
}

.fu-loadmore-btn .loadmore-btn:hover {
    background: var(--ez-dk) !important;
    transform: translateY(-2px);
}

.bg-dark {
    background: var(--dark) !important;
}

footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: var(--ez-lt) !important;
}

.badge {
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: 11px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.takeaway-div {
    background: #f5f5f5;
    border-radius: 24px;
    padding: 4px 14px !important;
}

.skeleton-card {
    border-radius: 16px !important;
}


/* ========================================================
   17. RESTAURANT DETAIL PAGE
   ======================================================== */
.restaurant-banner-slider-section {
    background: var(--bg);
}

.restaurant-banner-slider {
    border-radius: 16px !important;
    overflow: hidden;
}

.restaurant-banner-slider .slick-list,
.restaurant-banner-slider .slick-track,
.restaurant-banner-slider .slider-item {
    border-radius: 16px !important;
}

.restaurant-banner-slider .slick-slide img {
    border-radius: 16px !important;
}

.restaurant-banner-slider .slick-dots li.slick-active button:before {
    color: var(--ez) !important;
}

.home-btn-banner {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.home-btn-banner:hover {
    background: var(--ez) !important;
    color: #fff !important;
}

.vendor-page .restaurant-info-card {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
}

.vendor-page .restaurant-name {
    font-weight: 800 !important;
}

.vendor-page .restaurant-logo {
    border-radius: 12px !important;
}

.vendor-page .rating-wrap i {
    color: var(--ez) !important;
}

.vendor-page .status-badge {
    background: var(--green) !important;
    border-radius: 6px !important;
}

.vendor-page .action-btn {
    background: #fff !important;
    border: 1px solid var(--border) !important;
}

.vendor-page .action-btn:hover {
    background: var(--ez) !important;
    color: #fff !important;
    border-color: var(--ez) !important;
}

.delivery-mode-toggle-restaurant {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    padding: 4px !important;
}

.mode-btn-restaurant {
    border-radius: 10px !important;
}

.mode-btn-restaurant.active {
    background: var(--ez) !important;
}

.vendor-page .desktop-category-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 80px;
}

.vendor-page #category-list .category-item {
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 2px;
    transition: all 0.2s;
    font-weight: 500;
}

.vendor-page #category-list .category-item:hover {
    background: var(--ez-ghost);
    color: var(--ez);
}

.vendor-page #category-list .category-item.active {
    background: var(--ez-ghost) !important;
    color: var(--ez) !important;
    font-weight: 600;
    border-left: 3px solid var(--ez) !important;
}

.mobile-category-item.active .mobile-category-image {
    border-color: var(--ez) !important;
}

.mobile-category-item.active .mobile-category-title {
    color: var(--ez) !important;
}

.product-card-horizontal {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    transition: all 0.3s;
}

.product-card-horizontal:hover {
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.10) !important;
    border-color: rgba(227, 6, 19, 0.15) !important;
    transform: translateY(-3px);
}

.product-name {
    color: var(--txt) !important;
    font-weight: 600 !important;
}

.product-price {
    color: var(--ez) !important;
    font-weight: 700 !important;
}

.product-rating {
    color: var(--green) !important;
}

.product-rating i {
    color: var(--star) !important;
}

.product-image-wrap {
    border-radius: 12px !important;
    overflow: hidden;
}

.product-image {
    transition: transform 0.4s;
}

.product-card-horizontal:hover .product-image {
    transform: scale(1.04);
}

.veg-badge {
    background: #dcfce7 !important;
    color: #166534 !important;
    border-radius: 4px !important;
}

.non-veg-badge {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-radius: 4px !important;
}

.deat-detail-coupon .copupon-list ul li {
    border-radius: 12px !important;
}

.deat-detail-coupon .copupon-list ul li:hover {
    border-color: var(--ez) !important;
}

.cart-bottom-nav {
    border-radius: 16px 16px 0 0;
}

.cart-bottom-nav .cart-view-btn {
    background: var(--ez) !important;
    border-color: var(--ez) !important;
    border-radius: 12px !important;
}


/* ========================================================
   18. PRODUCT DETAIL PAGE
   ======================================================== */
.product-banner {
    background: var(--bg) !important;
}

@media(min-width:768px) {
    .product-banner {
        border-radius: 0 0 20px 20px !important;
        overflow: hidden;
    }
}

.product-banner .back-btn {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.product-banner .back-btn:hover {
    background: var(--ez) !important;
    color: #fff !important;
}

.product-title-rating h1 {
    font-weight: 800 !important;
}

.product-title-rating .rating-stars .badge {
    background: var(--green) !important;
    border-radius: 6px !important;
}

.product-title-rating .favorite-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ez-ghost);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title-rating .favorite-btn:hover {
    background: var(--ez);
    color: #fff !important;
    border-color: var(--ez);
}

.product-price-section .price {
    color: var(--ez) !important;
    font-weight: 800 !important;
}

.product-detail-right {
    border-radius: 14px !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid var(--border) !important;
}

.product-detail-right .price-summary .price {
    color: var(--ez) !important;
    font-weight: 800 !important;
}

.quantity-section .count-number-input {
    border-radius: 8px !important;
    border: 1.5px solid var(--border) !important;
    font-weight: 700;
}

.product-detail-right .desktop-buttons .btn-primary {
    border-radius: 10px !important;
    box-shadow: 0 4px 14px var(--ez-glow);
}

.product-detail-right .desktop-buttons .btn-outline-primary {
    border-radius: 10px !important;
}

.variants-section .attribute-options .custom-control-label {
    border-radius: 8px !important;
    border: 2px solid var(--border) !important;
}

.variants-section .attribute-options .custom-control-label:hover {
    border-color: var(--ez) !important;
}

.variants-section .attribute-options .custom-control-input:checked+.custom-control-label {
    background: var(--ez) !important;
    border-color: var(--ez) !important;
    box-shadow: 0 3px 10px var(--ez-glow) !important;
}

.reviews-section {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 24px !important;
}

.mobile-bottom-nav {
    border-radius: 16px 16px 0 0;
}

.mobile-bottom-nav .btn {
    border-radius: 12px !important;
    background: var(--ez) !important;
    border-color: var(--ez) !important;
}


/* ========================================================
   19. STYLE.CSS OVERRIDES
   ======================================================== */
.siddhi-menu-fotter .nav-link.active {
    border-bottom-color: var(--ez) !important;
    background: var(--ez) !important;
}

.siddhi-menu-fotter .nav-link:hover {
    border-bottom-color: var(--ez) !important;
    color: var(--ez) !important;
}

.store-card:hover .store-title {
    color: #fff !important;
}

.cat-slider img {
    border: 3px solid transparent;
    transition: all 0.3s;
}

.cat-slider img:hover {
    border-color: var(--ez);
    transform: scale(1.05);
}

/* Override old orange hover colors from style.css */
.store-card .store-location i {
    color: var(--ez-lt) !important;
}


/* ========================================================
   20. RESPONSIVE
   ======================================================== */
@media(min-width:1400px) {
    .container {
        max-width: 1280px;
    }
}

@media(max-width:576px) {
    .title h5 {
        font-size: 18px !important;
    }

    .title .see-all a {
        font-size: 12px;
        padding: 4px 12px;
    }

    .static-categories-section .row {
        margin: 0 -4px;
    }

    .static-categories-section .row>div {
        padding: 0 4px;
    }

    .static-category-title {
        font-size: 12px !important;
        bottom: 8px;
    }
}