:root {
    --primary: #5e0034;
    --secondary: #ccd5ae;
    --dark: #1e293b;
    --light: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
}

.header-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80');
    background-size: cover;
    background-position: center;
}

.product-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .product-card .product-buttons {
        display: flex;
        gap: 8px;
        margin-top: 8px;
    }

    .product-card .btn {
        flex: 1;
        padding: 8px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        transition: all 0.2s ease;
    }

    .product-card .btn-buy {
        background-color: var(--primary);
        color: white;
    }

    .product-card .btn-view {
        background-color: #f3f4f6;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

    .product-card .btn-buy:hover {
        background-color: #4a0029;
    }

    .product-card .btn-view:hover {
        background-color: #e5e7eb;
    }

    .product-card .product-info {
        padding: 16px;
    }

    .product-card .product-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
        height: 2.6em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-card .product-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 12px;
    }

    .product-card .current-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
    }

    .product-card .original-price {
        font-size: 0.9rem;
        color: #6b7280;
        text-decoration: line-through;
    }

    .product-card .discount {
        font-size: 0.9rem;
        color: #059669;
        font-weight: 500;
    }

    .product-card img {
        transition: transform 0.3s ease;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

.discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.new-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.soldout-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #6b7280;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.Seller-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #a30865;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.comingsoon-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f59e0b;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.buy-now-btn {
    background-color: var(--primary);
    transition: all 0.3s ease;
}

    .buy-now-btn:hover {
        background-color: #0e6304;
        transform: translateY(-2px);
    }

.price-discount {
    color: #ef4444;
    text-decoration: line-through;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Floating cart button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

    .floating-cart:hover {
        transform: scale(1.1);
    }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}
.btn-disabled {
    background-color: #9ca3af !important;
    cursor: not-allowed;
    opacity: 0.6;
}