:root {
    --cream: #FBF6F0;
    --laurel: #B1B7AB;
    --laurel-dark: #7F8979;
    --ink: #20221F;
    --muted: #6F746B;
    --card: rgba(255, 252, 247, 0.78);
    --line: rgba(32, 34, 31, 0.10);
    --shadow: 0 24px 70px rgba(54, 57, 49, 0.14);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 18% 8%, rgba(177, 183, 171, 0.42), transparent 28rem),
        radial-gradient(circle at 90% 92%, rgba(255, 255, 255, 0.78), transparent 26rem),
        linear-gradient(135deg, #FBF6F0 0%, #F5EFE7 46%, #FBF6F0 100%);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-shell {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    align-items: stretch;
}
.auth-hero,
.auth-card,
.panel-welcome,
.dash-card,
.public-link-card {
    border: 1px solid var(--line);
    background: var(--card);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.auth-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 6vw, 64px);
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}

.auth-hero::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 34px;
    border: 1px solid rgba(32, 34, 31, 0.07);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.02));
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: #697260;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    right: -96px;
    top: -74px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,0.86), transparent 24%),
        linear-gradient(135deg, rgba(177,183,171,0.72), rgba(177,183,171,0.16));
    opacity: 0.5;
}

.hero-orb-two {
    width: 190px;
    height: 190px;
    left: -70px;
    bottom: 80px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,0.8), transparent 26%),
        linear-gradient(135deg, rgba(177,183,171,0.34), rgba(251,246,240,0));
    opacity: 0.52;
}

.brand-mark {
    position: absolute;
    top: 34px;
    left: 34px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(32, 34, 31, 0.10);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #586151;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-hero h1,
.panel-welcome h1 {
    margin: 0 0 20px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.6rem, 6.8vw, 5.25rem);
    line-height: 0.94;
    letter-spacing: -0.085em;
    color: #1F211E;
}

.auth-hero p,
.panel-welcome p,
.dash-card p,
.form-head p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-points span {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 700;
}

.auth-card {
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.74), rgba(251,246,240,0.72)),
        var(--card);
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 6px;
    border-radius: 22px;
    background: rgba(32, 34, 31, 0.045);
    margin-bottom: 22px;
}

.auth-tab {
    border: 0;
    cursor: pointer;
    padding: 13px 16px;
    border-radius: 17px;
    background: transparent;
    color: var(--muted);
    font-weight: 900;
    transition: 0.22s ease;
}

.auth-tab.active {
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 12px 30px rgba(54, 57, 49, 0.10);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: grid;
    gap: 16px;
}

.form-head h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.form-head p {
    margin: 8px 0 8px;
}

label {
    display: grid;
    gap: 8px;
}

label span {
    font-size: 0.86rem;
    font-weight: 800;
    color: #4A5046;
}

input {
    width: 100%;
    border: 1px solid rgba(32, 34, 31, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
}

input:focus {
    border-color: rgba(127, 137, 121, 0.65);
    box-shadow: 0 0 0 5px rgba(177, 183, 171, 0.22);
}

.btn-liquid {
    position: relative;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    margin-top: 6px;
    padding: 16px 20px;
    border-radius: 20px;
    color: #1F241D;
    font-weight: 900;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(177, 183, 171, 0.78)),
        var(--laurel);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 18px 40px rgba(87, 96, 80, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-liquid::before {
    content: "";
    position: absolute;
    inset: -60% -20%;
    background: radial-gradient(circle, rgba(255,255,255,0.75), transparent 34%);
    transform: translateX(-38%);
    transition: transform 0.45s ease;
}

.btn-liquid:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 24px 52px rgba(87, 96, 80, 0.28);
}

.btn-liquid:hover::before {
    transform: translateX(38%);
}

.alert {
    padding: 13px 15px;
    border-radius: 18px;
    margin-bottom: 14px;
    font-weight: 700;
}

.alert p {
    margin: 0;
}

.alert-error {
    background: rgba(132, 42, 42, 0.09);
    color: #7A2D2D;
    border: 1px solid rgba(132, 42, 42, 0.14);
}

.alert-success {
    background: rgba(80, 117, 70, 0.10);
    color: #46663C;
    border: 1px solid rgba(80, 117, 70, 0.15);
}

.panel-body {
    padding: 14px;
}

.panel-header {
    position: sticky;
    top: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 246, 240, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 45px rgba(54, 57, 49, 0.10);
}

.panel-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.panel-logo span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(177, 183, 171, 0.42);
}

