.product-card.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.product-card {
    background: black;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.product-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    text-align: center;
    font-weight: bold;
}

.product-price {
    text-align: center;
    color: #00d4aa;
    font-weight: bold;
    font-size: 1.2rem;
}

body {
    background: linear-gradient(to bottom, #a646b1 0%, #7e3a99 40%, #6a2e88 60%, #6e2e91 100%);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.navbar {
    background: rgba(0, 0, 0, 0.5);
}

.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    color: white;
}

.product-card {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
}

.sale-badge {
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.landing_wrapper{
    margin: 10vh auto !important;
} 