.categories-page {
    background: var(--cream)
}

.category-hero {
    background: linear-gradient(135deg, var(--ink), #174a5b);
    color: #fff;
    text-align: center;
    padding: 72px 5% 64px
}

.category-hero .eyebrow {
    color: var(--teal)
}

.category-hero h1 {
    font: clamp(2.6rem, 5vw, 4.5rem)/1 Georgia, serif;
    margin: 13px 0
}

.category-hero p {
    max-width: 620px;
    margin: auto;
    color: #dfe9e9;
    line-height: 1.6
}

.category-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 38px 0 18px
}

.category-intro h2,
.product-heading h2 {
    font: 2rem Georgia, serif;
    color: var(--ink);
    margin: 0
}

.category-intro span {
    color: #6B7280
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-bottom: 58px
}

.catalogue-card {
    min-height: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .25s, box-shadow .25s
}

.catalogue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px #0F2A3F16
}

.catalogue-icon {
    height: 98px;
    width: 100%;
    background: linear-gradient(145deg, #E4F4F2, var(--sand));
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 3.6rem;
    margin-bottom: 16px
}

.catalogue-card h3 {
    color: var(--ink);
    margin: 0 0 6px;
    font-size: 1rem
}

.catalogue-card small {
    color: #6B7280
}

.catalogue-card .arrow {
    margin-top: auto;
    align-self: flex-end;
    color: var(--teal);
    font-size: 1.4rem
}

.paper-products {
    background: var(--sand);
    padding: 62px 0 78px
}

.product-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px
}

.product-heading p {
    color: #6B7280;
    max-width: 620px;
    line-height: 1.6;
    margin: 8px 0 0
}

.product-heading>span {
    color: var(--teal);
    font-weight: bold;
    white-space: nowrap
}

.doms-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.doms-product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    min-height: 370px
}

.doms-product-image {
    height: 185px;
    background: #fff;
    display: grid;
    place-items: center;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px
}

.doms-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply
}

.doms-product-card h3 {
    font-size: .92rem;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 10px
}

.doms-product-card .rating {
    font-size: .8rem;
    color: var(--gold);
    margin-top: auto
}

.doms-product-card strong {
    color: var(--teal);
    margin-top: 8px
}

.doms-product-card button {
    margin-top: 12px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 9px;
    cursor: pointer;
    font-weight: bold
}

.doms-product-card button:hover {
    background: var(--teal)
}

@media(max-width:850px) {

    .catalogue-grid,
    .doms-product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:620px) {
    .category-hero {
        padding: 52px 7%
    }

    .category-intro,
    .product-heading {
        display: block
    }

    .category-intro span {
        display: block;
        margin-top: 10px
    }

    .catalogue-grid {
        gap: 12px
    }

    .catalogue-card {
        min-height: 175px;
        padding: 14px
    }

    .catalogue-icon {
        height: 72px;
        font-size: 2.6rem
    }

    .product-heading>span {
        display: block;
        margin-top: 14px
    }

    .doms-product-grid {
        gap: 12px
    }

    .doms-product-card {
        min-height: 320px;
        padding: 10px
    }

    .doms-product-image {
        height: 140px
    }

    .doms-product-card h3 {
        font-size: .82rem
    }
}