.panel-nav {
    display: flex;
    gap: 8px;
}

.panel-nav a,
.logout-link {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.9rem;
}

.panel-nav a:hover,
.logout-link:hover {
    background: rgba(177, 183, 171, 0.22);
    color: var(--ink);
}

.panel-main {
    width: min(1180px, 100%);
    margin: 24px auto;
}

.panel-welcome {
    padding: clamp(26px, 5vw, 54px);
}

.public-link-card {
    margin-top: 24px;
    padding: 18px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.48);
}

.public-link-card span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.public-link-card a {
    word-break: break-all;
    color: #46503F;
    font-weight: 900;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.dash-card {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 80px rgba(54, 57, 49, 0.18);
}

.card-number {
    color: var(--laurel-dark);
    font-weight: 900;
}

.dash-card h2 {
    margin: 18px 0 8px;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

@media (max-width: 860px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-hero {
        min-height: auto;
        padding-top: 120px;
    }

    .panel-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .panel-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .auth-body,
    .panel-body {
        padding: 10px;
    }

    .auth-card {
        padding: 16px;
        border-radius: 24px;
    }

    .auth-hero h1,
    .panel-welcome h1 {
        font-size: 3rem;
    }

    .panel-logo strong {
        display: none;
    }
}
@media (max-width: 860px) {
    .auth-shell {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .auth-hero {
        min-height: 390px;
        padding: 34px 26px;
        justify-content: flex-end;
    }

    .auth-hero h1 {
        font-size: clamp(2.45rem, 12vw, 4.3rem);
    }

    .hero-orb-one {
        width: 210px;
        height: 210px;
        right: -90px;
        top: -84px;
    }

    .hero-orb-two {
        width: 150px;
        height: 150px;
        left: -80px;
        bottom: 40px;
    }

    .panel-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .panel-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.panel-nav a.active {
    background: rgba(177, 183, 171, 0.26);
    color: var(--ink);
}

.muted-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.48), rgba(251,246,240,0.42)),
        rgba(255,255,255,0.48);
}

.settings-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.settings-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.66), rgba(251,246,240,0.60)),
        var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.settings-card > span {
    display: inline-flex;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.settings-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.color-preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.color-preview-row i {
    width: 54px;
    height: 54px;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(32, 34, 31, 0.12);
    box-shadow: 0 14px 34px rgba(54, 57, 49, 0.14);
}

.color-preview-row strong {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

@media (max-width: 860px) {
    .settings-preview-grid {
        grid-template-columns: 1fr;
    }
}

.panel-alert {
    width: min(1180px, 100%);
    margin: 18px auto 0;
}

.products-stats {
    margin-top: 18px;
}

.manager-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
    margin-top: 18px;
}

.manager-card,
.table-card {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.70), rgba(251,246,240,0.62)),
        var(--card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.manager-card {
    padding: 24px;
}

.manager-head span,
.table-head span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.manager-head h2,
.table-head h2 {
    margin: 8px 0 18px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.055em;
}

.manager-form {
    display: grid;
    gap: 14px;
}

select,
textarea {
    width: 100%;
    border: 1px solid rgba(32, 34, 31, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
    resize: vertical;
    font: inherit;
}

select:focus,
textarea:focus {
    border-color: rgba(127, 137, 121, 0.65);
    box-shadow: 0 0 0 5px rgba(177, 183, 171, 0.22);
}

.table-card {
    margin-top: 18px;
    padding: 20px;
}

.table-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.table-head a {
    display: inline-flex;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.24);
    color: #4A5544;
    font-size: 0.88rem;
    font-weight: 900;
}

.empty-state {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid var(--line);
}

.empty-state h3 {
    margin: 0 0 8px;
    font-family: "Sora", "Inter", sans-serif;
    letter-spacing: -0.04em;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.product-admin-list {
    display: grid;
    gap: 12px;
}

.product-admin-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(32, 34, 31, 0.09);
    box-shadow: 0 14px 34px rgba(54, 57, 49, 0.08);
}

.product-admin-card.is-inactive {
    opacity: 0.62;
}

.product-admin-category {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--laurel-dark);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-admin-main h3 {
    margin: 0;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.product-admin-main p {
    margin: 8px 0;
    color: var(--muted);
    line-height: 1.55;
}

.product-admin-main strong {
    display: inline-flex;
    margin-top: 4px;
    color: #3F4939;
    font-size: 1.02rem;
}

.product-admin-actions {
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 8px;
}

.status-pill {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.24);
    color: #4A5544;
    font-size: 0.78rem;
    font-weight: 950;
}

.is-inactive .status-pill {
    background: rgba(32, 34, 31, 0.07);
    color: var(--muted);
}

.mini-button {
    border: 0;
    cursor: pointer;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(54, 57, 49, 0.08);
}

.mini-button.danger {
    color: #7A2D2D;
    background: rgba(132, 42, 42, 0.08);
}

@media (max-width: 860px) {
    .manager-grid {
        grid-template-columns: 1fr;
    }

    .product-admin-card {
        grid-template-columns: 1fr;
    }

    .product-admin-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .table-head {
        display: grid;
    }
}

.product-page {
    display: grid;
    gap: 16px;
}

.product-hero,
.mobile-section-card,
.products-feed {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.72), rgba(251,246,240,0.62)),
        var(--card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.product-hero {
    padding: clamp(26px, 5vw, 46px);
}

.product-hero > span,
.section-title-row span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-hero h1 {
    margin: 10px 0 12px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.2rem, 10vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.085em;
}

.product-hero p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.product-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.product-mini-stats div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.56);
    border: 1px solid rgba(32,34,31,0.08);
}

