/* =========================================================
   PRINTGROUP CATEGORY PAGE
   ========================================================= */

.catalogue-head {
    width: min(1400px, 90%);
    margin: 0 auto;
    padding: 52px 0 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #7a7d84;
    font-size: 14px;
}

.breadcrumbs a {
    color: #c90083;
    font-weight: 700;
}

.catalogue-head h1 {
    margin: 0 0 8px;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1.8px;
}

.catalogue-head p {
    margin: 0;
    color: #70747c;
    font-size: 16px;
}

.main-search {
    width: min(420px, 100%);
    height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid #dedfe3;
    border-radius: 10px;
    background: #fff;
}

.main-search span {
    color: #c90083;
    font-size: 24px;
}

.main-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
}

.catalogue {
    width: min(1400px, 90%);
    margin: 0 auto;
    padding: 10px 0 80px;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid #e3e4e7;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(0,0,0,.05);
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.09);
}

.product-card > a {
    display: block;
}

.product-image {
    height: 220px;
    padding: 18px;
    background: #f6f6f7;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background:
        linear-gradient(135deg, #fafafa 0%, #eeeeef 100%);
    color: #c90083;
}

.image-placeholder span {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -2px;
}

.product-info {
    padding: 18px 20px 20px;
}

.product-info h3 {
    margin: 0 0 18px;
    min-height: 48px;
    font-size: 18px;
    line-height: 1.3;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #c90083;
    font-size: 14px;
    font-weight: 700;
}

.product-bottom strong {
    font-size: 20px;
}

.no-results {
    display: none;
    padding: 60px 0;
    text-align: center;
    color: #777a82;
    font-size: 18px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .catalogue-head {
        align-items: stretch;
        flex-direction: column;
        padding-top: 34px;
    }

    .main-search {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .catalogue-head,
    .catalogue {
        width: calc(100% - 36px);
    }

    .catalogue-head h1 {
        font-size: 36px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }
}
