:root {
    --shop-green: #064d43;
    --shop-maroon: #9b2945;
    --shop-gold: #c49a4a;
    --shop-cream: #fffaf6;
    --shop-muted: #756a65;
}

.rw-shop-page {
    background: var(--shop-cream);
}

.rw-shop-page .rw-page-hero {
    min-height: 360px;
    padding: 74px 0 82px;
    background:
        radial-gradient(circle at 8% 45%, rgba(155, 41, 69, 0.11), transparent 28%),
        radial-gradient(circle at 92% 55%, rgba(6, 77, 67, 0.10), transparent 30%),
        var(--shop-cream);
}

.rw-shop-page .rw-page-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -70px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(196, 154, 74, 0.25);
    border-radius: 50%;
}

.rw-shop-page .rw-page-hero span {
    color: var(--shop-maroon);
    letter-spacing: 3px;
}

.rw-shop-page .rw-page-hero h1 {
    color: var(--shop-green);
    font-size: clamp(42px, 5vw, 68px);
}

.rw-shop-page .rw-page-hero p {
    max-width: 590px;
    font-size: 16px;
}

.rw-shop-section {
    padding: 78px 0 100px;
    background: #fff;
}

.rw-shop-toolbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 34px;
    text-align: center;
}

.rw-shop-toolbar-center {
    min-width: 300px;
}

.rw-shop-toolbar-center .rw-page-kicker {
    color: var(--shop-maroon);
    font-size: 11px;
    letter-spacing: 2.5px;
}

.rw-shop-toolbar-center h2 {
    position: relative;
    margin: 12px 0 0;
    color: var(--shop-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.rw-shop-toolbar-center h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 14px auto 12px;
    background: var(--shop-gold);
}

.rw-shop-toolbar-center p {
    margin: 0;
    color: var(--shop-muted);
    font-size: 13px;
    line-height: 1.6;
}

.rw-shop-toolbar-decoration {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 145px;
}

.rw-shop-toolbar-decoration span {
    display: block;
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(155, 41, 69, 0.65));
}

.rw-shop-toolbar-decoration i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(196, 154, 74, 0.7);
    border-radius: 50%;
    color: var(--shop-gold);
    font-size: 13px;
    font-style: normal;
}

.rw-shop-toolbar-decoration-right span {
    background: linear-gradient(90deg, rgba(6, 77, 67, 0.65), transparent);
}

.rw-shop-count {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: var(--shop-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-shop-filters {
    justify-content: center;
    gap: 9px;
    margin: 0 auto 38px;
    padding: 8px;
    border: 1px solid #eaded7;
    border-radius: 30px;
    background: var(--shop-cream);
}

.rw-shop-filters a {
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 22px;
    color: var(--shop-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.rw-shop-filters a:hover,
.rw-shop-filters a.active {
    border-color: var(--shop-maroon);
    color: #fff;
    background: var(--shop-maroon);
}

.rw-shop-grid {
    gap: 24px;
}

.rw-shop-card {
    border: 1px solid #eaded7;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(70, 43, 35, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rw-shop-card:hover {
    border-color: rgba(6, 77, 67, 0.35);
    box-shadow: 0 16px 32px rgba(70, 43, 35, 0.12);
    transform: translateY(-7px);
}

.rw-shop-card-image {
    aspect-ratio: 4 / 5;
    background: #f8f1ed;
}

.rw-shop-card-image img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.rw-shop-card-content {
    padding: 18px 16px 16px;
}

.rw-shop-card-content small {
    color: var(--shop-maroon);
    font-size: 9px;
    letter-spacing: 1px;
}

.rw-shop-card-content h3 {
    min-height: 46px;
    margin: 8px 0 14px;
    color: var(--shop-green);
    font-size: 16px;
    line-height: 1.4;
}

.rw-shop-card-content strong {
    color: var(--shop-maroon);
    font-size: 15px;
}

.rw-shop-card-content button {
    color: var(--shop-maroon);
    border-color: #e5c7bf;
    background: #fff8f5;
    transition: all 0.25s ease;
}

.rw-shop-card-content button:hover {
    color: #fff;
    border-color: var(--shop-green);
    background: var(--shop-green);
}

@media (max-width: 991px) {
    .rw-shop-toolbar-decoration {
        width: 100px;
    }

    .rw-shop-filters {
        border: 0;
        border-radius: 0;
        background: transparent;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .rw-shop-page .rw-page-hero {
        min-height: 320px;
        padding: 58px 0 68px;
    }

    .rw-shop-page .rw-page-hero h1 {
        font-size: 40px;
    }

    .rw-shop-section {
        padding: 58px 0 72px;
    }

    .rw-shop-toolbar {
        display: block;
        margin-bottom: 24px;
    }

    .rw-shop-toolbar-decoration {
        display: none;
    }

    .rw-shop-toolbar-center {
        min-width: 0;
    }

    .rw-shop-count {
        position: static;
        display: block;
        margin-top: 12px;
    }

    .rw-shop-filters {
        gap: 7px;
        margin-bottom: 28px;
        padding: 0;
    }

    .rw-shop-filters a {
        padding: 8px 12px;
        font-size: 10px;
    }

    .rw-shop-grid {
        gap: 16px 12px;
    }

    .rw-shop-card-content {
        padding: 13px 11px 12px;
    }

    .rw-shop-card-content h3 {
        min-height: 42px;
        font-size: 13px;
    }
}