.product-mini-stats strong {
    display: block;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.product-mini-stats small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
}

.mobile-section-card,
.products-feed {
    padding: 18px;
}

.section-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.section-title-row h2 {
    margin: 6px 0 0;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.055em;
}

.section-title-row a {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.24);
    color: #4A5544;
    font-size: 0.84rem;
    font-weight: 900;
    white-space: nowrap;
}

.inline-category-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.inline-category-form input {
    min-width: 0;
}

.inline-category-form button {
    border: 0;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(177, 183, 171, 0.46);
    color: var(--ink);
    font-weight: 950;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.category-chips span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(32,34,31,0.08);
    color: #4A5544;
    font-size: 0.82rem;
    font-weight: 900;
}

.category-chips p {
    margin: 0;
    color: var(--muted);
}

.product-create-form {
    display: grid;
    gap: 14px;
}

.image-upload-box {
    position: relative;
    cursor: pointer;
}

.image-upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-upload-preview {
    min-height: 178px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 24px;
    border: 1px dashed rgba(32,34,31,0.22);
    background:
        radial-gradient(circle at 50% 20%, rgba(177,183,171,0.32), transparent 15rem),
        rgba(255,255,255,0.52);
    overflow: hidden;
}

.image-upload-preview.has-image {
    background-size: cover;
    background-position: center;
    border-style: solid;
}

.image-upload-preview.has-image strong,
.image-upload-preview.has-image small {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(251,246,240,0.82);
    backdrop-filter: blur(12px);
}

