/* shop.css — Winkelpagina */

/* ---- Product Section ---- */
.product-section {
    padding: 3rem 24px;
}

@media (min-width: 1024px) {
    .product-section { padding: 5rem 24px; }
}

.product-section__container {
    max-width: var(--container);
    margin-inline: auto;
}

.product-section__grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .product-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* ---- Product Images ---- */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-images__main {
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    overflow: hidden;
    background-color: var(--bg-subtle);
}

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

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}
.product-thumb {
    aspect-ratio: 1;
    background: var(--bg-subtle);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s;
}
.product-thumb:hover { border-color: var(--border); }
.product-thumb.is-active { border-color: var(--accent); }
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Product Info ---- */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-info__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .product-info__title { font-size: 2.5rem; }
}

.product-info__description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-info__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-info__price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.product-info__price-vat {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ---- Product Features ---- */
.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-features__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.product-features__icon {
    color: var(--primary);
    flex-shrink: 0;
}

/* ---- Product Actions ---- */
.product-actions {
    margin-bottom: 1.5rem;
}

.product-actions__cart-btn {
    flex: 1;
}

/* ---- Trust Badges ---- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust-badges__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.trust-badges__icon {
    color: var(--primary);
}

/* ---- Additional Products ---- */
.additional-products {
    padding: 4rem 24px;
    background-color: var(--bg-subtle);
}

.additional-products__container {
    max-width: var(--container);
    margin-inline: auto;
}

.additional-products__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .additional-products__title { font-size: 2rem; }
}

.additional-products__subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-inline: auto;
}

/* ---- Products Grid ---- */
.products-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Product Card ---- */
.product-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.product-card__image {
    aspect-ratio: 1;
    position: relative;
    background-color: var(--bg-subtle);
    overflow: hidden;
}

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

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 1.25rem;
}

.product-card__name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card__description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Binnenkort leverbaar — wel tonen, niet bestelbaar */
.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: var(--r-sm);
    background-color: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card--binnenkort .product-card__image img {
    opacity: 0.7;
}

.product-card__soon {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}
