.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Ensure picture element takes full space */
.product-section picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shop-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-block;
    background: #000;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
}

.shop-btn:hover {
    background: #333;
    transform: translateX(-50%) translateY(-2px);
}

/* Desktop specific fixes */
@media (min-width: 1024px) {
    .product-bg-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}
/* Mobile responsive */
@media (max-width: 768px) {
    .product-section {
        height: 57vh;
        min-height: 300px;
    }
    
    .shop-btn {
        bottom: 30px;
        padding: 12px 30px;
        font-size: 11px;
    }
}