.image-upload-preview strong {
    display: block;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.image-upload-preview small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.products-feed {
    display: grid;
    gap: 12px;
}

.product-post {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(32,34,31,0.09);
    box-shadow: 0 14px 36px rgba(54,57,49,0.08);
}

.product-post.is-inactive {
    opacity: 0.58;
}

.product-post-image {
    width: 112px;
    min-height: 112px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(177,183,171,0.46), transparent 8rem),
        rgba(251,246,240,0.74);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.product-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-post-content {
    min-width: 0;
    display: grid;
    align-content: center;
}

.product-post-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.product-post-top span {
    color: var(--laurel-dark);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-post-top strong {
    white-space: nowrap;
    color: #3F4939;
    font-size: 0.92rem;
}

.product-post h3 {
    margin: 0;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.045em;
}

.product-post p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.9rem;
}

.product-post-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
}

.status-pill {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.24);
    color: #4A5544;
    font-size: 0.76rem;
    font-weight: 950;
}

.mini-button {
    border: 0;
    cursor: pointer;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(54, 57, 49, 0.08);
}

.mini-button.danger {
    color: #7A2D2D;
    background: rgba(132, 42, 42, 0.08);
}

@media (max-width: 560px) {
    .product-page {
        gap: 12px;
    }

    .product-mini-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .product-mini-stats div {
        padding: 13px 10px;
        border-radius: 18px;
    }

    .product-mini-stats strong {
        font-size: 1.25rem;
    }

    .product-mini-stats small {
        font-size: 0.72rem;
    }

    .mobile-section-card,
    .products-feed {
        padding: 14px;
        border-radius: 24px;
    }

    .inline-category-form {
        grid-template-columns: 1fr;
    }

    .inline-category-form button {
        height: 48px;
    }

    .product-post {
        grid-template-columns: 94px 1fr;
        gap: 11px;
        padding: 10px;
        border-radius: 22px;
    }

    .product-post-image {
        width: 94px;
        min-height: 104px;
        border-radius: 18px;
    }

    .product-post h3 {
        font-size: 0.98rem;
    }

    .product-post p {
        font-size: 0.84rem;
    }

    .product-post-top {
        display: grid;
        gap: 4px;
    }

    .product-post-actions {
        gap: 6px;
    }

    .mini-button,
    .status-pill {
        font-size: 0.72rem;
        padding: 7px 9px;
    }
}

.image-upload-preview,
.product-post-image,
.product-post,
.product-public-image,
.product-card {
    overflow: hidden;
}

.image-upload-preview img,
.product-post-image img,
.product-public-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-post-image {
    position: relative;
}

.product-post-image img {
    max-width: 100%;
}

.product-post {
    overflow: hidden;
}

.product-post-image {
    overflow: hidden;
    flex-shrink: 0;
}

