/* HERO */
.bookshop-intro {
    position: relative;
    min-height: 320px;
    margin-bottom: 2.5rem;
}

.bookshop-intro img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* REMOVE overlay completely */
.bookshop-intro::after {
    display: none;
}

.intro-text {
    position:relative;
    color:#ffffff;
    padding:2.5rem;
    max-width:600px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* CATEGORY SPACING */
.bookshop-categories {
    display: grid;
    gap: 2.5rem;
}

.category-block {
    padding: 2rem;
    border-radius: 6px;
}

.category-even { background:#f9f9f9; }
.category-odd { background:#ffffff; }

.category-title {
    margin-bottom: 1.5rem;
    display:flex;
    justify-content:space-between;
}

/* PRODUCTS */
.products-row {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
}

.product-item {
    display:grid;
    grid-template-columns:120px 1fr;
    gap:1rem;
    grid-column:span 2;
}

.product-image img {
    max-width:120px;
    width:100%;
}

.product-title { margin-bottom:0.5rem; }

.product-excerpt {
    font-size:0.9em;
    line-height:1.4;
}

/* MOBILE */
@media (max-width:768px){
    .products-row{
        grid-template-columns:1fr;
    }
}
