﻿/* Products Section */
.custom-products-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.custom-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.custom-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.custom-product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .custom-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.custom-product-image {
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ddd;
    overflow: hidden;
}

    .custom-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
    }

.custom-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.custom-product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom-current-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6b35;
}

.custom-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.custom-discount-badge {
    background: #ff6b35;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    align-self: flex-start;
    margin-top: 5px;
}

.custom-gift-info {
    font-size: 12px;
    color: #27ae60;
    margin-top: 5px;
    font-weight: 500;
}

/* Footer */
.product-footer {
    background: #2c3e50;
    color: white;
    margin-top: 50px;
    padding: 40px 0 20px;
}

.product-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-footer-section h3 {
    margin-bottom: 15px;
    color: #ff6b35;
}

.product-footer-section ul {
    list-style: none;
}

    .product-footer-section ul li {
        margin-bottom: 8px;
    }

        .product-footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

            .product-footer-section ul li a:hover {
                color: white;
            }

.product-footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 13px;
}

/* Hot Sale Banner */
.product-hot-sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    animation: product-pulse 2s infinite;
}

@keyframes product-pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-header-main {
        flex-direction: column;
        gap: 15px;
    }

    .product-nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .product-banner-grid {
        grid-template-columns: 1fr;
    }

    .custom-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