.product-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.image-upload-preview {
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.products-mobile-page {
    width: min(920px, 100%);
    margin: 22px auto;
    display: grid;
    gap: 14px;
}

.products-top-card,
.products-stats-bar,
.product-create-card,
.product-cover-section {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.76), rgba(251,246,240,0.68)),
        var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.products-top-card {
    padding: clamp(24px, 5vw, 42px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.products-kicker,
.product-create-head span,
.product-cover-section-head span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.products-top-card h1 {
    margin: 8px 0 10px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.7rem, 11vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.products-top-card p {
    margin: 0;
    max-width: 520px;
    color: var(--muted);
    line-height: 1.7;
}

.view-store-btn {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-size: 0.86rem;
    font-weight: 950;
}

.products-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
}

.products-stats-bar div {
    padding: 18px 14px;
    background: rgba(255,255,255,0.42);
    text-align: center;
}

.products-stats-bar strong {
    display: block;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.8rem;
    letter-spacing: -0.06em;
}

.products-stats-bar span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.products-alert {
    margin: 0;
}

.product-create-card {
    padding: 18px;
}

.product-create-head h2,
.product-cover-section-head h2 {
    margin: 7px 0 16px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.055em;
}

.product-create-clean-form {
    display: grid;
    gap: 14px;
}

.cover-upload {
    position: relative;
    cursor: pointer;
}

.cover-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cover-upload-preview {
    min-height: 240px;
    border-radius: 26px;
    border: 1px dashed rgba(32, 34, 31, 0.24);
    background:
        radial-gradient(circle at 50% 18%, rgba(177,183,171,0.32), transparent 12rem),
        rgba(255,255,255,0.58);
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cover-upload-preview strong {
    display: block;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.045em;
}

.cover-upload-preview small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.cover-upload-preview.has-image {
    border-style: solid;
    background-color: #fff;
}

.cover-upload-preview.has-image strong,
.cover-upload-preview.has-image small {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(251,246,240,0.86);
    backdrop-filter: blur(12px);
}

.product-create-clean-form textarea,
.product-create-clean-form select {
    width: 100%;
    border: 1px solid rgba(32, 34, 31, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
    resize: vertical;
    font: inherit;
}

.product-create-clean-form textarea:focus,
.product-create-clean-form select:focus {
    border-color: rgba(127, 137, 121, 0.65);
    box-shadow: 0 0 0 5px rgba(177, 183, 171, 0.22);
}

.product-cover-section {
    padding: 18px;
}

.product-cover-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.products-empty {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(32,34,31,0.08);
}

.products-empty h3 {
    margin: 0 0 8px;
    font-family: "Sora", "Inter", sans-serif;
    letter-spacing: -0.045em;
}

.products-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.product-cover-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-cover-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(32,34,31,0.10);
    box-shadow: 0 16px 42px rgba(54,57,49,0.11);
    display: grid;
    grid-template-rows: auto 1fr;
}

.product-cover-card.hidden-product {
    opacity: 0.62;
}

.product-cover-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
}

.product-cover-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.no-cover {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    background:
        radial-gradient(circle at 50% 18%, rgba(177,183,171,0.36), transparent 11rem),
        #f8f1ea;
}

.no-cover span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.76);
    color: var(--laurel-dark);
    font-family: "Sora", "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 950;
}

.no-cover small {
    color: var(--muted);
    font-weight: 900;
}

.product-cover-content {
    padding: 14px;
    display: grid;
    align-content: start;
}

.product-cover-status {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 9px;
}

.product-cover-status span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 950;
}

.status-on {
    background: rgba(68, 130, 68, 0.12);
    color: #34783A;
}

.status-off {
    background: rgba(32,34,31,0.08);
    color: var(--muted);
}

