/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: #f5f3e8;
}

.featured-products .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-products .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.featured-products .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.product-card.featured {
    border-color: #dc2626;
    transform: scale(1.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #71675B;
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.best-seller {
    background: #dc2626;
    color: white;
}

.product-badge.sale {
    background: #dc2626;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #f5f3e8;
    color: #71675B;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #e8e2d0;
}

.product-price {
    margin-bottom: 1rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.price-range {
    color: #666;
    font-size: 1rem;
}

.savings {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.8rem;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    line-height: 1.2;
    border: 2px solid transparent;
    text-align: center;
    width: 100%;
}

.btn-add-cart {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-add-cart:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-select-options {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-select-options:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
    min-width: 200px;
    width: auto;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Products Footer */
.products-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(113, 103, 91, 0.2);
}

.shipping-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.shipping-info i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-products .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-products {
        padding: 60px 0;
    }
    
    .product-card.featured {
        transform: none;
        order: -1;
    }
    
    .shipping-info {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .featured-products .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Focus states for accessibility */
.btn:focus {
    outline: 3px solid rgba(220, 38, 38, 0.3);
    outline-offset: 2px;
}