/* Common CSS - Zenith Parfume */

.banner-simple {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.banner-simple h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-simple p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.homepage-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.featured-products-title {
    color: #7b2ff2;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.featured-product-card {
    position: relative;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.featured-product-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
}

.featured-product-body {
    padding: 20px;
}

.featured-product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.featured-product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7b2ff2;
    margin-bottom: 0.5rem;
}

.featured-product-description {
    color: #666;
    font-size: 0.9rem;
}

.order-now-btn {
    background: linear-gradient(135deg, #7b2ff2, #f357a8);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(123, 47, 242, 0.3);
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 47, 242, 0.4);
    color: white;
    text-decoration: none;
}