.product-cover-content h3 {
    margin: 0;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.08rem;
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.product-cover-content p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-cover-content strong {
    display: inline-flex;
    margin-top: 12px;
    color: #40493B;
    font-size: 1.05rem;
    font-weight: 950;
}

.product-cover-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.product-cover-actions form {
    margin: 0;
}

.product-cover-actions button {
    border: 0;
    cursor: pointer;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(177,183,171,0.24);
    color: #414B3C;
    font-size: 0.78rem;
    font-weight: 950;
}

.product-cover-actions button.danger {
    background: rgba(132, 42, 42, 0.08);
    color: #7A2D2D;
}

@media (max-width: 760px) {
    .products-mobile-page {
        width: 100%;
        margin: 14px auto;
        padding: 0 10px;
        gap: 12px;
    }

    .products-top-card {
        display: grid;
        padding: 24px;
        border-radius: 26px;
    }

    .products-top-card h1 {
        font-size: 3.6rem;
    }

    .view-store-btn {
        width: fit-content;
    }

    .product-create-card,
    .product-cover-section {
        padding: 14px;
        border-radius: 26px;
    }

    .cover-upload-preview {
        min-height: 220px;
        border-radius: 22px;
    }

    .product-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-cover-card {
        border-radius: 24px;
    }

    .product-cover-content {
        padding: 12px;
    }

    .product-cover-content h3 {
        font-size: 0.96rem;
    }

    .product-cover-content p {
        font-size: 0.82rem;
    }

    .product-cover-actions {
        gap: 6px;
    }

    .product-cover-actions button {
        padding: 8px 10px;
        font-size: 0.72rem;
    }
}

@media (max-width: 390px) {
    .products-top-card h1 {
        font-size: 3.05rem;
    }

    .products-stats-bar div {
        padding: 14px 8px;
    }

    .products-stats-bar strong {
        font-size: 1.45rem;
    }

    .products-stats-bar span {
        font-size: 0.7rem;
    }

    .product-cover-grid {
        gap: 8px;
    }

    .product-cover-card {
        border-radius: 20px;
    }

    .product-cover-content {
        padding: 10px;
    }

    .product-cover-content h3 {
        font-size: 0.88rem;
    }

    .product-cover-content p {
        display: none;
    }
}

.appearance-page {
    width: min(920px, 100%);
    margin: 22px auto;
    display: grid;
    gap: 14px;
}

.appearance-hero,
.appearance-card {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.76), rgba(251,246,240,0.68)),
        var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.appearance-hero {
    padding: clamp(24px, 5vw, 42px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.appearance-hero span,
.appearance-card-head span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.appearance-hero h1 {
    margin: 8px 0 10px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.5rem, 10vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.appearance-hero p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

.appearance-hero a {
    height: fit-content;
    display: inline-flex;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-size: 0.86rem;
    font-weight: 950;
    white-space: nowrap;
}

.appearance-alert {
    margin: 0;
}

.appearance-form {
    display: grid;
    gap: 14px;
}

.appearance-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.appearance-card-head h2 {
    margin: 7px 0 4px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.055em;
}

.appearance-upload {
    position: relative;
    cursor: pointer;
}

.appearance-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.appearance-upload-preview {
    min-height: 220px;
    border-radius: 26px;
    border: 1px dashed rgba(32,34,31,0.24);
    background:
        radial-gradient(circle at 50% 18%, rgba(177,183,171,0.32), transparent 12rem),
        rgba(255,255,255,0.58);
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.appearance-upload-preview.logo-preview {
    width: 180px;
    min-height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    background-size: cover;
}

.appearance-upload-preview.has-image {
    border-style: solid;
    background-color: #fff;
}

.appearance-upload-preview strong,
.appearance-upload-preview small {
    display: block;
}

.appearance-upload-preview strong {
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.22rem;
    letter-spacing: -0.045em;
}

.appearance-upload-preview small {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.appearance-upload-preview.has-image strong,
.appearance-upload-preview.has-image small {
    width: fit-content;
    margin-inline: auto;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(251,246,240,0.86);
    backdrop-filter: blur(12px);
}

.appearance-card textarea {
    width: 100%;
    border: 1px solid rgba(32, 34, 31, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
    resize: vertical;
    font: inherit;
}

.appearance-card textarea:focus {
    border-color: rgba(127, 137, 121, 0.65);
    box-shadow: 0 0 0 5px rgba(177, 183, 171, 0.22);
}

.switch-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.54);
    border: 1px solid rgba(32,34,31,0.08);
}

.switch-row input {
    width: 20px;
    height: 20px;
}

.switch-row span {
    font-weight: 900;
}

.color-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.color-form-grid input[type="color"] {
    height: 58px;
    padding: 6px;
    cursor: pointer;
}

.save-appearance-btn {
    border: 0;
    cursor: pointer;
    padding: 18px 20px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(177,183,171,0.78)),
        var(--laurel);
    color: #1F241D;
    font-weight: 950;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        0 18px 40px rgba(87,96,80,0.22);
}

@media (max-width: 760px) {
    .appearance-page {
        margin: 14px auto;
        padding: 0 10px;
    }

    .appearance-hero {
        display: grid;
        padding: 24px;
        border-radius: 26px;
    }

    .appearance-hero h1 {
        font-size: 3.25rem;
    }

    .appearance-card {
        padding: 14px;
        border-radius: 26px;
    }

    .appearance-upload-preview {
        min-height: 190px;
        border-radius: 22px;
    }

    .appearance-upload-preview.logo-preview {
        width: 150px;
        min-height: 150px;
    }

    .color-form-grid {
        grid-template-columns: 1fr;
    }
}

.verify-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(56,151,240,0.12), rgba(255,255,255,0.56));
    border: 1px solid rgba(56,151,240,0.22);
}

.verify-box input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #3897F0;
}

