
.products {
    padding: 60px 1%;
    /* background: white; */
    max-width: 1400px;
    margin: 0 auto;
}
a{
    text-decoration: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    /* background: white; */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    /* background: #ff4757; */
    /* color: white; */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.quick-view {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    /* background: white; */
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-card:hover .quick-view {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    /* color: #1a1a1a; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    /* background: #1a1a1a; */
    /* color: white; */
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.add-to-cart:hover {
    background: #f1f1f1;
    color: rgb(0, 0, 0);
}


/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    opacity: 0.7;
}

.payment-icons svg {

    width: 80px;
    background: white;
    height: 44px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}



@media (max-width: 768px) {
    


    .hero h1 {
        font-size: 42px;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Cart Animation */
@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.cart-bounce {
    animation: cartBounce 0.4s ease;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}