.shop-hero {
    padding: 55px 30px;
    text-align: center;
    background: #e8dfd2;
}

.shop-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.shop-hero p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.shop-category {
    padding: 50px 40px;
    background: #f8f6f2;
}

.shop-category:nth-of-type(even) {
    background: white;
}

.shop-category h2 {
    text-align: center;
    color: #6b4f2a;
    font-size: 2rem;
    margin-bottom: 35px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    background: #f3eee6;
    scroll-snap-type: x mandatory;
}

.product-gallery img {
    min-width: 240px;
    width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: 8px;
    scroll-snap-align: start;
}

.product-gallery-empty {
    min-height: 240px;
    align-items: center;
    justify-content: center;
    color: #777;
}

.shop-card-body {
    padding: 22px;
}

.shop-card-body h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.item-ref {
    font-size: 0.9rem;
    color: #777;
}

.item-description {
    line-height: 1.6;
}

.item-price {
    font-weight: bold;
    color: #6b4f2a;
    font-size: 1.25rem;
}

.sold-out {
    color: #9b1c1c;
    font-weight: bold;
}

.basket-count {
    display: inline-block;
    min-width: 20px;
    padding: 2px 6px;
    margin-left: 4px;
    border-radius: 12px;
    background: #6b4f2a;
    color: white;
    font-size: 0.8rem;
    text-align: center;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
.shop-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px auto 32px;
    padding: 12px;
}

.shop-category-nav a {
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid #333;
    border-radius: 999px;
    color: #111;
    background: #fff;
}

.shop-category-nav a:hover {
    background: #111;
    color: #fff;
}

.back-to-shop-top {
    text-align: right;
    margin-top: 18px;
}

.back-to-shop-top a {
    text-decoration: none;
    font-weight: bold;
}

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

@media (max-width: 680px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-category {
        padding: 35px 20px;
    }

    .shop-hero h1 {
        font-size: 2rem;
    }

    .product-gallery img {
        min-width: 210px;
        width: 210px;
        height: 210px;
    }
}