.verify-box strong {
    display: block;
    color: #1D5F9F;
    font-weight: 950;
}

.verify-box span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.88rem;
}

.home-dashboard {
    width: min(1180px, 100%);
    margin: 22px auto;
    display: grid;
    gap: 16px;
}

.home-hero-card,
.home-link-card,
.home-qr-card,
.home-checklist-card,
.home-shortcuts a {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.76), rgba(251,246,240,0.68)),
        var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-hero-card {
    padding: clamp(26px, 5vw, 54px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.home-hero-card span,
.home-link-info span,
.home-card-head span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.home-hero-card h1 {
    margin: 10px 0 12px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.home-hero-card p,
.home-card-head p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}

.home-hero-card > a {
    display: inline-flex;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-size: 0.86rem;
    font-weight: 950;
    white-space: nowrap;
}

.home-link-card {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.home-link-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.home-link-info strong {
    color: #414B3C;
    word-break: break-all;
}

.home-link-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.home-link-actions button,
.home-link-actions a,
.qr-download {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-size: 0.84rem;
    font-weight: 950;
}

.home-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 16px;
}

.home-qr-card,
.home-checklist-card {
    padding: 20px;
}

.home-card-head h2 {
    margin: 8px 0 8px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.055em;
}

.qr-box {
    margin: 18px auto;
    width: 230px;
    height: 230px;
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(32,34,31,0.08);
    box-shadow: 0 16px 38px rgba(54,57,49,0.10);
}

.qr-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-download {
    width: fit-content;
    margin: 0 auto;
}

.progress-track {
    height: 12px;
    margin: 18px 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(32,34,31,0.08);
}

.progress-track div {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--laurel), #D8DDCF);
}

.checklist-list {
    display: grid;
    gap: 9px;
}

.checklist-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 18px;
    background: rgba(255,255,255,0.56);
    border: 1px solid rgba(32,34,31,0.08);
}

.checklist-list i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(132,42,42,0.10);
    color: #7A2D2D;
    font-style: normal;
    font-weight: 950;
}

.checklist-list a.done i {
    background: rgba(68,130,68,0.12);
    color: #34783A;
}

.checklist-list span {
    color: var(--ink);
    font-weight: 850;
}

.home-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-shortcuts a {
    padding: 22px;
    display: grid;
    gap: 8px;
}

.home-shortcuts span {
    color: var(--laurel-dark);
    font-weight: 950;
}

.home-shortcuts strong {
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.05em;
}

.home-shortcuts small {
    color: var(--muted);
    line-height: 1.55;
}

