.category-section .title {
    margin-bottom: 20px;
}

.category-box .category-name h6 {
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    max-width: 120px;
    margin: 0 auto;
}

/* Marquee Styles */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0;
    background: #fff;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scrollMarquee 60s linear infinite;
}

.marquee-content {
    display: inline-block;
    vertical-align: top;
}

.marquee-row {
    display: flex;
    gap: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.custom-cat-box {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 140px;
    height: 140px;
    background: transparent;
    border: none;
}

.custom-cat-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.custom-cat-box .custom-cat-image {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.custom-cat-box .custom-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 10px;
}

.col-custom-10 {
    flex: 0 0 10%;
    max-width: 10%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.our-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.our-cat-img-wrap {
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    position: relative;
    background-color: #f4f6fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.our-cat-card:hover .our-cat-img-wrap {
    transform: scale(1.05);
}

.our-cat-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.our-cat-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1200px) {
    .col-custom-10 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

@media (max-width: 991px) {
    .col-custom-10 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
    }
}

@media (max-width: 767px) {
    .col-custom-10 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 575px) {
    .col-custom-10 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 400px) {
    .col-custom-10 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

/* Custom Search Placeholder Slider */
.custom-search-placeholder {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    height: 100%;
    color: #999;
    font-size: 14px;
}

.search-prefix {
    white-space: nowrap;
    margin-right: 3px;
}

.search-slider-wrapper {
    display: inline-block;
    overflow: hidden;
    height: 24px;
    vertical-align: middle;
    position: relative;
    margin: 0;
}

.custom-search-slider {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

.custom-search-slider li {
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
}

.search-suffix {
    white-space: nowrap;
    margin-left: 3px;
}

/* Breadcrumb Mobile View Fix */
@media (max-width: 575px) {
    .breadcrumb-contain {
        text-align: center;
    }

    .breadcrumb-contain .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 5px;
        margin-top: 5px;
    }
}

/* Properties Filter Offcanvas Custom Design */
.properties-offcanvas {
    width: 320px;
    border-right: 1px solid #e1e1e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.properties-offcanvas .offcanvas-header {
    background-color: transparent !important;
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 20px;
}

.properties-offcanvas .offcanvas-title {
    font-weight: 700;
    color: var(--theme-color);
    font-size: 18px;
}

.properties-offcanvas .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.properties-offcanvas .filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.properties-offcanvas .form-check-label {
    color: #4a5568;
    cursor: pointer;
}

.properties-offcanvas .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.properties-offcanvas .color-box {
    transition: transform 0.2s;
}

.properties-offcanvas .color-box:hover {
    transform: scale(1.1);
}

/* Theme Style Category Layout */
.theme-layout {
    width: 100%;
    align-items: flex-start;
}

/* ===== Vertical Sidebar Category Layout ===== */
.theme-sidebar {
    width: 70px;
    flex-shrink: 0;
    border-right: 1px solid #eee;
    background-color: #fff;
    height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-sidebar::-webkit-scrollbar {
    width: 3px;
}

.theme-sidebar::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}

.theme-sidebar ul.theme-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 4px !important;
    margin: 0 !important;
    width: 100%;
    list-style: none;
}

.theme-sidebar .theme-nav-item {
    width: 100%;
}

.theme-main {
    flex-grow: 1;
    padding-left: 12px;
    padding-top: 15px;
    min-width: 0;
}

.theme-category-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 4px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #f3f3f3 !important;
    border-right: 3px solid transparent !important;
    background-color: transparent !important;
    color: #4a5568 !important;
    white-space: normal !important;
    height: auto !important;
    width: 100%;
    text-decoration: none !important;
    transition: all 0.15s ease;
}

.theme-category-link:hover {
    background-color: #f5fff9 !important;
    color: var(--theme-color) !important;
}

.theme-category-link.active {
    background-color: #f0faf5 !important;
    border-right: 3px solid var(--theme-color) !important;
    color: var(--theme-color) !important;
    font-weight: 600;
}

.theme-category-link img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain;
    margin-bottom: -20px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    display: block;
}

.theme-category-link span {
    font-size: 10px !important;
    line-height: 1.3 !important;
    word-break: break-word;
    white-space: normal;
    display: block;
    width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .theme-sidebar {
        width: 110px;
        top: 80px;
    }

    .theme-category-link img {
        width: 90px !important;
        height: 90px !important;
    }

    .theme-category-link span {
        font-size: 11px !important;
    }

    .theme-main {
        padding-left: 18px;
        padding-top: 15px;
    }
}

