/* Best Price / Discount Page Styles */

/* Hero Image Banner */
.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 0;
}

/* Discount Card */
.discount-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.15);
    border-color: #00aaff;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid rgba(0, 170, 255, 0.3);
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #00aaff;
    font-size: 1.3rem;
    margin: 0 0 8px 0;
}

.card-desc {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Price Wrapper */
.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.old-price {
    color: #888888;
    font-size: 1rem;
    text-decoration: line-through;
}

.new-price {
    color: #00ff88;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Order Button */
.btn-order {
    display: inline-block;
    background: linear-gradient(135deg, #00aaff, #0088cc);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-order:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
}

/* Promo Description Section */
.promo-description {
    background-color: #16213e;
    padding: 40px 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
}

.promo-description h2 {
    color: #00aaff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promo-description h2 i {
    margin-right: 10px;
}

.promo-description p {
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-description strong {
    color: #00ff88;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .promo-banner {
        padding: 40px 15px;
    }

    .promo-banner h1 {
        font-size: 1.8rem;
    }

    .promo-banner p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .card-img {
        height: 150px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .promo-banner h1 {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-body {
        padding: 15px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .new-price {
        font-size: 1.2rem;
    }

    .btn-order {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .promo-description {
        padding: 30px 15px;
    }

    .promo-description h2 {
        font-size: 1.3rem;
    }

    .promo-description p {
        font-size: 0.95rem;
    }
}