@media (max-width: 860px) {
    .home-dashboard {
        margin: 14px auto;
        padding: 0 10px;
    }

    .home-hero-card {
        display: grid;
        padding: 26px;
        border-radius: 26px;
    }

    .home-link-card {
        display: grid;
        border-radius: 26px;
    }

    .home-link-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home-link-actions button,
    .home-link-actions a {
        justify-content: center;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .home-shortcuts {
        grid-template-columns: 1fr;
    }

    .home-qr-card,
    .home-checklist-card,
    .home-shortcuts a {
        border-radius: 26px;
    }
}

.promo-page {
    width: min(980px, 100%);
    margin: 22px auto;
    display: grid;
    gap: 16px;
}

.promo-hero,
.current-promo-card,
.promo-config-card,
.promo-products-card,
.promo-empty {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.76), rgba(251,246,240,0.68)),
        var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.promo-hero {
    padding: clamp(26px, 5vw, 54px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.promo-hero span,
.promo-card-head span,
.current-promo-content span {
    display: inline-flex;
    color: var(--laurel-dark);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.promo-hero h1 {
    margin: 10px 0 12px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.promo-hero p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}

.promo-hero > a {
    display: inline-flex;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-size: 0.86rem;
    font-weight: 950;
    white-space: nowrap;
}

.promo-alert {
    margin: 0;
}

.current-promo-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    padding: 18px;
    overflow: hidden;
}

.current-promo-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
    border: 1px solid rgba(32,34,31,0.08);
}

.current-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.current-promo-image span {
    color: var(--laurel-dark);
    font-family: "Sora", "Inter", sans-serif;
    font-size: 4rem;
    font-weight: 950;
}

.current-promo-content {
    display: grid;
    align-content: center;
}

.current-promo-content h2 {
    margin: 8px 0 10px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.current-promo-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.current-promo-content strong {
    margin-top: 14px;
    color: #414B3C;
    font-size: 1.45rem;
    font-weight: 950;
}

.current-promo-content form {
    margin-top: 18px;
}

.current-promo-content button {
    border: 0;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(132,42,42,0.08);
    color: #7A2D2D;
    font-weight: 950;
}

.promo-config-card,
.promo-products-card,
.promo-empty {
    padding: 20px;
}

.promo-card-head h2,
.promo-empty h2 {
    margin: 8px 0 16px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.055em;
}

.promo-form {
    display: grid;
    gap: 14px;
}

.promo-form select,
.promo-form textarea {
    width: 100%;
    border: 1px solid rgba(32, 34, 31, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
    resize: vertical;
    font: inherit;
}

.promo-form select:focus,
.promo-form textarea:focus {
    border-color: rgba(127, 137, 121, 0.65);
    box-shadow: 0 0 0 5px rgba(177, 183, 171, 0.22);
}

.save-promo-btn {
    border: 0;
    cursor: pointer;
    padding: 17px 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(177,183,171,0.78)),
        var(--laurel);
    color: #1F241D;
    font-weight: 950;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        0 18px 40px rgba(87,96,80,0.22);
}

.promo-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.promo-product-mini {
    border-radius: 24px;
    padding: 10px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(32,34,31,0.08);
    box-shadow: 0 12px 30px rgba(54,57,49,0.08);
}

.promo-product-mini.selected {
    border-color: rgba(56, 151, 240, 0.35);
    box-shadow: 0 18px 44px rgba(56,151,240,0.13);
}

.promo-product-mini-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
}

.promo-product-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.promo-product-mini-image span {
    color: var(--laurel-dark);
    font-family: "Sora", "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 950;
}

.promo-product-mini h3 {
    margin: 10px 0 4px;
    font-family: "Sora", "Inter", sans-serif;
    font-size: 0.98rem;
    letter-spacing: -0.045em;
}

.promo-product-mini strong {
    display: block;
    color: #414B3C;
    font-weight: 950;
}

.promo-product-mini small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
}

.promo-empty p {
    color: var(--muted);
    line-height: 1.7;
}

.promo-empty a {
    display: inline-flex;
    margin-top: 14px;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(177, 183, 171, 0.28);
    color: #414B3C;
    font-weight: 950;
}

@media (max-width: 860px) {
    .promo-page {
        margin: 14px auto;
        padding: 0 10px;
    }

    .promo-hero {
        display: grid;
        padding: 26px;
        border-radius: 26px;
    }

    .current-promo-card {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .current-promo-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .promo-config-card,
    .promo-products-card,
    .promo-empty {
        border-radius: 26px;
        padding: 16px;
    }

    .promo-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}