/* Fix anchor tag text decoration */
.theme-category-link {
    text-decoration: none !important;
}

/* OTP Box Styles */
.otp-box-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-box-container .otp-input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f8f8;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.otp-box-container .otp-input:focus {
    outline: none;
    border-color: var(--theme-color);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(10, 173, 10, 0.2);
}

.otp-box-container .otp-input::-webkit-outer-spin-button,
.otp-box-container .otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Custom styling for Google Maps Autocomplete Suggestions */
.pac-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    font-family: inherit;
    z-index: 1060 !important;
    /* Above modal */
    margin-top: 5px;
}

.pac-item {
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-query {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.pac-icon {
    margin-top: 2px;
}

@media (max-width: 767px) {
    .pac-container {
        width: 90% !important;
        left: 5% !important;
    }
}

/* Bestsellers Section */
.bestsellers-section {
    padding-top: 15px;
    font-family: 'Nunito', sans-serif;
}

.bestsellers-header {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    padding-left: 10px;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bestseller-card {
    background: #f4f6f9;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bestseller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bestseller-images-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.bestseller-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    justify-items: center;
    align-items: center;
}

.bestseller-images img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 8px;
    background: #fdfdfd;
}

@media(min-width: 481px) {
    .bestseller-images img {
        max-width: 110px;
        max-height: 110px;
    }
}

.bestseller-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.bestseller-title {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    line-height: 1.3;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bestsellers-header {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .bestseller-card {
        padding: 10px;
    }

    .bestseller-title {
        font-size: 15px;
    }

    .bestseller-badge {
        font-size: 11px;
        padding: 2px 8px;
        bottom: -10px;
    }

    .theme-category-link img {
        margin-bottom: -18px !important;
    }
}



/* Store 99 Card */
.store-99-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-99-bubble {
    color: #0b82b1;
    text-align: center;
}

.store-99-bubble .price-99 {
    font-size: 65px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.store-99-bubble .store-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Featured This Week */
.featured-week-section {
    padding-top: 15px;
    font-family: 'Nunito', sans-serif;
}

.featured-header {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    padding-left: 10px;
}

.featured-card {
    border-radius: 16px;
    padding: 3px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.featured-card.border-blue {
    background: #3d74d9;
}

.featured-card.border-gold {
    background: #d1b46b;
}

.featured-inner {
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    height: 220px;
    position: relative;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 0;
    background: #fff;
    color: #cc3333;
    font-weight: 800;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: center;
}

.featured-inner h3 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.featured-products {
    flex-grow: 1;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-products .slick-slider,
.featured-products .slick-list,
.featured-products .slick-track {
    height: 100%;
}

.featured-products .slick-slide {
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    outline: none;
}

.featured-products img {
    max-height: 110px;
    max-width: 90%;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.3));
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: floatingProduct 4s ease-in-out infinite;
}

@keyframes floatingProduct {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Location Autocomplete Styles */
.custom-suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
}

.suggestion-list {
    margin: 0;
    padding: 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f9f9f9;
}

.sugg-icon {
    width: 35px;
    height: 35px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.sugg-text {
    flex-grow: 1;
}

.sugg-main {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.sugg-sec {
    font-size: 12px;
    color: #777;
}

.no-result {
    text-align: center;
    padding: 20px;
    color: #555;
    font-weight: 500;
}

/* Force Theme Color Global Override */
:root,
body.theme-color-1,
body.theme-color-2,
body.theme-color-3,
body.theme-color-4,
body.theme-color-5 {
    --theme-color: #0E5A2A !important;
}

/* ============================================
   CART OFFCANVAS - Blinkit Style
   ============================================ */
.cart-offcanvas-panel {
    width: 390px !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #f5f6fa;
}

/* Header */
.cart-oc-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    padding: 14px 16px !important;
}

.cart-oc-timer-icon {
    width: 44px;
    height: 44px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme-color);
    flex-shrink: 0;
}

.cart-oc-delivery-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.cart-oc-delivery-sub {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

/* Scrollable Body */
.cart-oc-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 12px;
    padding-bottom: 80px;
}

.cart-oc-body::-webkit-scrollbar {
    width: 4px;
}

.cart-oc-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Section Card */
.cart-oc-section {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.cart-oc-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Product Item */
.cart-oc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-oc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-oc-item:first-child {
    padding-top: 0;
}

.cart-oc-img-wrap {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    flex-shrink: 0;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.cart-oc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-oc-info {
    flex: 1;
    min-width: 0;
}

.cart-oc-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-oc-variant {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.cart-oc-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Qty Controls */
.cart-oc-qty {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--theme-color);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-oc-qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 30px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
}

.cart-oc-qty-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cart-oc-qty-val {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
}

/* Bill Rows */
.cart-oc-bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #444;
    padding: 7px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.cart-oc-bill-row:last-child {
    border-bottom: none;
}

.cart-oc-grand-total {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #eee !important;
    border-bottom: none !important;
}

/* Cancellation Policy */
.cart-oc-policy-text {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Sticky Footer */
.cart-oc-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-color);
    padding: 12px 16px;
    z-index: 10;
}

.cart-oc-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-oc-footer-amount {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.cart-oc-footer-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cart-oc-footer-btn {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.2s;
}

.cart-oc-footer-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cart-offcanvas-panel {
        width: 100% !important;
    }
}

/* ===== Search Suggestions Bar ===== */
.search-suggestions-container .custom-scrollbar::-webkit-scrollbar {
    height: 4px;
}

.search-suggestions-container .custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-suggestions-container .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.search-suggestions-container .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color);
}

.suggestion-chip:hover {
    border-color: var(--theme-color) !important;
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--theme-color) !important;
}


/* Update product option width since compare was removed */
.product-option li {
    width: 50% !important;
}


.discount-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: var(--theme-color);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
    line-height: 1;
}

@media (max-width: 576px) {
    .discount-badge {
        top: 8px;
        left: 8px;
        padding: 3px 6px;
        font-size: 10px;
    }

    .rating li .feather {
        width: 10px;
        height: 10px;
    }

    .category-delivery-time {
        font-size: 9px !important;
    }

    .category-delivery-time .feather {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Out of Stock Features */
.out-of-stock-card .product-image,
.out-of-stock-card .product-detail .name,
.out-of-stock-card .product-detail .price,
.out-of-stock-card .product-detail .rating,
.out-of-stock-card .product-detail .delivery-time,
.out-of-stock-card .product-detail .product-properties {
    opacity: 0.5;
}

.out-of-stock-badge {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(83, 94, 108, 0.9);
    /* Dark greyish similar to blinkit */
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}



.btn-notify.notified {
    background-color: #b0b0b0 !important;
    color: #fff !important;
    border-color: #b0b0b0 !important;
    cursor: default;
}

.btn-notify.notified:hover {
    background-color: #b0b0b0 !important;
    color: #fff !important;
}



/* Fix notify button span on mobile */
.btn-notify span {
    display: flex !important;
}

/* Animated Promo Banner CSS */
.animated-promo-section {
    padding: 0;
    margin: 0;
    width: 100%;
}

.promo-banner-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.animated-banner {
    width: 100%;
    max-height: 300px;
    /* Fixed max height as requested */
    display: block;
    object-fit: cover;
    object-position: center;
    /* Keeps the focus in the center */
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.skeleton-shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    display: inline-block;
    position: relative;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    border-radius: 4px;
}

/* Specific Skeleton components */
.skeleton-container {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
}

.skeleton-banner-top {
    height: 380px;
    width: 100%;
    border-radius: 10px;
}

.skeleton-circle-row {
    display: flex;
    gap: 15px;
    overflow: hidden;
    padding: 10px 0;
}

.skeleton-circle-item {
    flex: 0 0 calc(10% - 13.5px);
    aspect-ratio: 1;
    border-radius: 50%;
}

.skeleton-title {
    height: 30px;
    width: 200px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.skeleton-card-row {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.skeleton-card {
    flex: 0 0 calc(16.666% - 16.666px);
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-card-image {
    height: 150px;
    width: 100%;
    border-radius: 8px;
}

.skeleton-text-line {
    height: 15px;
    width: 80%;
    border-radius: 3px;
}

.skeleton-text-line.short {
    width: 50%;
}

.skeleton-button-small {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    align-self: flex-end;
}

.skeleton-banner-row {
    display: flex;
    gap: 20px;
}

.skeleton-banner-item {
    flex: 1;
    height: 220px;
    border-radius: 10px;
}

.skeleton-deal-row {
    display: flex;
    gap: 20px;
}

.skeleton-deal-left {
    flex: 0 0 35%;
    height: 480px;
    border-radius: 10px;
}

.skeleton-deal-right {
    flex: 1;
    display: flex;
    gap: 20px;
}

/* Responsive adjustment for Mobile Viewports */
@media (max-width: 1400px) {
    .skeleton-card {
        flex: 0 0 calc(20% - 16px);
    }
}

@media (max-width: 1200px) {
    .skeleton-circle-item {
        flex: 0 0 calc(20% - 12px);
    }

    .skeleton-card {
        flex: 0 0 calc(25% - 15px);
    }

    .skeleton-banner-item {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .skeleton-card {
        flex: 0 0 calc(33.333% - 13.333px);
    }

    .skeleton-circle-item {
        flex: 0 0 calc(25% - 11.25px);
    }
}

@media (max-width: 768px) {
    .skeleton-banner-top {
        height: 200px;
    }

    .skeleton-card {
        flex: 0 0 calc(50% - 10px);
    }

    .skeleton-banner-row {
        flex-direction: column;
    }

    .skeleton-deal-row {
        flex-direction: column;
    }

    .skeleton-deal-left {
        flex: 0 0 100%;
        height: 350px;
    }
}

/* Product Property Badges */
.property-badge {
    font-size: 10px;
    padding: 3px 6px;
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: inline-block;
}

.property-badge:hover {
    background-color: #e5e7eb;
}

.property-badge.active {
    background-color: #ffb321 !important;
    color: #000 !important;
    border-color: #ffb321;
    font-weight: 600;
}

/* Redesigned Delivery Preferences & Tipping Styles */
.delivery-instruction-card {
    flex-shrink: 0;
    min-width: 105px;
    width: 105px;
    height: 100px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 12px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.2s ease-in-out;
    user-select: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.delivery-instruction-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.delivery-instruction-card.selected {
    border-color: #10b981;
    background-color: #f0fdf4;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.12);
}

.delivery-instruction-card .card-checkbox {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: all 0.2s ease;
}

.delivery-instruction-card.selected .card-checkbox {
    background-color: #10b981;
    border-color: #10b981;
}

.delivery-instruction-card .card-checkbox i {
    color: #fff;
    font-size: 10px;
    display: none;
}

.delivery-instruction-card.selected .card-checkbox i {
    display: block;
}

.delivery-instruction-card .card-icon {
    font-size: 20px;
    color: #64748b;
}

.delivery-instruction-card.selected .card-icon {
    color: #10b981;
}

.delivery-instruction-card .card-label {
    font-size: 11px;
    font-weight: 500;
    color: #334155;
    line-height: 1.3;
}

.delivery-instruction-card.selected .card-label {
    color: #064e3b;
    font-weight: 600;
}

.tip-btn {
    border-radius: 20px;
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    color: #334155;
    transition: all 0.2s ease;
}

.tip-btn:hover {
    background-color: #f8fafc;
    color: #1e293b;
    border-color: #94a3b8;
}

.tip-btn.selected {
    background-color: #f0fdf4 !important;
    border-color: #10b981 !important;
    color: #047857 !important;
    font-weight: 600;
}

.instructions-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 6px 2px 10px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.instructions-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.product-box-4 .product-detail a .name,
.product-box-3 .product-detail a .name,
.product-box-3 .product-footer .product-detail .name,
.product-box .product-detail a h6.name,
.product-box .product-detail a .name {
    width: 100% !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    height: 36.4px !important;
    min-height: 36.4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.product-box-4 .product-detail .price-qty .buy-button {
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    height: 28px !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

@media(min-width: 481px) {
    .product-box-4 .product-detail .price-qty .buy-button {
        width: auto !important;
    }
}

.product-box-4 .product-detail .price-qty .buy-button.has-options {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3px 12px !important;
    height: auto !important;
    min-height: 32px !important;
    border-radius: 4px !important;
    line-height: 1.1 !important;
}

.product-box-4 .product-detail .price-qty .buy-button.has-options span {
    position: static !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important;
    display: block !important;
}

.product-box-4 .product-detail .price-qty .buy-button.has-options .add-text {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.1 !important;
}

.product-box-4 .product-detail .price-qty .buy-button.has-options .options-badge {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-transform: lowercase !important;
    margin-top: 1px !important;
}