/* Homepage-only styles. */

.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-item {
    text-align: center;
}

.product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}
.product-img::before {
    content: none;
}
.loading-placeholder {
    position: absolute;
    z-index: 1;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    opacity: 0;
}
.product-img img.loaded {
    opacity: 1;
}

img[src=""], img:not([src]), img[src*="undefined"], img[src*="null"] {
    display: none !important;
}

.product-name {
    font-size: 0.875rem;
    margin-top: 8px;
}

@media (min-width:768px) {
    .slide-life-raft {
        background-image: url("/static/image/life-raft-jinbomarine.jpg");
    }

    .slide-marine-anchor {
        background-image: url("/static/image/Marine-Anchor-JINBOMARINE-1.jpg");
    }

    .slide-marine-valve {
        background-image: url("/static/image/MARINE-VALVE-JINBOMARINE.jpg");
    }

}
