/* ===================== HERO SECTION ===================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* ===================== PRODUCTS SECTION ===================== */
.products-section-new {
    background: white;
    padding: 40px 20px;
}

.products-container-new {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Product Card */
.product-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-img-new {
    position: relative;
    background: #fff;
    padding: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-new img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card-new:hover .product-img-new img {
    transform: scale(1.05);
}

.discount-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-info-new {
    padding: 15px;
}

.product-title-new {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    height: 40px;
    overflow: hidden;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title-new a {
    color: inherit;
    text-decoration: none;
}

.product-title-new a:hover {
    color: #667eea;
}

.product-rating-new {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars-new {
    color: #ffc107;
    font-size: 12px;
}

.review-count-new {
    color: #6c757d;
    font-size: 12px;
}

.product-price-new {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.current-price-new {
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
}

.original-price-new {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: line-through;
}

.btn-view-product-new {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-view-product-new:hover {
    background: #1d4ed8;
}

.view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all:hover {
    color: #764ba2;
    transform: translateX(5px);
    display: inline-block;
}

/* ===================== PROMO BANNER ===================== */
.promo-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.promo-card:hover img {
    transform: scale(1.1);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(102,126,234,0.9) 0%, rgba(118,75,162,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
}

.promo-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-btn {
    background: white;
    color: #667eea;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    transition: all 0.3s;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #667eea;
}

/* ===================== TRUST BADGES ===================== */
.trust-section {
    background: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.trust-text h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.trust-text p {
    color: #666;
    font-size: 13px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .products-section-new {
        padding: 30px 12px;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .product-img-new {
        height: 130px;
        padding: 10px;
    }

    .product-info-new {
        padding: 10px;
    }

    .product-title-new {
        font-size: 13px;
        height: 36px;
    }

    .current-price-new {
        font-size: 15px;
    }

    .original-price-new {
        font-size: 12px;
    }

    .btn-view-product-new {
        font-size: 12px;
        padding: 8px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-card {
        height: 220px;
    }

    .promo-title {
        font-size: 22px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-item {
        padding: 15px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}