.store-list {
    height: 100% !important;
    overflow: visible !important;
    padding: 10px;
}
/* ======================================
   WooCommerce Styles
   ====================================== */

/* Category Menu Section */
.woocommerce-category-menu-section {
    background: rgba(12, 11, 9, .6);
    padding: 8px;
    border-bottom: 1px solid rgba(205, 164, 94, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.woocommerce-food-search-section {
    padding: 8px 0;
}

.woocommerce-food-search-wrapper {
    width: 100%;
}

.woocommerce-food-search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: Poppins, sans-serif;
}

.woocommerce-food-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.woocommerce-food-search-input:focus {
    border-color: #d9ba85;
    box-shadow: 0 0 0 3px rgba(205, 164, 94, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.woocommerce-category-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.woocommerce-category-menu {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.woocommerce-category-menu::-webkit-scrollbar {
    display: none;
}

.woocommerce-category-item {
    white-space: nowrap;
    cursor: pointer;
}

.woocommerce-category-item:hover span,
.woocommerce-category-item.active span {
    color: #0a0a0a;
}

.woocommerce-category-nav {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    background: var(--theme-color);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.woocommerce-category-nav:hover {
    background: transparent;
    border: 1px solid var(--theme-color);
}

.woocommerce-category-nav:disabled {
    background: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.woocommerce-category-prev {
    left: -22px;
}

.woocommerce-category-next {
    right: -22px;
}

/* Product Category Blocks */
.woocommerce-product-list-by-category{
    margin-top: 40px;
}

.woocommerce-product-category-block {
    background: rgba(12, 11, 9, .6);
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

.woocommerce-category-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--theme-color);
    padding-bottom: 15px;
    position: relative;
}

.woocommerce-category-title:after {
    content: "";
    width: 120px;
    height: 1px;
    display: block;
    background: var(--theme-color);
    margin-top: 10px;
}

.woocommerce-product-list-view {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.woocommerce-product-list-item {
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #bab3a6;
    display: block;
    position: relative;
}

.woocommerce-product-list-view .woocommerce-product-list-item:last-child {
    border-bottom-width: 0;
}

.woocommerce-product-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    float: left;
    border: 5px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.woocommerce-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.woocommerce-product-image a {
    display: block;
    transition: transform 0.3s ease;
}

.woocommerce-product-image a:hover {
    transform: scale(1.1);
}
.woocommerce-product-details {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.woocommerce-product-details h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: Poppins, sans-serif;
    order: 1;
    white-space: nowrap;
}

.woocommerce-product-details h3 a {
    padding-right: 10px;
    position: relative;
    z-index: 3;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-product-details h3 a:hover {
    color: var(--theme-color);
}

.woocommerce-product-price {
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    color: var(--theme-color);
    font-size: 20px;
    margin: 0;
    order: 3;
}

.woocommerce-product-excerpt {
    font-style: italic;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    padding-right: 150px;
}

.woocommerce-product-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.woocommerce-product-actions .button {
    background: transparent !important;
    border: 1px solid var(--theme-color) !important;
    color: #fff !important;
    width: 44px;
    height: 44px;
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce-product-actions .button:hover {
    background-color: var(--theme-color) !important;
    color: #ffffff !important;
    border-color: var(--theme-color) !important;
    transform: scale(1.1) !important;
}

.woocommerce-product-actions .button:before {
    content: "╋";
}

.woocommerce-product-actions .button.loading:before {
    content: "⏳";
    animation: woocommerce-loading-spin 1s linear infinite;
}

.woocommerce-product-actions .button.woocommerce-success:before {
    content: "✓";
    color: #27ae60 !important;
}

.woocommerce-product-actions .button.woocommerce-success {
    border-color: #27ae60 !important;
}

.woocommerce-product-actions .added_to_cart,
.woocommerce-product-actions .button:after {
    display: none !important;
}

@keyframes woocommerce-loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.woocommerce-product-actions .button .text {
    display: none !important;
}

/* Cart Sidebar */
.woocommerce-cart-sidebar-sticky {
    position: sticky;
    top: 0;
    max-height: 100vh;
}

.woocommerce-order-summary {
    background: rgba(12, 11, 9, .6);
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 100vh;
}

.woocommerce-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(205, 164, 94, 0.3);
}

.woocommerce-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.woocommerce-cart-count {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
}

.woocommerce-cart-items {
    flex: 1;
    overflow: auto;
    padding-right: 10px;
}

.woocommerce-cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(205, 164, 94, 0.2);
    position: relative;
}

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

.woocommerce-cart-item-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(205, 164, 94, 0.3);
}

.woocommerce-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce-cart-item-details {
    flex: 1;
}

.woocommerce-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    font-family: Poppins, sans-serif;
}

.woocommerce-item-price {
    font-weight: 600;
    color: var(--theme-color);
    font-family: Poppins, sans-serif;
}

.woocommerce-cart-item-quantity {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: Poppins, sans-serif;
}

.woocommerce-cart-remove {
    position: absolute;
    top: 10px;
    right: 0;
    background: var(--theme-color);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.woocommerce-cart-remove:hover {
    color: #e74c3c;
}

.cart-qty-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.cart-qty-decrease, .cart-qty-increase {
    background: var(--theme-color);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
}
.cart-qty-decrease:hover, .cart-qty-increase:hover {
    background: #e74c3c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(231,76,60,0.15);
    border-color: #e74c3c;
}
.cart-qty-decrease:active, .cart-qty-increase:active {
    background: #c0392b;
    box-shadow: 0 2px 4px rgba(192,57,43,0.15);
}
.cart-qty-decrease:disabled, .cart-qty-increase:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.woocommerce-cart-coupon {
    padding: 20px 0;
    border-top: 1px solid rgba(205, 164, 94, 0.2);
}

.woocommerce-coupon-form {
    display: flex;
    gap: 10px;
}

.woocommerce-coupon-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: Poppins, sans-serif;
}

.woocommerce-coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.woocommerce-coupon-btn {
    background: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
}

.woocommerce-coupon-btn:hover {
    background: transparent;
    color: var(--theme-color);
}

.woocommerce-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-top: 1px solid rgba(205, 164, 94, 0.2);
}

.woocommerce-cart-total-final {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding-top: 20px;
    margin-top: 15px;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
}

.woocommerce-cart-total-amount {
    color: var(--theme-color);
}

.woocommerce-cart-actions {
    display: flex;
    gap: 15px;
}

.woocommerce-cart-btn {
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.woocommerce-cart-btn-secondary {
    background: transparent;
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.woocommerce-cart-btn-secondary:hover {
    background: var(--theme-color);
    color: #fff;
}

.woocommerce-cart-btn-primary {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.woocommerce-cart-btn-primary:hover {
    background: transparent;
    color: var(--theme-color);
}

.woocommerce-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.woocommerce-cart-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.woocommerce-cart-empty-text {
    font-size: 18px;
    font-family: Poppins, sans-serif;
}

/* Cart Error States */
.woocommerce-cart-error {
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.woocommerce-cart-error-header {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 243, 205, 0.1);
    border: 1px solid rgba(255, 234, 167, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.woocommerce-cart-error-icon {
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.woocommerce-cart-error-message {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
    font-family: Poppins, sans-serif;
}

/* Applied Coupons */
.woocommerce-applied-coupon {
    background: rgba(232, 245, 232, 0.2);
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.woocommerce-applied-coupon:last-child {
    margin-right: 0;
}

.woocommerce-coupon-code {
    font-weight: 600;
    color: var(--theme-color);
    font-size: 13px;
    font-family: Poppins, sans-serif;
}

.woocommerce-coupon-amount {
    color: #27ae60;
    font-weight: 600;
    font-size: 13px;
    margin-left: 5px;
    font-family: Poppins, sans-serif;
}

.woocommerce-remove-coupon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 1px solid var(--theme-color) !important;
    background-color: transparent !important;
    color: var(--theme-color) !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    min-width: auto !important;
    margin-left: 8px;
    display: inline-flex !important;
}

.woocommerce-remove-coupon:hover {
    background-color: var(--theme-color) !important;
    color: #ffffff !important;
    border-color: var(--theme-color) !important;
}


/*
 * JS-based Sticky Positioning
 */

.woocommerce-category-menu-section.is-sticky {
    position: fixed;
    top: 0;
    z-index: 1000;
}

@media (min-width: 992px) {
    .woocommerce-cart-sidebar-sticky.is-sticky {
        position: fixed;
        top: 0; /* Adjust as needed */
    }
}

/*
 * Mobile Cart Icon Styles
 */

.woocommerce-mobile-cart-icon {
    display: none; /* Hidden by default, shown on mobile */
    position: fixed;
    bottom: 50px;
    left: 30px; /* Moved to the left */
    z-index: 1030;
    background-color: var(--theme-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Added for the icon */
}

.woocommerce-mobile-cart-icon:before, .woocommerce-mobile-cart-icon:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    -webkit-box-shadow: 0 0 0 0 var(--theme-color);
    box-shadow: 0 0 0 0 var(--theme-color);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce-mobile-cart-icon .woocommerce-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
}

/* Close button for mobile cart */
.close-mobile-cart {
    display: none; /* Hidden by default */
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 1050;
}

/* Responsive adjustments for cart sidebar */
@media (max-width: 998px) {
    #woocommerce-cart-sidebar-area {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 100%;   /* Full width */
        height: 100%;
        z-index: 10400;
        background: #1a1814;
        transition: right 0.4s ease;
        padding: 20px;
        overflow-y: auto;
    }

    body.mobile-cart-open #woocommerce-cart-sidebar-area {
        right: 0; /* Slide in */
    }

    body.mobile-cart-open .close-mobile-cart {
        display: block; /* Show close button when cart is open */
    }

    .woocommerce-mobile-cart-icon {
        display: flex;
    }

    /* Overlay for when mobile cart is open */
    body.mobile-cart-open .site-overlay {
        display: block;
        opacity: 1;
    }
}