.shop-header {
     background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../../assets/images/hero (8).jpg') center/cover;
}

.page-header h1 {
    font-weight: 600;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    width: 95%;
    max-width: 1300px;
    margin: 20px auto;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.product-name {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 0;
    left: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    background-color: var(--accent-dark-transparent);
    padding: 10px 15px;
}

/* Image Container */
.product-image {
    width: 100%;
    height: 240px;
    background: #f9f9f9;
    overflow: hidden;
}

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

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

.product-img {
    height: 220px;
    background: #eee;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    margin: 10px 20px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.product-actions {
    margin: 30px 10px;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        font-size: smaller;
    }

    .product-name{
        font-size: 1rem;
    }
}