        .category-tag a {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Equal-height legacy cards used by the public shop grid. */
        #grid-tab .fit-menu-three-two-items > .row > [class*="col-"] {
            display: flex;
        }

        #grid-tab .fit-menu-style-three {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
        }

        #grid-tab .fit-menu-style-three .thumb {
            flex: 0 0 auto;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #f3f3f3;
        }

        #grid-tab .fit-menu-style-three .thumb > a {
            display: block;
            width: 100%;
            height: 100%;
        }

        #grid-tab .fit-menu-style-three .thumb > a > img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #grid-tab .fit-menu-style-three .info {
            display: flex;
            flex: 1;
            flex-direction: column;
        }

        #grid-tab .fit-menu-style-three .info h4 {
            min-height: 2.4em;
            display: -webkit-box;
            overflow: hidden;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        #grid-tab .fit-menu-style-three .info ul {
            min-height: 3.6em;
            margin-bottom: 20px;
            overflow: hidden;
        }

        #grid-tab .fit-menu-style-three .info .cart-btn-border {
            margin-top: auto;
            align-self: center;
        }

        /* ENHANCED GRID VIEW STYLES */
        .product-grid-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            overflow: hidden;
            border: 1px solid #f0f0f0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-grid-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(152, 34, 30, 0.15);
            border-color: var(--color-primary);
        }

        .product-grid-card .grid-product-card-inner {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Grid Image Section */
        .grid-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
            height: 280px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .grid-image-wrapper .grid-image-link {
            display: block;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .grid-image-wrapper .grid-product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .grid-image-wrapper:hover .grid-product-image {
            transform: scale(1.15);
        }

        /* Grid Sale Badge */
        .grid-sale-badge-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 15;
        }

        .grid-sale-badge {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 10px 14px;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
            animation: pulse 2s infinite;
        }

        /* Grid Stock Overlays */
        .grid-stock-overlay, .grid-low-stock-overlay {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 15;
        }

        .grid-out-of-stock-badge {
            background: linear-gradient(135deg, #95a5a6, #7f8c8d);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
        }

        .grid-low-stock-badge {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
        }

        /* Quick Actions */
        .grid-quick-actions {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 15;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .grid-image-wrapper:hover .grid-quick-actions {
            opacity: 1;
            transform: translateY(0);
        }

        .quick-view-btn {
            background: rgba(255, 255, 255, 0.95);
            color: var(--color-primary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .quick-view-btn:hover {
            background: var(--color-primary);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(152, 34, 30, 0.3);
        }

        /* Grid Product Information */
        .grid-product-info {
            padding: 24px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .grid-category-section {
            margin-bottom: 12px;
        }

        .grid-category-link {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .grid-category-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(152, 34, 30, 0.3);
            color: white;
        }

        .grid-product-title {
            margin-bottom: 12px;
            flex-shrink: 0;
        }

        .grid-title-link {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.3;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .grid-title-link:hover {
            color: var(--color-primary);
        }

        .grid-product-features {
            margin-bottom: 16px;
            flex: 1;
        }

        .grid-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .grid-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 6px;
            font-size: 13px;
            color: #555;
            line-height: 1.4;
        }

        .grid-feature-icon {
            color: #27ae60;
            margin-right: 8px;
            font-size: 11px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .grid-description {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        /* Enhanced Grid Price Section */
        .grid-price-section {
            margin-bottom: 16px;
            text-align: center;
        }

        .grid-price-container-sale, .grid-price-container-regular {
            text-align: center;
        }

        .grid-current-price-wrapper {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 6px;
        }

        .grid-current-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
        }

        .grid-currency {
            font-size: 12px;
            font-weight: 600;
            color: var(--color-primary);
            opacity: 0.8;
        }

        .grid-original-price-wrapper {
            text-align: center;
        }

        .grid-original-price {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
            display: block;
            margin-bottom: 4px;
        }

        .grid-savings-text {
            font-size: 11px;
            color: #27ae60;
            font-weight: 600;
            background: #d5f4e6;
            padding: 3px 8px;
            border-radius: 10px;
            display: inline-block;
        }

        /* Grid Stock Information */
        .grid-stock-info {
            margin-bottom: 16px;
            text-align: center;
        }

        .grid-stock-available, .grid-stock-low, .grid-stock-out {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 15px;
        }

        .grid-stock-available {
            background: #d5f4e6;
            color: #27ae60;
        }

        .grid-stock-low {
            background: #fef2e0;
            color: #f39c12;
        }

        .grid-stock-out {
            background: #fdeaea;
            color: #e74c3c;
        }

        /* Grid Action Button */
        .grid-action-section {
            margin-top: auto;
        }

        .grid-add-to-cart-btn {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            padding: 9px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            width: 100%;
            cursor: pointer;
        }

        .grid-add-to-cart-btn:hover:not(:disabled) {
            background: var(--color-primary);
            color: #fff;
        }

        .grid-add-to-cart-btn:disabled {
            border-color: #adb5bd;
            color: #adb5bd;
            cursor: not-allowed;
            opacity: 0.65;
        }

        .grid-add-to-cart-btn:active {
            transform: translateY(-1px);
        }

        /* Grid Empty State */
        .grid-empty-state {
            padding: 80px 20px;
            text-align: center;
        }

        .grid-empty-content {
            max-width: 400px;
            margin: 0 auto;
        }

        .grid-empty-icon {
            font-size: 80px;
            color: #bdc3c7;
            margin-bottom: 24px;
        }

        .grid-empty-title {
            color: #2c3e50;
            margin-bottom: 16px;
            font-weight: 600;
            font-size: 24px;
        }

        .grid-empty-text {
            color: #666;
            margin-bottom: 32px;
            font-size: 16px;
        }

        .grid-empty-action {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .grid-empty-action:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(152, 34, 30, 0.3);
            color: white;
        }

        /* Product card bottom row - price + add to cart */
        .product-grid-card .bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #f0f0f0;
        }

        .product-grid-card .bottom .price {
            font-size: 18px;
            font-weight: 800;
            color: var(--color-primary);
        }

        .product-grid-card .bottom .price .old-price {
            font-size: 13px;
            font-weight: 400;
            color: #adb5bd;
            text-decoration: line-through;
            display: block;
            line-height: 1.2;
        }

/* ============================================================
   CONSOLIDATED ADD-TO-CART / VIEW-CART BUTTON STYLES
   Covers: cart-btn-border, grid-add-to-cart-btn, add-to-cart-enhanced
   Used on: home, shop grid/list, shop-single
   ============================================================ */

/* Base button: home page (cart-btn-border) */
.cart-btn-border.add-to-cart,
.product-grid-card .bottom .cart-btn-border.add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn-border.add-to-cart:hover {
    background: var(--color-primary);
    color: #fff;
}

.cart-btn-border.add-to-cart.adding {
    pointer-events: none;
    opacity: 0.7;
}

.cart-btn-border.add-to-cart.added {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.cart-btn-border.add-to-cart.added:hover {
    background: #28a745;
    color: #fff;
}

.cart-btn-border.add-to-cart:disabled {
    border-color: #adb5bd;
    color: #adb5bd;
    background: transparent;
    cursor: not-allowed;
    opacity: 0.65;
}

.cart-btn-border.in-cart {
    background: transparent !important;
    border: 2px solid #28a745 !important;
    color: #28a745 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-btn-border.in-cart:hover {
    background: #28a745 !important;
    color: #fff !important;
}

/* Base button: shop grid (grid-add-to-cart-btn) */
.grid-add-to-cart-btn.add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    overflow: visible !important;
}

.grid-add-to-cart-btn.add-to-cart:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
}

.grid-add-to-cart-btn.add-to-cart.adding {
    pointer-events: none;
    opacity: 0.7;
}

.grid-add-to-cart-btn.add-to-cart.added {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.grid-add-to-cart-btn.add-to-cart:disabled {
    border-color: #adb5bd;
    color: #adb5bd;
    background: transparent;
    cursor: not-allowed;
    opacity: 0.65;
}

.grid-add-to-cart-btn.in-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 20px;
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-add-to-cart-btn.in-cart:hover {
    background: #28a745;
    color: #fff;
}

/* Base button: shop list (add-to-cart-enhanced) */
.add-to-cart-enhanced.add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-to-cart-enhanced.add-to-cart:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
}

.add-to-cart-enhanced.add-to-cart.adding {
    pointer-events: none;
    opacity: 0.7;
}

.add-to-cart-enhanced.add-to-cart.added {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.add-to-cart-enhanced.add-to-cart:disabled {
    border-color: #adb5bd;
    color: #adb5bd;
    background: transparent;
    cursor: not-allowed;
    opacity: 0.65;
}

.add-to-cart-enhanced.in-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.add-to-cart-enhanced.in-cart:hover {
    background: #28a745;
    color: #fff;
}

/* Shared: cart text transition */
.cart-btn-border .cart-text {
    transition: all 0.3s ease;
}

/* Shared: spin animation (used by icon swap, not ::after) */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Grid View */
        @media (max-width: 1200px) {
            .grid-current-price {
                font-size: 22px;
            }
            
            .grid-image-wrapper {
                height: 250px;
            }
        }

        @media (max-width: 992px) {
            .grid-image-wrapper {
                height: 220px;
            }
            
            .grid-current-price {
                font-size: 20px;
            }
            
            .grid-product-info {
                padding: 20px 16px;
            }
        }

        @media (max-width: 768px) {
            .product-grid-card {
                margin-bottom: 20px;
            }
            
            .grid-image-wrapper {
                height: 200px;
            }
            
            .grid-title-link {
                font-size: 16px;
            }
            
            .grid-add-to-cart-btn {
                padding: 14px 16px;
                font-size: 13px;
            }
        }

        /* Product list view enhancements */
        .product-list-item {
            transition: all 0.3s ease;
            background: #fff;
        }

        .product-list-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .product-image-list img {
            max-height: 200px;
            object-fit: cover;
        }

        /* ENHANCED LIST VIEW STYLES */
        .product-list-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .product-list-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--color-primary);
        }

        /* Product Image Section */
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 16px 0 0 16px;
            height: 250px;
        }

        .product-image-wrapper .image-link {
            display: block;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .product-image-wrapper .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-image-wrapper:hover .product-image {
            transform: scale(1.1);
        }

        /* Sale Badge Overlay */
        .sale-badge-overlay {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 10;
        }

        .sale-badge {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Stock Overlays */
        .stock-overlay, .low-stock-overlay {
            position: absolute;
            bottom: 16px;
            right: 16px;
            z-index: 10;
        }

        .out-of-stock-badge {
            background: linear-gradient(135deg, #95a5a6, #7f8c8d);
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 15px;
            text-transform: uppercase;
        }

        .low-stock-badge {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 15px;
            text-transform: uppercase;
        }

        /* Product Information Enhanced */
        .product-info-enhanced {
            padding: 24px 20px;
        }

        .category-section .category-link {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 6px 12px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .category-section .category-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(152, 34, 30, 0.3);
            color: white;
        }

        .product-title .title-link {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .product-title .title-link:hover {
            color: var(--color-primary);
        }

        .description-text {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13px;
            color: #555;
        }

        .feature-icon {
            color: #27ae60;
            margin-right: 8px;
            font-size: 12px;
        }

        /* Enhanced Price and Actions Section */
        .product-actions-enhanced {
            padding: 24px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 0 16px 16px 0;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Enhanced Price Display */
        .price-display-section {
            text-align: center;
        }

        .price-container-sale, .price-container-regular {
            text-align: center;
        }

        .current-price-wrapper {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .current-price-large {
            font-size: 28px;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
        }

        .currency {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-primary);
            opacity: 0.8;
        }

        .original-price-wrapper {
            text-align: center;
        }

        .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
            display: block;
            margin-bottom: 4px;
        }

        .savings-text {
            font-size: 12px;
            color: #27ae60;
            font-weight: 600;
            background: #d5f4e6;
            padding: 4px 8px;
            border-radius: 12px;
            display: inline-block;
        }

        /* Stock Information Section */
        .stock-info-section {
            text-align: center;
        }

        .stock-available, .stock-low, .stock-out {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
        }

        .stock-available {
            background: #d5f4e6;
            color: #27ae60;
        }

        .stock-low {
            background: #fef2e0;
            color: #f39c12;
        }

        .stock-out {
            background: #fdeaea;
            color: #e74c3c;
        }

        /* Enhanced Action Buttons */
        .action-buttons-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .view-details-enhanced {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
            display: inline-block;
            text-align: center;
        }

        .view-details-enhanced:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(152, 34, 30, 0.3);
        }

        /* Empty State */
        .empty-state {
            padding: 60px 20px;
            text-align: center;
        }

        .empty-content {
            max-width: 400px;
            margin: 0 auto;
        }

        .empty-icon {
            font-size: 64px;
            color: #bdc3c7;
            margin-bottom: 20px;
        }

        .empty-title {
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .empty-text {
            color: #666;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .empty-action {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .empty-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(152, 34, 30, 0.4);
            color: white;
        }

        /* Responsive Design for List View */
        @media (max-width: 992px) {
            .product-image-wrapper {
                height: 200px;
                border-radius: 16px 16px 0 0;
            }
            
            .product-actions-enhanced {
                border-radius: 0 0 16px 16px;
                padding: 20px;
            }
            
            .current-price-large {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .product-list-card {
                margin-bottom: 20px;
            }
            
            .product-info-enhanced {
                padding: 20px 16px;
            }
            
            .product-actions-enhanced {
                padding: 20px 16px;
            }
            
            .action-buttons-section {
                flex-direction: row;
            }
            
            .add-to-cart-enhanced,
            .view-details-enhanced {
                flex: 1;
            }
        }

        .product-features li {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .price-wrapper {
            margin-bottom: 10px;
        }

        .old-price {
            font-size: 14px;
        }

        .current-price {
            font-weight: 700;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .product-list-item {
                text-align: center;
            }

            .product-actions-list {
                margin-top: 20px;
            }
        }

        /* Enhanced pricing display for legacy elements */
        .price-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }
        
        .current-price {
            font-weight: 700;
            font-size: 18px;
            color: var(--color-primary);
        }
        
        .old-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }
        
        .discount-badge {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            font-size: 8px;
            font-weight: bold;
            padding: 1px 4px;
            border-radius: 6px;
            margin-left: 6px;
            display: inline-block;
        }
        
        .price-wrapper-enhanced .price-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .stock-badge {
            margin-left: auto;
        }
        
        .stock-badge .badge {
            font-size: 10px;
            padding: 4px 8px;
            border-radius: 12px;
        }
