@media (min-width: 992px) {

    /* General Layout */
    html {
        height: 100%;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        margin: 0;
    }

    /* Header Icons Hover Effect */
    .desktop-header-actions .icon-btn:hover img {
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .main-content {
        flex: 1;
    }

    .desktop-buttons .btn-outline:hover {
        background: rgba(39, 119, 252, 0.05);
    }

    .desktop-buttons .btn-solid {
        background: #2777FC;
        color: white;
        border: none;
    }

    .desktop-buttons .btn-solid:hover {
        background: #1a5fd9;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 119, 252, 0.2);
    }

    /* Account Page Layout */
    .account-page-container {
        max-width: 95%;
        margin: 0 auto;
        padding: 15px 20px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
        grid-template-areas:
            "title title"
            "sidebar content";
    }

    .account-page-title {
        grid-area: title;
        font-size: 20px;
        font-weight: 700;
        color: #2777FC;
        margin-bottom: 0;
    }

    .account-sidebar {
        grid-area: sidebar;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 25px;
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .account-content {
        grid-area: content;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 30px;
        min-height: 500px;
        display: flex;
        flex-direction: column;
    }

    .account-content .content-header {
        flex-shrink: 0;
        margin-bottom: 20px;
    }

    .orders-scroll-container {
        flex: 1;
        overflow-y: auto;
        max-height: calc(100vh - 350px);
        padding-right: 10px;
    }

    /* Sidebar Profile Summary */
    .user-profile-summary {
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .user-profile-summary img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 15px;
        object-fit: cover;
        background: #f8f9fa;
    }

    .user-profile-summary h5 {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .user-profile-summary p {
        color: #666;
        font-size: 14px;
        margin: 0;
    }

    /* Sidebar Navigation */
    .sidebar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-nav li {
        margin-bottom: 5px;
    }

    .sidebar-nav li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 10px;
        color: #666;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s;
    }

    .sidebar-nav li a:hover {
        background: #f8f9fa;
        color: #2777FC;
    }

    .sidebar-nav li a.active {
        background: linear-gradient(135deg, #2777FC 0%, #1a5fd9 100%);
        color: #fff;
    }

    .sidebar-nav li a img {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(50%);
    }

    .sidebar-nav li a.active img {
        filter: brightness(0) invert(1);
    }

    /* Content Header */
    .content-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .content-title {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        color: #1a1a1a;
    }

    /* Address Grid */
    .address-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 15px;
    }

    .desktop-address-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        position: relative;
        transition: all 0.3s;
    }

    .desktop-address-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-color: #2777FC;
    }

    .address-type {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f0f7ff;
        color: #2777FC;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .address-info h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .address-info p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 5px;
    }

    .address-actions {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #f5f5f5;
        display: flex;
        gap: 15px;
    }

    /* Order Cards */
    .desktop-order-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
        transition: all 0.3s;
    }

    .desktop-order-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-color: #2777FC;
    }

    .order-header {
        display: flex;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
    }

    .order-id {
        font-weight: 600;
        color: #1a1a1a;
    }

    .order-items {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .order-item-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        background: #f8f9fa;
    }

    .order-info {
        flex: 1;
    }

    .order-info h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #1a1a1a;
    }

    .order-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .order-status-badge {
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .order-status-badge.active {
        background: #e3f2fd;
        color: #2777FC;
    }

    .order-status-badge.completed {
        background: #e8f5e9;
        color: #28a745;
    }

    .order-status-badge.cancelled {
        background: #ffebee;
        color: #f44336;
    }

    /* Order Tracking Stepper */
    .tracking-stepper {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin: 40px 0;
        padding: 0 20px;
    }

    .tracking-stepper::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #eee;
        z-index: 0;
    }

    .step-item {
        position: relative;
        z-index: 1;
        text-align: center;
        width: 120px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        background: #fff;
        border: 2px solid #eee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        transition: all 0.3s;
    }

    .step-item.active .step-icon {
        border-color: #2777FC;
        background: #f0f7ff;
    }

    .step-item.completed .step-icon {
        background: #2777FC;
        border-color: #2777FC;
    }

    .step-item.completed .step-icon img {
        filter: brightness(0) invert(1);
    }

    /* Fix for iconsax SVG icons in step-icon */
    .step-icon .iconsax {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-icon .iconsax svg {
        width: 20px;
        height: 20px;
    }

    .step-icon .iconsax svg path {
        fill: #888;
        transition: fill 0.3s;
    }

    .step-item.active .step-icon .iconsax svg path {
        fill: #2777FC;
    }

    .step-item.completed .step-icon .iconsax svg path {
        fill: #ffffff;
    }

    .step-label {
        font-weight: 600;
        color: #1a1a1a;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .step-date {
        color: #888;
        font-size: 12px;
    }

    /* Checkout Styles (Legacy/Fallback) */
    .checkout-page-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .checkout-title {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 30px;
    }

    .checkout-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 30px;
        align-items: start;
    }

    .checkout-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    }

    .card-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
    }

    .card-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
    }

    /* Payment Options */
    .payment-option {
        display: flex;
        align-items: center;
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 12px;
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
    }

    .payment-option:hover {
        border-color: #2777FC;
        background: #f8f9fa;
    }

    .payment-option.active {
        border-color: #2777FC;
        background: rgba(39, 119, 252, 0.05);
    }

    .payment-option input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 15px;
        accent-color: #2777FC;
        cursor: pointer;
    }

    .payment-logo {
        height: 24px;
        margin-right: 15px;
    }

    .payment-label {
        font-weight: 500;
        color: #333;
        flex: 1;
    }

    /* Order Summary */
    .order-summary-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 25px;
        position: sticky;
        top: 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .summary-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        color: #555;
        font-size: 14px;
    }

    .summary-row.total {
        border-top: 2px dashed #eee;
        padding-top: 15px;
        margin-top: 15px;
        font-weight: 700;
        color: #1a1a1a;
        font-size: 18px;
    }

    .summary-row .value {
        font-weight: 600;
    }

    .summary-row .discount {
        color: #28a745;
    }

    .place-order-btn {
        width: 100%;
        background: linear-gradient(135deg, #2777FC 0%, #1a5fd9 100%);
        color: #fff;
        border: none;
        padding: 16px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        margin-top: 20px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
    }

    .place-order-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(39, 119, 252, 0.3);
        color: #fff;
    }

    /* Deals of the Week Section */
    .deals-week-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 24px;
        padding: 40px 0;
        margin-top: 40px;
        position: relative;
        overflow: hidden;
    }

    .deals-week-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(39, 119, 252, 0.05) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
        z-index: 0;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .neon-content {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        padding: 40px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .neon-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(39, 119, 252, 0.1);
    }

    .neon-text {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #2777FC 0%, #FF6B35 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 4px rgba(39, 119, 252, 0.2));
    }

    .neon-subtext {
        font-size: 1.5rem;
        color: #1a1a1a;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .deals-week-section .banner-box {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.5s ease;
    }

    .deals-week-section:hover .banner-box {
        transform: perspective(1000px) rotateY(0deg);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .deals-week-section .theme-btn {
        background: linear-gradient(135deg, #2777FC 0%, #1a5fd9 100%);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        border: none;
        box-shadow: 0 5px 15px rgba(39, 119, 252, 0.3);
        transition: all 0.3s ease;
    }

    .deals-week-section .theme-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(39, 119, 252, 0.4);
    }

    /* Wishlist Premium Styles */
    .wishlist-card {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .wishlist-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(39, 119, 252, 0.15);
    }

    .wishlist-card .card-img-top {
        height: 220px;
        object-fit: contain;
        padding: 25px;
        background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
        transition: transform 0.4s ease;
    }

    .wishlist-card:hover .card-img-top {
        transform: scale(1.05);
    }

    .wishlist-remove-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .wishlist-remove-btn:hover {
        background: #ff4d4d;
        color: white;
        transform: rotate(90deg);
    }

    .wishlist-remove-btn:hover i {
        color: white !important;
    }

    .wishlist-title {
        font-size: 0.95rem;
        /* Reduced from 1.1rem */
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 40px;
        /* Reduced height */
    }

    .wishlist-price {
        font-size: 1rem;
        /* Reduced from 1.2rem */
        font-weight: 800;
        color: #2777FC;
    }

    .wishlist-add-btn {
        background: linear-gradient(45deg, #2777FC, #5794fc);
        border: none;
        border-radius: 8px;
        font-weight: 500;
        padding: 8px;
        /* Reduced from 10px */
        font-size: 0.9rem;
        /* Added font size reduction */
        transition: all 0.3s ease;
    }

    .wishlist-add-btn:hover {
        background: linear-gradient(45deg, #1a5fd9, #2777FC);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 119, 252, 0.3);
    }

    .empty-wishlist-container {
        text-align: center;
        padding: 40px 20px;
        /* Reduced from 60px */
    }

    .empty-wishlist-icon {
        width: 100px;
        /* Reduced from 120px */
        height: 100px;
        /* Reduced from 120px */
        background: #f0f7ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        /* Reduced margin */
    }

    .empty-wishlist-icon i {
        font-size: 40px;
        /* Reduced from 50px */
        color: #2777FC;
    }

    /* Full Width Wishlist Layout */
    .wishlist-page-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 12px;
        /* Reduced padding */
    }

    .wishlist-header {
        text-align: center;
        margin-bottom: 30px;
        /* Reduced from 50px */
        position: relative;
    }

    .wishlist-header h1 {
        font-size: 2rem;
        /* Reduced from 2.5rem */
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

    .wishlist-header p {
        color: #7f8c8d;
        font-size: 1rem;
        /* Reduced from 1.1rem */
    }

    .wishlist-header::after {
        content: '';
        display: block;
        width: 50px;
        /* Reduced width */
        height: 3px;
        /* Reduced height */
        background: #2777FC;
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .wishlist-actions-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        /* Reduced from 30px */
        padding: 10px 20px;
        /* Reduced padding */
        background: #f8f9fa;
        border-radius: 10px;
        /* Slightly reduced radius */
    }


    /* Category Page Container Margins */
    section.section-b-space {
        padding: 30px 0;
    }

    section.section-b-space .custom-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Horizontal Scroll Container Spacing */
    .horizontal-scroll-wrapper {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* ========================================
       CATEGORY PAGE - Premium Desktop Design
       ======================================== */

    /* Category Grid for Desktop */
    section.section-b-space .categories-slider.category-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
        padding: 0;
        list-style: none;
    }

    /* Premium Category Card */
    section.section-b-space .category-box {
        position: relative;
        overflow: visible;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 12px;
        padding: 20px 12px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid transparent;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        overflow: visible;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Glassmorphism effect on hover */
    section.section-b-space .category-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(39, 119, 252, 0.1) 0%, rgba(23, 92, 211, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    section.section-b-space .category-box:hover::before {
        opacity: 1;
    }

    section.section-b-space .category-box:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(39, 119, 252, 0.2);
        border-color: #2777FC;
    }

    /* Category Image Container */
    section.section-b-space .category-box-img {
        position: relative;
        width: 100px;
        height: 100px;
        margin: 0 auto 12px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: all 0.4s ease;
        z-index: 1;
    }

    section.section-b-space .category-box:hover .category-box-img {
        transform: rotate(5deg) scale(1.1);
        background: linear-gradient(135deg, #2777FC 0%, #5794fc 100%);
        box-shadow: 0 10px 30px rgba(39, 119, 252, 0.3);
    }

    /* Category Image */
    section.section-b-space .category-box-img img {
        width: 65px;
        height: 65px;
        object-fit: contain;
        transition: all 0.4s ease;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }

    section.section-b-space .category-box:hover .category-box-img img {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5)) brightness(1.1);
    }

    /* Category Title */
    section.section-b-space .category-box h5 {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    section.section-b-space .category-box:hover h5 {
        color: #2777FC;
        transform: scale(1.05);
    }

    /* Decorative Elements - Removed to prevent overflow */



    /* ========================================
       PRODUCT CARDS - Premium Desktop Design
       ======================================== */

    /* Premium Product Card Styling */
    .product-box {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #f0f0f0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(39, 119, 252, 0.15);
        border-color: #2777FC;
    }

    /* Product Image Container */
    .product-box .product-img {
        position: relative;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        padding: 10px;
        overflow: hidden;
        min-height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-box .product-img img {
        transition: transform 0.4s ease;
    }

    .product-box:hover .product-img img {
        transform: scale(1.08);
    }

    /* Product Content */
    .product-box .product-content {
        padding: 10px;
        background: #ffffff;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-box .product-content h6 {
        font-size: 12px;
        font-weight: 600;
        color: #2777FC;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .product-box .product-content h5 {
        font-size: 12px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 10px;
        line-height: 1.4;
        min-height: 42px;
    }

    /* Rating List */
    .product-box .rating-list {
        margin: 10px 0;
    }

    .product-box .rating-list li img {
        width: 14px;
        height: 14px;
    }

    /* Price Styling */
    .product-box .bottom-content .price {
        font-size: 14px;
        font-weight: 700;
        color: #2777FC;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .product-box .bottom-content .price del {
        font-size: 14px;
        color: #999;
        font-weight: 500;
    }

    /* Badge/Discount Tag */
    .product-box .badge-img {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
        color: white;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    /* Add Icon Styling */
    .product-box .add-icon {
        background: linear-gradient(135deg, #2777FC 0%, #1a5fd9 100%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .product-box:hover .add-icon {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 5px 15px rgba(39, 119, 252, 0.4);
    }

    /* ========================================
       HORIZONTAL SCROLL - Product Sections
       ======================================== */

    /* Horizontal Scroll Container */
    .horizontal-scroll-wrapper {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #2777FC #f0f0f0;
        padding-bottom: 15px;
    }

    /* Custom Scrollbar - Webkit */
    .horizontal-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #2777FC 0%, #5794fc 100%);
        border-radius: 10px;
        transition: background 0.3s;
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #1a5fd9 0%, #2777FC 100%);
    }

    /* Horizontal Product Row */
    .horizontal-product-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        width: max-content;
    }

    /* Product Item in Horizontal Scroll */
    .horizontal-product-row>.col-6,
    .horizontal-product-row>.col-lg-3,
    .horizontal-product-row>div[class*="col-"] {
        width: 200px;
        flex-shrink: 0;
    }

    /* Smooth Fade Effect on Edges */
    .horizontal-scroll-wrapper::before,
    .horizontal-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 15px;
        width: 50px;
        pointer-events: none;
        z-index: 2;
    }

    .horizontal-scroll-wrapper::before {
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .horizontal-scroll-wrapper::after {
        right: 0;
        background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    /* Hide fade on scroll edges */
    .horizontal-scroll-wrapper.at-start::before {
        opacity: 0;
    }

    .horizontal-scroll-wrapper.at-end::after {
        opacity: 0;
    }

    /* Compact Product Card Styles */
    .compact-product-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
    }

    .compact-product-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
        border-color: #2777FC;
    }

    .compact-card-img-wrapper {
        position: relative;
        padding-top: 100%;
        /* 1:1 Aspect Ratio */
        overflow: hidden;
        background: #f8f9fa;
    }

    .compact-card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 15px;
        transition: transform 0.5s ease;
    }

    .compact-product-card:hover .compact-card-img {
        transform: scale(1.05);
    }

    .compact-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff4d4d;
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 700;
        z-index: 2;
    }



    .compact-card-content {
        padding: 12px;
        position: relative;
    }

    .compact-add-icon {
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 2;
        text-decoration: none;
        background: radial-gradient(70.25% 76.67% at 33.33% 28.33%, #5ba3ff 0%, #1e60f2 100%);
        border-radius: 50%;
        color: white;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .compact-add-icon:hover {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 5px 15px rgba(39, 119, 252, 0.4);
    }

    .compact-add-icon i,
    .compact-add-icon .iconsax {
        font-size: 18px;
        font-weight: 600;
        color: white;
    }

    .compact-add-icon .iconsax {
        --iconsax-Color: rgba(255, 255, 255, 1);
        --iconsax-Size: 18px;
    }

    /* Wishlist Heart Icon */
    .compact-like-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 32px;
        height: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 3;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        opacity: 1 !important;
        visibility: visible !important;
    }

    .compact-like-icon .icon {
        position: absolute;
        width: 20px;
        height: 20px;
        transition: all 0.3s ease;
    }

    .compact-like-icon .outline-icon {
        opacity: 1;
        display: flex;
    }

    .compact-like-icon .fill-icon {
        opacity: 0;
        display: none;
    }

    .compact-like-icon.active .fill-icon,
    .compact-like-icon.animate .fill-icon {
        opacity: 1;
        display: flex;
    }

    .compact-like-icon.active .outline-icon,
    .compact-like-icon.animate .outline-icon {
        opacity: 0;
        display: none;
    }

    .compact-like-icon.inactive {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .compact-category {
        font-size: 11px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .compact-title {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
    }

    .compact-price-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .compact-price {
        font-size: 15px;
        font-weight: 700;
        color: #2777FC;
    }

    .compact-mrp {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
    }

    /* Home Section Swiper Overrides */
    .home-section-swiper {
        padding: 5px 5px 20px 5px !important;
        /* Add padding for shadow/hover space */
    }

    .home-section-swiper .swiper-button-next,
    .home-section-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        color: #333;
    }

    .home-section-swiper .swiper-button-next::after,
    .home-section-swiper .swiper-button-prev::after {
        font-size: 14px;
        font-weight: bold;
    }

    .home-section-swiper .swiper-button-disabled {
        opacity: 0;
        pointer-events: none;
    }
}