﻿:root {
    --bg: #f8f5ee;
    --card-bg: #ffffff;
    --ink: #201b12;
    --muted: #8c826d;
    --gold: #b6902f;
    --gold-light: #e9d9ab;
    --gold-deep: #8a6a1f;
    --price: #a97e21;
    --ring: #ecdfba;
}




.bsjsgsgp-section {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 34%);
    grid-template-areas:
        "header hero"
        "cards  hero";
    column-gap: 40px;
    row-gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.bsjsgsgp-hero {
    grid-area: hero;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
    padding: 3px;
    background: linear-gradient(155deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
}

    .bsjsgsgp-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
    }

.bsjsgsgp-header {
    grid-area: header;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.bsjsgsgp-header-text h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--ink), var(--gold-deep) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bsjsgsgp-header-text p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

.bsjsgsgp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .bsjsgsgp-view-all:hover {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(182,144,47,0.12);
    }

    .bsjsgsgp-view-all svg {
        width: 16px;
        height: 16px;
        transform: scaleX(-1);
        stroke: var(--ink);
    }

.bsjsgsgp-cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bsjsgsgp-card {
    background: var(--card-bg);
    border: 1px solid var(--ring);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 24px -18px rgba(138,106,31,0.55);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .bsjsgsgp-card:hover {
        border-color: var(--gold);
        box-shadow: 0 16px 32px -16px rgba(138,106,31,0.4);
        transform: translateY(-2px);
    }

.bsjsgsgp-card-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ececec;
}

    .bsjsgsgp-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.bsjsgsgp-fav {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--ring);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bsjsgsgp-fav svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold-deep);
        fill: none;
        stroke-width: 1.8;
    }

.bsjsgsgp-card-body {
    padding: 14px 6px 6px;
}

.bsjsgsgp-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
    min-height: 48px;
}

.bsjsgsgp-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--price);
    font-weight: 700;
    font-size: 15px;
}

    .bsjsgsgp-card-price .bsjsgsgp-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--price);
    }

.bsjsgsgp-order-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 11px 0;
    border: 1px solid var(--gold-deep);
    border-radius: 10px;
    background: linear-gradient(135deg, #e9d9ab, #b6902f 55%, #8a6a1f);
    color: #2a1f08;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 16px -8px rgba(138,106,31,0.7);
    transition: filter 0.2s ease, transform 0.2s ease;
}

    .bsjsgsgp-order-btn:hover {
        filter: brightness(1.06);
        transform: translateY(-1px);
    }

    .bsjsgsgp-order-btn:active {
        transform: translateY(0);
        filter: brightness(0.97);
    }

@media (max-width: 1080px) {
    .bsjsgsgp-section {
        grid-template-columns: 1fr minmax(260px, 32%);
    }

    .bsjsgsgp-cards {
        gap: 16px;
    }
}

@media (max-width: 760px) {
 

    .bsjsgsgp-section {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "cards"
            "hero";
        row-gap: 22px;
    }

    .bsjsgsgp-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 14px;
    }

    .bsjsgsgp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .bsjsgsgp-card-title {
        font-size: 13.5px;
        min-height: 42px;
    }

    .bsjsgsgp-card-price {
        font-size: 13px;
    }

    .bsjsgsgp-hero {
        min-height: 260px;
    }
}
















:root {
    --bg: #f8f5ee;
    --card-bg: #ffffff;
    --ink: #201b12;
    --muted: #8c826d;
    --gold: #b6902f;
    --gold-light: #e9d9ab;
    --gold-deep: #8a6a1f;
    --price: #a97e21;
    --ring: #ecdfba;
}



.xomgk-section {
    display: grid;
    grid-template-columns: minmax(300px, 34%) 1fr;
    grid-template-areas:
        "hero header"
        "hero cards";
    column-gap: 40px;
    row-gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.xomgk-hero {
    grid-area: hero;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
    padding: 3px;
    background: linear-gradient(155deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
}

    .xomgk-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
    }

.xomgk-header {
    grid-area: header;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.xomgk-header-text h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--ink), var(--gold-deep) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.xomgk-header-text p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

.xomgk-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .xomgk-view-all:hover {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(182,144,47,0.12);
    }

    .xomgk-view-all svg {
        width: 16px;
        height: 16px;
        transform: scaleX(-1);
        stroke: var(--ink);
    }

.xomgk-cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.xomgk-card {
    background: var(--card-bg);
    border: 1px solid var(--ring);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 24px -18px rgba(138,106,31,0.55);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .xomgk-card:hover {
        border-color: var(--gold);
        box-shadow: 0 16px 32px -16px rgba(138,106,31,0.4);
        transform: translateY(-2px);
    }

.xomgk-card-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ececec;
}

    .xomgk-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.xomgk-fav {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--ring);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .xomgk-fav svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold-deep);
        fill: none;
        stroke-width: 1.8;
    }

.xomgk-card-body {
    padding: 14px 6px 6px;
}

.xomgk-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
    min-height: 48px;
}

.xomgk-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--price);
    font-weight: 700;
    font-size: 15px;
}

    .xomgk-card-price .xomgk-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--price);
    }

.xomgk-order-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 11px 0;
    border: 1px solid var(--gold-deep);
    border-radius: 10px;
    background: linear-gradient(135deg, #e9d9ab, #b6902f 55%, #8a6a1f);
    color: #2a1f08;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 16px -8px rgba(138,106,31,0.7);
    transition: filter 0.2s ease, transform 0.2s ease;
}

    .xomgk-order-btn:hover {
        filter: brightness(1.06);
        transform: translateY(-1px);
    }

    .xomgk-order-btn:active {
        transform: translateY(0);
        filter: brightness(0.97);
    }

@media (max-width: 1080px) {
    .xomgk-section {
        grid-template-columns: minmax(260px, 32%) 1fr;
    }

    .xomgk-cards {
        gap: 16px;
    }
}

@media (max-width: 760px) {
   

    .xomgk-section {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "cards"
            "hero";
        row-gap: 22px;
    }

    .xomgk-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 14px;
    }

    .xomgk-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .xomgk-card-title {
        font-size: 13.5px;
        min-height: 42px;
    }

    .xomgk-card-price {
        font-size: 13px;
    }

    .xomgk-hero {
        min-height: 260px;
    }
}