/* =========================================================
   NORKA - TIENDA
   ========================================================= */

.shop-page {
    padding: 78px 0 110px;
    background: #fff;
}

.shop-hero {
    max-width: 760px;
}

.shop-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #a77b3f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.shop-hero h1 {
    margin: 0;
    color: #252321;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 98px);
    line-height: .92;
    font-weight: 600;
}

.shop-hero p {
    max-width: 600px;
    margin: 18px 0 0;
    color: #7c756e;
    font-size: 17px;
    line-height: 1.65;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 58px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e0d9;
}

.shop-toolbar > div {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.shop-toolbar > div strong {
    font-size: 20px;
}

.shop-toolbar > div span {
    color: #827b74;
    font-size: 13px;
}

.shop-toolbar label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #716b65;
    font-size: 13px;
}

.shop-toolbar select {
    min-width: 210px;
    height: 42px;
    padding: 0 38px 0 14px;
    border: 1px solid #ded8d1;
    background: #fff;
    color: #252321;
}

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

.shop-card {
    min-width: 0;
}

.shop-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f5f0e9;
}

.shop-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.025);
}

.shop-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #b9aea1;
    font-family: "Cormorant Garamond", serif;
    font-size: 110px;
}

.shop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    background: #252321;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.shop-copy {
    padding-top: 14px;
}

.shop-copy a {
    color: inherit;
    text-decoration: none;
}

.shop-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.08;
    font-weight: 600;
}

.shop-copy p {
    margin: 7px 0 0;
    color: #817a73;
    font-size: 13px;
    line-height: 1.5;
}

.shop-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 10px;
}

.shop-price strong {
    font-size: 14px;
}

.shop-price del {
    color: #98918a;
    font-size: 13px;
}

.shop-empty {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 70px 36px;
    border: 1px dashed #ddd5cc;
    background: #faf7f2;
    text-align: center;
}

.shop-empty > span {
    color: #d4c6b5;
    font-family: "Cormorant Garamond", serif;
    font-size: 90px;
}

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

@media (max-width: 780px) {
    .shop-page {
        padding: 50px 0 80px;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
        margin-top: 42px;
    }

    .shop-toolbar label {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-toolbar select {
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 14px;
    }
}
