:root {
    --color-black: #1C1C1C;
    --color-cream: #F5F1E9;
    --color-taupe: #A68A74;
    --color-rosegold: #B76E79;

    --radius: 14px;
    --shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

/* بک‌گراند سفید ساده */
.shop-guide-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #fff;
}

/* ساختار کلی */
.shop-guide .container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 2rem 1rem 4rem;
}

.sg-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sg-header h1 {
    font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
    margin: 0 0 .5rem;
    line-height: 1.4;
    color: var(--color-black);
    font-weight: 900;
}

.sg-intro {
    color: #444;
}

/* گرید */
.sg-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns:1fr;
}

@media (min-width: 768px) {
    .sg-grid {
        grid-template-columns:1fr 1fr;
    }
}

/* کارت‌ها */
.sg-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #ececec;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    will-change: transform;
}

.sg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 110, 121, .35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* مدیا */
.sg-media {
    position: relative;
    margin: 0;
    line-height: 0;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.sg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.sg-card:hover .sg-media img {
    transform: scale(1.04);
}

/* نشان مرحله */
@counter-style persian {
    system: numeric;
    symbols: '۰' '۱' '۲' '۳' '۴' '۵' '۶' '۷' '۸' '۹';
    suffix: "";
}

.sg-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(183, 110, 121, 1) 0%, rgba(166, 138, 116, 1) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 8px 16px rgba(183, 110, 121, .35);
    font-variant-numeric: normal;
}

/* بدنه کارت */
.sg-body {
    padding: 1.25rem 1.25rem 1.5rem;
}

.sg-title {
    font-size: 1.16rem;
    margin: 0 0 .5rem;
    color: #1f1f1f;
    font-weight: 800;
}

.sg-text {
    color: #4b4b4b;
    line-height: 1.9;
    font-size: .98rem;
}

.sg-text ul {
    padding-right: 1.2rem;
    margin: .25rem 0 0;
}

.sg-text li {
    list-style: disc;
}

/* دسترس‌پذیری */
.sg-card:focus-within {
    outline: 2px solid rgba(183, 110, 121, .35);
    outline-offset: 2px;
    scroll-margin-top: 1rem;
}
