:root {
    --font-ui: Tahoma, Arial, sans-serif;
    --bg: #0b0b0e;
    --bg-soft: #121217;
    --surface: #171821;
    --surface-2: #1f2130;
    --header-surface: #171821;
    --category-surface: #111219;
    --section-surface: #171821;
    --card-surface: #1f2130;
    --footer-surface: #111219;
    --text: #fff4ea;
    --muted: #d9bca2;
    --accent: #ff933f;
    --accent-2: #ffbe82;
    --accent-contrast: #1a120d;
    --price-bg: #ff933f;
    --price-text: #1a120d;
    --line: rgba(255, 164, 82, 0.18);
    --line-strong: rgba(255, 164, 82, 0.34);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --glow: 0 0 38px rgba(255, 147, 63, 0.16);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --text-align: right;
    --grid-inline: end;
    --flex-inline: flex-end;
    --flex-cross: flex-end;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-ui);
    color: var(--text);
    text-align: var(--text-align);
    background:
        radial-gradient(circle at top right, rgba(255, 153, 77, 0.11), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 190, 130, 0.08), transparent 22%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}
body.viewer-open,
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

body[data-align="right"] {
    --text-align: right;
    --grid-inline: end;
    --flex-inline: flex-end;
    --flex-cross: flex-end;
}
body[data-align="center"] {
    --text-align: center;
    --grid-inline: center;
    --flex-inline: center;
    --flex-cross: center;
}
body[data-align="left"] {
    --text-align: left;
    --grid-inline: start;
    --flex-inline: flex-start;
    --flex-cross: flex-start;
}

.container {
    width: min(1160px, calc(100% - 28px));
    margin-inline: auto;
}
.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.page-panel {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--surface), rgba(255,255,255,0.02));
    box-shadow: var(--shadow), var(--glow);
}

.site-header {
    padding: 16px 0 0;
    position: relative;
    z-index: 30;
}
.site-header-bar {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--header-surface), rgba(255,255,255,0.02));
}
.header-side-slot {
    display: flex;
    justify-content: center;
}
.header-icon-button,
.header-icon-spacer {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-icon-spacer {
    opacity: 0;
    pointer-events: none;
}
.header-icon-button {
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.header-icon-button:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.08);
}
.header-icon-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.menu-toggle-button {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}
.menu-toggle-button span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.header-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}
.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    display: grid;
    place-items: center;
    color: var(--accent-contrast);
    font-size: 1.8rem;
    font-weight: 700;
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}
.brand-copy strong {
    font-size: clamp(1.1rem, 2.2vw, 1.75rem);
    line-height: 1.2;
}
.brand-copy span {
    color: var(--muted);
    font-size: .95rem;
}

.site-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
}
.site-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 12, 16, 0.65);
    backdrop-filter: blur(8px);
}
.site-drawer-panel {
    position: relative;
    z-index: 1;
    width: min(380px, calc(100% - 28px));
    margin: 22px auto 0;
    padding: 18px;
}
.site-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.site-drawer-head strong {
    font-size: 1.05rem;
}
.site-drawer-links {
    display: grid;
    gap: 10px;
}
.drawer-link {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--muted);
}
.drawer-link.is-active,
.drawer-link:hover {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.08);
}

.category-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 8px 0 0;
}
.category-bar.is-pinned {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: 120;
}
.category-bar-placeholder {
    width: 100%;
    height: 0;
    pointer-events: none;
}
.category-bar-shell {
    display: grid;
    gap: 14px;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--category-surface), rgba(255,255,255,0.02));
}
.category-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    margin-inline: auto;
    cursor: pointer;
    font-weight: 900;
    font-size: 1rem;
}
.category-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform .2s ease;
}
.category-bar-shell.is-collapsed .category-toggle svg {
    transform: rotate(180deg);
}
.category-bar-inner {
    display: flex;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.category-bar-inner::-webkit-scrollbar { display: none; }
.category-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: max-content;
    border-radius: 22px;
    border: 1px solid transparent;
    transition: .2s ease;
    color: var(--muted);
}
.category-link:hover,
.category-link.is-active {
    color: var(--text);
    border-color: var(--line-strong);
}
.category-link-media {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
}
.category-link-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-link-label {
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
}

.main-content {
    flex: 1;
    padding: 24px 0 42px;
}
.menu-sections {
    display: grid;
    gap: 28px;
}
.menu-section {
    display: grid;
    gap: 18px;
    scroll-margin-top: 126px;
}
.section-head {
    display: flex;
    justify-content: var(--flex-inline);
}
.section-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    line-height: 1.2;
}

.product-list {
    display: grid;
    gap: 16px;
}
.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 192px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(135deg, var(--card-surface), rgba(255,255,255,0.015));
    overflow: hidden;
}
.product-card-media {
    display: grid;
    gap: 10px;
    align-content: start;
}
.product-image-button {
    appearance: none;
    border: 0;
    padding: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 18px 36px rgba(0,0,0,0.20);
}
.product-image-button img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product-gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.gallery-dot-button {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.32);
    transition: .2s ease;
}
.gallery-dot.is-active {
    width: 24px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 14px rgba(255,153,77,0.26);
}
.product-card-body {
    min-width: 0;
    display: grid;
    gap: 16px;
    align-content: space-between;
}
.product-copy {
    display: grid;
    gap: 10px;
    justify-items: var(--grid-inline);
}
.product-copy h3 {
    width: 100%;
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.6;
}
.product-description {
    width: 100%;
    margin: 0;
    color: var(--muted);
    line-height: 1.95;
    font-size: .97rem;
}
.product-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
body[data-align="right"] .product-card-footer { justify-content: flex-end; }
body[data-align="center"] .product-card-footer { justify-content: center; }
body[data-align="left"] .product-card-footer { justify-content: flex-start; }
.product-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    background: var(--price-bg);
    color: var(--price-text);
    font-weight: 900;
}
.product-price strong {
    font-size: 1.05rem;
}
.product-price span {
    font-size: .92rem;
    opacity: .92;
}
.product-action-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 700;
}
.product-card.is-unavailable { filter: saturate(.72); }
.product-unavailable-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
    background: rgba(58, 58, 64, 0.42);
    backdrop-filter: grayscale(0.9) blur(2px);
}
.product-unavailable-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(16,16,20,.94);
    color: #fff;
    font-weight: 900;
}

.empty-state,
.about-copy,
.about-detail-card {
    text-align: var(--text-align);
}
.empty-state {
    display: grid;
    gap: 14px;
    justify-items: var(--grid-inline);
    padding: 32px;
}
.empty-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-contrast);
    font-size: 2.4rem;
    box-shadow: var(--glow);
}
.empty-state h1 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.empty-state p {
    width: 100%;
    margin: 0;
    color: var(--muted);
    line-height: 1.95;
}
.page-actions,
.site-footer-links,
.detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: var(--flex-inline);
}
.centered-actions { justify-content: center; }
.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 18px;
    font-weight: 900;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.primary-action {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-contrast);
}
.secondary-action {
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
}
.primary-action:hover,
.secondary-action:hover { transform: translateY(-1px); }

.about-page-main {
    display: grid;
    gap: 22px;
}
.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, .85fr);
    gap: 20px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(135deg, var(--section-surface), rgba(255,255,255,0.015));
}
.about-copy {
    display: grid;
    gap: 12px;
    justify-items: var(--grid-inline);
}
.page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--accent-2);
    font-size: .88rem;
    font-weight: 800;
}
.about-copy h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.16;
}
.about-text {
    width: 100%;
    margin: 0;
    color: var(--muted);
    line-height: 2;
}
.about-actions {
    align-content: start;
}
.about-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.about-detail-card {
    display: grid;
    gap: 12px;
    justify-items: var(--grid-inline);
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(135deg, var(--card-surface), rgba(255,255,255,0.015));
}
.detail-label {
    color: var(--accent-2);
    font-size: .92rem;
    font-weight: 900;
}
.detail-value {
    width: 100%;
    line-height: 1.9;
}
.detail-value.muted { color: var(--muted); }
.detail-links a {
    color: var(--text);
    border-bottom: 1px dashed var(--line-strong);
    padding-bottom: 2px;
}

.site-footer {
    padding: 0 0 24px;
}
.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        linear-gradient(135deg, var(--footer-surface), rgba(255,255,255,0.02));
}
.footer-title {
    font-weight: 900;
}
.site-footer-links a {
    color: var(--text);
    opacity: .92;
}

.image-viewer {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 100;
}
.viewer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(9, 9, 12, 0.76);
    backdrop-filter: blur(8px);
}
.viewer-panel {
    position: relative;
    z-index: 1;
    width: min(92vw, 760px);
    max-height: 88vh;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    box-shadow: var(--shadow), var(--glow);
}
.viewer-panel img {
    width: 100%;
    max-height: calc(88vh - 36px);
    object-fit: contain;
    border-radius: 22px;
}
.viewer-close {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 2rem;
}

body[data-style="style-one"] .category-link {
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
}
body[data-style="style-one"] .category-link-media {
    width: 44px;
    height: 44px;
}
body[data-style="style-one"] .menu-section {
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--section-surface), rgba(255,255,255,0.02));
    box-shadow: var(--shadow), var(--glow);
}
body[data-style="style-one"] .product-card {
    box-shadow: 0 18px 34px rgba(0,0,0,0.16), var(--glow);
}
body[data-style="style-one"] .product-price {
    border-radius: 999px;
}

body[data-style="style-two"] {
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --glow: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}
body[data-style="style-two"] .site-header-bar,
body[data-style="style-two"] .site-footer-inner,
body[data-style="style-two"] .site-drawer-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)), var(--header-surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
body[data-style="style-two"] .header-icon-button,
body[data-style="style-two"] .drawer-link {
    background: transparent;
    border-color: rgba(23, 49, 30, 0.12);
}
body[data-style="style-two"] .category-bar-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
body[data-style="style-two"] .category-toggle {
    color: var(--text);
    font-size: 1.05rem;
}
body[data-style="style-two"] .category-bar-inner {
    gap: 14px;
    padding-inline: 2px;
}
body[data-style="style-two"] .category-link {
    width: 132px;
    min-width: 132px;
    padding: 14px 12px 18px;
    border-radius: 28px;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 14px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
body[data-style="style-two"] .category-link.is-active {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.06), inset 0 0 0 1px rgba(255,255,255,0.03);
}
body[data-style="style-two"] .category-link-media {
    width: 104px;
    height: 104px;
    border-radius: 24px;
    border: 0;
    background: transparent;
}
body[data-style="style-two"] .category-link-label {
    font-size: 1.02rem;
}
body[data-style="style-two"] .menu-section {
    gap: 14px;
}
body[data-style="style-two"] .section-head {
    justify-content: center;
}
body[data-style="style-two"] .product-card {
    grid-template-columns: 214px minmax(0, 1fr);
    gap: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)), var(--card-surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
body[data-style="style-two"] .product-image-button {
    border-radius: 24px;
    box-shadow: none;
}
body[data-style="style-two"] .product-card-body {
    padding-inline-end: 6px;
}
body[data-style="style-two"] .product-copy h3 {
    font-size: clamp(1.25rem, 2vw, 1.9rem);
}
body[data-style="style-two"] .product-description {
    font-size: 1rem;
}
body[data-style="style-two"] .product-card-footer {
    justify-content: space-between;
}
body[data-style="style-two"] .product-price {
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    color: var(--accent);
    border-radius: 0;
}
body[data-style="style-two"] .product-price strong {
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
}
body[data-style="style-two"] .product-action-chip {
    min-width: 92px;
    border-radius: 18px;
    background: transparent;
    border-color: rgba(34, 94, 56, 0.45);
    color: var(--accent);
}
body[data-style="style-two"] .empty-state,
body[data-style="style-two"] .about-panel,
body[data-style="style-two"] .about-detail-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)), var(--section-surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

body[data-style="style-three"] {
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --glow: none;
}
body[data-style="style-three"] .site-header-bar,
body[data-style="style-three"] .site-footer-inner,
body[data-style="style-three"] .site-drawer-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)), var(--header-surface);
    box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}
body[data-style="style-three"] .category-bar-shell {
    background: rgba(10, 12, 16, 0.72);
    backdrop-filter: blur(16px);
}
body[data-style="style-three"] .category-link {
    padding: 14px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    flex-direction: column;
    gap: 10px;
    min-width: 112px;
}
body[data-style="style-three"] .category-link::before {
    content: '';
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
}
body[data-style="style-three"] .category-link.is-active::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
body[data-style="style-three"] .category-link-media {
    width: 56px;
    height: 56px;
    border-radius: 18px;
}
body[data-style="style-three"] .menu-section {
    padding: 22px 22px 10px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)), var(--section-surface);
    box-shadow: 0 22px 48px rgba(0,0,0,0.22);
}
body[data-style="style-three"] .section-head {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
body[data-style="style-three"] .product-list {
    gap: 0;
}
body[data-style="style-three"] .product-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    box-shadow: none;
}
body[data-style="style-three"] .product-card:last-child {
    border-bottom: 0;
}
body[data-style="style-three"] .product-image-button {
    border-radius: 18px;
    box-shadow: none;
}
body[data-style="style-three"] .product-card-body {
    gap: 12px;
}
body[data-style="style-three"] .product-copy h3 {
    font-size: 1.08rem;
}
body[data-style="style-three"] .product-description {
    font-size: .92rem;
}
body[data-style="style-three"] .product-card-footer {
    justify-content: space-between;
}
body[data-style="style-three"] .product-price {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--accent-2);
}
body[data-style="style-three"] .product-action-chip {
    background: transparent;
    color: var(--muted);
    border-color: rgba(255,255,255,0.08);
}
body[data-style="style-three"] .about-panel,
body[data-style="style-three"] .about-detail-card,
body[data-style="style-three"] .empty-state {
    box-shadow: none;
}

@media (max-width: 1024px) {
    .about-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100%, calc(100% - 20px));
    }
    .site-header-bar {
        padding: 12px 14px;
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }
    .header-icon-button,
    .header-icon-spacer {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }
    .brand-logo {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }
    .category-bar { top: 6px; }
    .category-bar-shell {
        padding: 12px;
    }
    .about-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-card,
    body[data-style="style-two"] .product-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .site-header {
        padding-top: 10px;
    }
    .brand-copy span {
        display: none;
    }
    .category-link {
        min-width: auto;
    }
    body[data-style="style-two"] .category-link {
        width: 116px;
        min-width: 116px;
        padding: 12px 10px 16px;
    }
    body[data-style="style-two"] .category-link-media {
        width: 92px;
        height: 92px;
    }
    .product-card,
    body[data-style="style-two"] .product-card,
    body[data-style="style-three"] .product-card {
        grid-template-columns: 1fr;
        justify-items: var(--grid-inline);
    }
    .product-card-media {
        width: min(100%, 220px);
    }
    .product-card-body,
    .product-copy,
    .product-description {
        width: 100%;
    }
    .product-card-footer,
    body[data-style="style-two"] .product-card-footer,
    body[data-style="style-three"] .product-card-footer {
        justify-content: var(--flex-inline);
    }
    .site-footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

.page-panel {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.site-header {
    padding: 12px 0 0;
}
.site-header-bar {
    min-height: 102px;
    padding: 12px 18px;
    gap: 10px;
    border-radius: 34px;
    border-color: rgba(255,255,255,0.08);
    background: var(--header-surface);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.header-icon-button,
.header-icon-spacer {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}
.header-icon-button {
    border: 0;
    background: transparent;
    box-shadow: none;
}
.header-icon-button:hover {
    transform: none;
    border-color: transparent;
    background: rgba(0,0,0,0.05);
}
.menu-toggle-button span {
    width: 28px;
    height: 2.5px;
}
.header-brand {
    width: 100%;
    max-width: 380px;
    gap: 14px;
    justify-self: center;
}
html[dir="rtl"] .header-brand {
    flex-direction: row-reverse;
}
.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    box-shadow: none;
}
.brand-copy {
    gap: 0;
}
.brand-copy strong {
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
    font-weight: 900;
}
.brand-copy span {
    display: none;
}

.site-drawer-panel {
    background: var(--header-surface);
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.category-bar {
    top: 0;
    padding: 8px 0 0;
}
.category-bar-shell {
    border-radius: 28px;
}
.category-link-media {
    display: grid;
    place-items: center;
}
.category-link-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.product-card-body,
.product-copy,
.about-copy,
.about-detail-card,
.empty-state {
    justify-items: var(--grid-inline);
}
.product-card-footer,
.page-actions,
.detail-links,
.site-footer-links {
    justify-content: var(--flex-inline);
}
body[data-align="center"] .product-card-body,
body[data-align="center"] .product-copy,
body[data-align="center"] .about-copy,
body[data-align="center"] .about-detail-card,
body[data-align="center"] .empty-state,
body[data-align="center"] .about-actions,
body[data-align="center"] .detail-links,
body[data-align="center"] .site-footer-inner {
    text-align: center;
}
body[data-align="center"] .product-description,
body[data-align="center"] .about-text,
body[data-align="center"] .detail-value {
    margin-inline: auto;
}
body[data-align="center"] .site-footer-inner {
    justify-content: center;
}
body[data-align="left"] .product-description,
body[data-align="left"] .about-text,
body[data-align="left"] .detail-value {
    margin-inline-end: auto;
}
body[data-align="right"] .product-description,
body[data-align="right"] .about-text,
body[data-align="right"] .detail-value {
    margin-inline-start: auto;
}

.product-description,
.about-text,
.detail-value {
    max-width: 46ch;
}
.section-head {
    min-height: 48px;
}
.section-head h2 {
    letter-spacing: -0.01em;
}
.about-panel {
    padding: 22px;
}
.about-detail-card {
    padding: 20px;
}
.page-badge {
    display: none;
}

.site-footer {
    padding: 8px 0 20px;
}
.site-footer-inner {
    min-height: 68px;
    padding: 14px 18px;
    border-radius: 28px;
    background: var(--footer-surface);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.footer-title {
    font-size: 0.98rem;
}
.site-footer-links {
    gap: 10px;
}
.site-footer-links a {
    font-size: 0.92rem;
    color: var(--muted);
}
.site-footer-links a[aria-current="page"] {
    color: var(--text);
}

body[data-style="style-one"] .site-header-bar,
body[data-style="style-one"] .site-footer-inner,
body[data-style="style-one"] .site-drawer-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--header-surface), rgba(255,255,255,0.02));
}
body[data-style="style-one"] .header-icon-button {
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
}
body[data-style="style-one"] .header-icon-button:hover {
    background: rgba(255,255,255,0.08);
}
body[data-style="style-one"] .brand-logo {
    background: rgba(255,255,255,0.06);
    border-color: var(--line);
}
body[data-style="style-one"] .site-footer-links a {
    color: var(--text);
}

body[data-style="style-two"] {
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --glow: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}
body[data-style="style-two"] .page-panel {
    box-shadow: none;
}
body[data-style="style-two"] .site-header-bar,
body[data-style="style-two"] .site-footer-inner,
body[data-style="style-two"] .site-drawer-panel {
    background: var(--header-surface);
    border: 1px solid rgba(16,36,19,0.08);
    box-shadow: none;
}
body[data-style="style-two"] .site-header-bar {
    min-height: 116px;
}
body[data-style="style-two"] .header-icon-button {
    color: var(--text);
}
body[data-style="style-two"] .brand-logo {
    width: 74px;
    height: 74px;
    background: rgba(255,255,255,0.55);
    border-color: rgba(16,36,19,0.08);
}
body[data-style="style-two"] .brand-copy strong {
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
}
body[data-style="style-two"] .category-bar-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
body[data-style="style-two"] .category-toggle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 900;
}
body[data-style="style-two"] .category-bar-inner {
    gap: 16px;
    padding-inline: 0;
}
body[data-style="style-two"] .category-link {
    width: 146px;
    min-width: 146px;
    min-height: 198px;
    padding: 16px 12px 18px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid rgba(16,36,19,0.08);
    color: var(--accent);
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
    box-shadow: none;
}
body[data-style="style-two"] .category-link:hover {
    transform: translateY(-1px);
}
body[data-style="style-two"] .category-link.is-active {
    background: rgba(0,0,0,0.08);
    border-color: rgba(255,255,255,0.18);
    color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}
body[data-style="style-two"] .category-link-media {
    width: 112px;
    height: 112px;
    border-radius: 26px;
    border: 0;
    background: transparent;
}
body[data-style="style-two"] .category-link-media img {
    padding: 0;
}
body[data-style="style-two"] .category-link-label {
    font-size: 1.1rem;
    line-height: 1.55;
}
body[data-style="style-two"] .menu-section {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}
body[data-style="style-two"] .section-head {
    justify-content: center;
    min-height: auto;
    padding: 14px 0 4px;
}
body[data-style="style-two"] .section-head h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
}
body[data-style="style-two"] .product-list {
    gap: 22px;
}
body[data-style="style-two"] .product-card {
    grid-template-columns: 214px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    padding: 20px;
    border-radius: 34px;
    background: var(--card-surface);
    border: 1px solid rgba(16,36,19,0.08);
    box-shadow: none;
}
body[data-style="style-two"] .product-image-button {
    border-radius: 24px;
    box-shadow: none;
    background: rgba(0,0,0,0.04);
}
body[data-style="style-two"] .product-card-body {
    gap: 18px;
    padding-inline-end: 4px;
}
body[data-style="style-two"] .product-copy {
    gap: 8px;
}
body[data-style="style-two"] .product-copy h3 {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.45;
}
body[data-style="style-two"] .product-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.9;
}
body[data-style="style-two"] .product-card-footer {
    justify-content: space-between;
    align-items: end;
    gap: 14px;
}
body[data-style="style-two"] .product-price {
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    border-radius: 0;
    color: var(--accent);
    gap: 8px;
    align-items: baseline;
}
body[data-style="style-two"] .product-price strong {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1;
}
body[data-style="style-two"] .product-price span {
    font-size: 1.15rem;
    color: var(--accent);
}
body[data-style="style-two"] .product-action-chip {
    min-width: 104px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 20px;
    background: transparent;
    border: 2px solid rgba(47,141,77,0.55);
    color: var(--accent);
    font-size: 1.05rem;
}
body[data-style="style-two"] .empty-state,
body[data-style="style-two"] .about-panel,
body[data-style="style-two"] .about-detail-card {
    background: var(--surface);
    border: 1px solid rgba(16,36,19,0.08);
    box-shadow: none;
}
body[data-style="style-two"] .site-footer-links a {
    color: var(--text);
    opacity: 0.86;
}

body[data-style="style-three"] {
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --glow: none;
}
body[data-style="style-three"] .site-header-bar,
body[data-style="style-three"] .site-footer-inner,
body[data-style="style-three"] .site-drawer-panel {
    background: var(--header-surface);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
body[data-style="style-three"] .header-icon-button {
    color: var(--text);
}
body[data-style="style-three"] .category-bar-shell {
    background: var(--category-surface);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
}
body[data-style="style-three"] .category-link {
    min-width: 120px;
    padding: 14px 14px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    gap: 12px;
}
body[data-style="style-three"] .category-link-media {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
}
body[data-style="style-three"] .menu-section {
    padding: 20px 22px 8px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--section-surface);
    box-shadow: none;
}
body[data-style="style-three"] .section-head {
    padding-bottom: 12px;
}
body[data-style="style-three"] .product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
}
body[data-style="style-three"] .product-image-button {
    border-radius: 18px;
}
body[data-style="style-three"] .product-action-chip {
    min-height: 42px;
    padding: 0 14px;
}
body[data-style="style-three"] .empty-state,
body[data-style="style-three"] .about-panel,
body[data-style="style-three"] .about-detail-card {
    box-shadow: none;
}

@media (max-width: 820px) {
    .site-header-bar {
        min-height: 90px;
        padding: 10px 14px;
    }
    .brand-logo {
        width: 62px;
        height: 62px;
        border-radius: 16px;
    }
    body[data-style="style-two"] .site-header-bar {
        min-height: 98px;
    }
    body[data-style="style-two"] .category-link {
        width: 132px;
        min-width: 132px;
        min-height: 184px;
    }
    body[data-style="style-two"] .category-link-media {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 620px) {
    body[data-style="style-two"] .product-card {
        grid-template-columns: 154px minmax(0, 1fr);
        justify-items: stretch;
    }
    body[data-style="style-two"] .product-card-body {
        width: 100%;
    }
    body[data-style="style-two"] .product-card-footer {
        justify-content: space-between;
    }
    .site-footer-inner {
        gap: 8px;
    }
}

@media (max-width: 540px) {
    body[data-style="style-two"] .product-card,
    body[data-style="style-three"] .product-card,
    body[data-style="style-one"] .product-card {
        grid-template-columns: 1fr;
        justify-items: var(--grid-inline);
    }
    body[data-style="style-two"] .product-card-footer,
    body[data-style="style-three"] .product-card-footer,
    body[data-style="style-one"] .product-card-footer {
        justify-content: var(--flex-inline);
    }
}

body[data-align="right"] .product-card-body,
body[data-align="right"] .product-copy,
body[data-align="right"] .about-copy,
body[data-align="right"] .about-detail-card,
body[data-align="right"] .empty-state {
    align-items: end;
}
body[data-align="center"] .product-card-body,
body[data-align="center"] .product-copy,
body[data-align="center"] .about-copy,
body[data-align="center"] .about-detail-card,
body[data-align="center"] .empty-state {
    align-items: center;
}
body[data-align="left"] .product-card-body,
body[data-align="left"] .product-copy,
body[data-align="left"] .about-copy,
body[data-align="left"] .about-detail-card,
body[data-align="left"] .empty-state {
    align-items: start;
}

body[data-style="style-one"] .site-footer-inner,
body[data-style="style-two"] .site-footer-inner,
body[data-style="style-three"] .site-footer-inner {
    background: var(--footer-surface);
}
body[data-style="style-one"] .site-header-bar,
body[data-style="style-two"] .site-header-bar,
body[data-style="style-three"] .site-header-bar,
body[data-style="style-one"] .site-drawer-panel,
body[data-style="style-two"] .site-drawer-panel,
body[data-style="style-three"] .site-drawer-panel {
    background: var(--header-surface);
}
body[data-style="style-one"] .site-footer-inner {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        linear-gradient(135deg, var(--footer-surface), rgba(255,255,255,0.02));
}
body[data-style="style-one"] .site-header-bar,
body[data-style="style-one"] .site-drawer-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        linear-gradient(135deg, var(--header-surface), rgba(255,255,255,0.02));
}


body[data-lang="fa"] {
    font-family: "Vazirmatn", "IRANSansX", "IRANSans", "Segoe UI", Tahoma, Arial, sans-serif;
}
body[data-lang="fa"] .brand-copy strong,
body[data-lang="fa"] .section-head h2,
body[data-lang="fa"] .product-copy h3,
body[data-lang="fa"] .footer-brand-copy strong,
body[data-lang="fa"] .page-badge,
body[data-lang="fa"] .detail-label {
    letter-spacing: 0;
    font-weight: 900;
}

.category-toggle {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
}
.category-toggle span {
    display: none !important;
}
.product-action-chip,
.about-card-action,
.footer-pill {
    text-decoration: none;
}
.product-action-chip {
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.product-action-chip:hover {
    transform: translateY(-1px);
}

.site-footer {
    padding: 24px 0 30px;
    margin-top: auto;
}
.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        var(--footer-surface);
}
.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    flex: 0 0 auto;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-logo.is-placeholder {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-contrast);
    font-size: 1.55rem;
}
.footer-brand-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.footer-brand-copy strong {
    font-size: 1.08rem;
    line-height: 1.4;
}
.footer-brand-copy span {
    color: var(--muted);
    line-height: 1.7;
}
.site-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: var(--flex-inline);
}
.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 800;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.footer-pill:hover {
    transform: translateY(-1px);
}

.about-page-main {
    display: grid;
}
.about-wrapper {
    display: grid;
    gap: 22px;
    padding: 24px;
}
.about-summary-head {
    display: flex;
    align-items: center;
    justify-content: var(--flex-inline);
}
.about-summary-copy {
    display: grid;
    gap: 8px;
    justify-items: var(--grid-inline);
}
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.about-info-card {
    display: grid;
    gap: 14px;
    min-height: 100%;
    padding: 22px 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.015);
    text-align: var(--text-align);
}
.about-info-card .detail-label {
    color: var(--muted);
    font-size: 0.95rem;
}
.about-info-card .detail-value {
    line-height: 1.95;
    color: var(--text);
    font-size: 1rem;
    word-break: break-word;
}
.about-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: fit-content;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.about-card-action:hover {
    transform: translateY(-1px);
}

body[data-style="style-one"] .site-footer-inner {
    box-shadow: var(--shadow), var(--glow);
}
body[data-style="style-one"] .product-action-chip {
    background: rgba(255,255,255,0.06);
}

body[data-style="style-two"] .category-link.is-active {
    background: var(--surface);
    color: var(--accent);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.84), 0 10px 24px rgba(255,255,255,0.08);
}
body[data-style="style-two"] .product-card {
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-areas: "body media";
    gap: 22px;
}
body[data-style="style-two"] .product-card-media {
    grid-area: media;
}
body[data-style="style-two"] .product-card-body {
    grid-area: body;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
body[data-style="style-two"] .product-card-footer {
    align-items: center;
}
body[data-style="style-two"] .product-action-chip {
    border-color: rgba(255,255,255,0.34);
    color: var(--text);
}
body[data-style="style-two"] .site-footer-inner {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        var(--footer-surface);
}
body[data-style="style-two"] .about-wrapper,
body[data-style="style-two"] .about-info-card {
    background: var(--surface);
    box-shadow: none;
    border-color: rgba(16,36,19,0.08);
}

body[data-style="style-three"] .category-bar-shell {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}
body[data-style="style-three"] .site-footer-inner {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        var(--footer-surface);
}
body[data-style="style-three"] .about-wrapper,
body[data-style="style-three"] .about-info-card {
    box-shadow: none;
    border-color: rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        justify-items: var(--grid-inline);
    }
    .site-footer-brand,
    .site-footer-links,
    .site-footer-actions,
    .about-summary-head {
        width: 100%;
        justify-content: var(--flex-inline);
    }
}

@media (max-width: 720px) {
    .about-wrapper {
        padding: 18px;
    }
    .about-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body[data-style="style-two"] .product-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "body";
    }
    body[data-style="style-two"] .product-card-footer {
        justify-content: space-between;
    }
}

@media (max-width: 540px) {
    .site-footer-inner {
        padding: 16px;
    }
    .footer-logo {
        width: 58px;
        height: 58px;
    }
    .about-card-action,
    .footer-pill {
        width: 100%;
    }
}

body[data-style="style-two"] .product-card {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-areas: "media body";
    gap: 22px;
    align-items: stretch;
}
body[data-style="style-two"] .product-card-media {
    grid-area: media;
}
body[data-style="style-two"] .product-card-body {
    grid-area: body;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
}
body[data-style="style-two"] .product-card-footer {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
}
body[data-style="style-two"] .product-action-chip {
    order: 1;
    border-color: rgba(47,141,77,0.55);
    color: var(--accent);
}
body[data-style="style-two"] .product-price {
    order: 2;
}

@media (max-width: 620px) {
    body[data-style="style-two"] .product-card {
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-areas: "media body";
        gap: 14px;
        padding: 16px;
        border-radius: 30px;
    }
    body[data-style="style-two"] .product-image-button {
        border-radius: 20px;
    }
    body[data-style="style-two"] .product-card-body {
        gap: 12px;
    }
    body[data-style="style-two"] .product-copy {
        gap: 6px;
    }
    body[data-style="style-two"] .product-copy h3 {
        font-size: clamp(1.18rem, 5vw, 1.55rem);
        line-height: 1.55;
    }
    body[data-style="style-two"] .product-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    body[data-style="style-two"] .product-card-footer {
        gap: 10px;
    }
    body[data-style="style-two"] .product-price strong {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    body[data-style="style-two"] .product-price span {
        font-size: 1rem;
    }
    body[data-style="style-two"] .product-action-chip {
        min-width: 92px;
        min-height: 48px;
        padding: 0 18px;
        border-radius: 18px;
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    body[data-style="style-two"] .product-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }
    body[data-style="style-two"] .product-description {
        font-size: 0.9rem;
        line-height: 1.72;
    }
    body[data-style="style-two"] .product-action-chip {
        min-width: 88px;
        min-height: 46px;
        padding: 0 16px;
    }
}

.public-flash {
    margin: 0 0 18px;
}
.hero-strip,
.info-ribbon,
.form-panel {
    padding: 18px 20px;
}
.hero-strip {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(255,147,63,0.16), rgba(255,190,130,0.06)),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}
.hero-strip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
}
.hero-strip p {
    margin: 0;
    color: var(--text);
    line-height: 1.9;
}
.info-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.info-chip {
    min-height: 100%;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    display: grid;
    gap: 6px;
}
.info-chip strong {
    color: var(--accent-2);
}
.info-chip span,
.info-chip small {
    color: var(--muted);
    line-height: 1.75;
}
.info-chip.action {
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.info-chip.action:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.05);
}
.section-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
body[data-align="center"] .product-badges { justify-content: center; }
body[data-align="left"] .product-badges { justify-content: flex-start; }
body[data-align="right"] .product-badges { justify-content: flex-end; }
.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--accent-2);
    font-size: .82rem;
    font-weight: 600;
}
.product-badge.is-accent {
    border-color: rgba(255,147,63,0.32);
    background: rgba(255,147,63,0.12);
}
.product-badge.is-danger {
    border-color: rgba(239,68,68,0.24);
    background: rgba(239,68,68,0.12);
    color: #ffc1c1;
}
.form-panel {
    margin-top: 26px;
}
.public-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.public-form-grid .field-group {
    display: grid;
    gap: 8px;
}
.public-form-grid label {
    color: var(--muted);
}
.public-form-grid input,
.public-form-grid textarea,
.public-form-grid select {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 0 16px;
    outline: none;
}
.public-form-grid textarea {
    min-height: 150px;
    padding: 14px 16px;
    resize: vertical;
}
.public-form-grid input:focus,
.public-form-grid textarea:focus,
.public-form-grid select:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 4px rgba(255,147,63,0.10);
}
.full-span { grid-column: 1 / -1; }
.submit-chip {
    border: 0;
    cursor: pointer;
}
.floating-actions {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 70;
    display: grid;
    gap: 10px;
}
body[data-align="left"] .floating-actions {
    left: auto;
    right: 16px;
}
.floating-action {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    background: rgba(23,24,33,0.94);
    color: var(--accent-2);
    box-shadow: var(--shadow);
    font-size: 1.15rem;
    transition: transform .18s ease, background .18s ease;
}
.floating-action:hover {
    transform: translateY(-2px);
    background: rgba(255,147,63,0.14);
}
.about-page-main {
    width: 100%;
}
.about-summary-head {
    margin-bottom: 18px;
}
.about-summary-copy {
    display: grid;
    gap: 10px;
}
.about-summary-copy h1,
.about-summary-copy p {
    margin: 0;
}
.about-summary-copy p {
    color: var(--muted);
    line-height: 1.9;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--accent-2);
    background: rgba(255,255,255,0.04);
    width: fit-content;
}
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.about-phone-list {
    display: grid;
    gap: 8px;
}
.about-phone-list a {
    color: var(--text);
}
.hours-list {
    display: grid;
    gap: 8px;
}
.compact-hours-list {
    margin-top: 10px;
}
.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.hours-row span {
    color: var(--muted);
}
.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
}
.site-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .info-ribbon,
    .public-form-grid,
    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero-strip,
    .info-ribbon,
    .public-form-grid,
    .about-card-grid {
        grid-template-columns: 1fr;
    }
    .floating-actions {
        left: 12px;
        bottom: 12px;
    }
    body[data-align="left"] .floating-actions {
        right: 12px;
    }
}

body[data-lang="fa"] {
    font-family: var(--font-fa), "Vazirmatn", "IRANSansX", "IRANSans", "Segoe UI", Tahoma, Arial, sans-serif;
}
body[data-lang="en"] {
    font-family: var(--font-en), "Inter", "Segoe UI", Arial, sans-serif;
}
.brand-copy--compact,
.footer-brand-copy--compact {
    gap: 0;
}
.brand-copy--compact strong {
    font-size: clamp(1.18rem, 2.5vw, 1.9rem);
}
.site-footer-inner--minimal {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 28px;
}
.footer-text-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: var(--flex-inline);
    gap: 10px 18px;
}
.footer-text-links a {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color .18s ease, transform .18s ease;
}
.footer-text-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .site-footer-inner--minimal {
        grid-template-columns: 1fr;
    }
    .footer-text-links {
        justify-content: flex-start;
    }
    body[dir="rtl"] .footer-text-links {
        justify-content: flex-end;
    }
}

.site-header-bar--v19 {
    grid-template-columns: 68px minmax(0,1fr) 68px;
    padding: 20px 24px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)), linear-gradient(135deg, var(--header-surface), rgba(255,255,255,0.02));
}
.header-icon-button--call {
    background: transparent;
    border-color: transparent;
}
.header-icon-button--call:hover {
    background: rgba(255,255,255,0.08);
}
.header-brand--inline {
    flex-direction: row;
    gap: 18px;
}
.brand-copy--title-only strong {
    font-size: clamp(1.5rem, 3vw, 2.35rem);
}
.notice-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    margin-top: 18px;
}
.notice-banner--closed {
    background: linear-gradient(180deg, rgba(239,68,68,0.22), rgba(239,68,68,0.12)), linear-gradient(135deg, var(--surface), rgba(255,255,255,0.02));
}
.section-head--menu h2,
.section-head--page h1 {
    margin: 0;
}
.section-head--page {
    margin-bottom: 18px;
}
.page-detail-wrap {
    width: min(900px, calc(100% - 28px));
    margin-inline: auto;
}
.page-detail-card {
    padding: 22px;
}
.page-detail-copy {
    color: var(--muted);
    line-height: 2.1;
}
.contact-links-grid {
    display: grid;
    gap: 14px;
}
.contact-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.contact-link-card strong {
    font-size: 1.02rem;
}
.contact-link-card span {
    color: var(--muted);
    word-break: break-word;
}
.contact-link-card--route {
    align-items: center;
    justify-content: center;
    min-height: 72px;
}
.route-buttons-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.drawer-language-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.drawer-language-pill {
    flex: 1 1 0;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.drawer-language-pill.is-active {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.08);
}
.drawer-status-box,
.site-footer-status {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.drawer-status-box strong,
.site-footer-status strong {
    color: var(--text);
}
.site-footer-inner--v19 {
    display: grid;
    gap: 16px;
    padding: 18px;
}
.floating-action--top {
    position: fixed;
    left: 22px;
    bottom: 20px;
    z-index: 45;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(11,15,22,0.92);
    color: var(--accent);
    box-shadow: var(--shadow);
    font-size: 1.8rem;
}
body[data-category-style] .category-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
body[data-category-style] .category-toggle {
    position: relative;
    min-height: 24px;
}
body[data-category-style="type-1"] .category-bar-inner,
body[data-category-style="type-2"] .category-bar-inner,
body[data-category-style="type-3"] .category-bar-inner {
    justify-content: center;
}
body[data-category-style="type-1"] .category-bar-inner {
    flex-wrap: wrap;
    overflow: visible;
    gap: 14px;
}
body[data-category-style="type-1"] .category-link {
    min-width: 156px;
    padding: 12px 18px;
    border-radius: 24px;
}
body[data-category-style="type-1"] .category-link-media {
    width: 48px;
    height: 48px;
}
body[data-category-style="type-1"] .category-link.is-active {
    box-shadow: 0 0 0 1px var(--line-strong) inset, var(--glow);
}
body[data-category-style="type-2"] .category-bar-inner,
body[data-category-style="type-3"] .category-bar-inner {
    flex-wrap: wrap;
    overflow: visible;
    gap: 18px;
}
body[data-category-style="type-2"] .category-link,
body[data-category-style="type-3"] .category-link {
    min-width: 0;
    width: 126px;
    min-height: 172px;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 14px;
    text-align: center;
}
body[data-category-style="type-2"] .category-link {
    border-radius: 30px;
}
body[data-category-style="type-2"] .category-link-media,
body[data-category-style="type-3"] .category-link-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
}
body[data-category-style="type-2"] .category-link-media img,
body[data-category-style="type-3"] .category-link-media img {
    height: 100%;
}
body[data-category-style="type-2"] .category-link-label,
body[data-category-style="type-3"] .category-link-label {
    width: 100%;
    font-size: 1.06rem;
}
body[data-category-style="type-2"] .category-link.is-active {
    border-color: var(--text);
    box-shadow: 0 0 0 1px var(--text) inset, 0 18px 34px rgba(0,0,0,0.24);
}
body[data-category-style="type-2"] .category-link.is-active .category-link-label {
    color: var(--accent);
}
body[data-category-style="type-3"] .category-link {
    position: relative;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 30px;
    border-radius: 28px;
}
body[data-category-style="type-3"] .category-link::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 40px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
}
body[data-category-style="type-3"] .category-link.is-active::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: var(--glow);
}
body[data-category-style="type-3"] .category-link-label {
    margin-top: auto;
}
body[data-product-style="type-1"] .section-head--menu,
body[data-product-style="type-2"] .section-head--menu,
body[data-product-style="type-3"] .section-head--menu {
    justify-content: center;
    text-align: center;
}
body[data-product-style="type-1"] .section-head--menu > div,
body[data-product-style="type-2"] .section-head--menu > div,
body[data-product-style="type-3"] .section-head--menu > div {
    display: grid;
    gap: 8px;
    justify-items: center;
    width: 100%;
}
body[data-product-style="type-1"] .section-note,
body[data-product-style="type-2"] .section-note,
body[data-product-style="type-3"] .section-note {
    text-align: center;
}
body[data-product-style="type-1"] .product-list {
    gap: 22px;
}
body[data-product-style="type-1"] .product-card {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-inline: auto;
    gap: 18px;
    padding: 24px;
    border-radius: 34px;
}
body[data-product-style="type-1"] .product-card-media {
    gap: 14px;
}
body[data-product-style="type-1"] .product-image-button {
    max-width: 280px;
    margin-inline: auto;
    border-radius: 30px;
}
body[data-product-style="type-1"] .product-card-body,
body[data-product-style="type-1"] .product-copy {
    justify-items: center;
    text-align: center;
}
body[data-product-style="type-1"] .product-card-footer,
body[data-product-style="type-1"] .product-badges {
    justify-content: center;
}
body[data-product-style="type-1"] .product-price {
    min-height: 54px;
    padding-inline: 22px;
    border-radius: 999px;
}
body[data-product-style="type-2"] .product-list {
    gap: 18px;
}
body[data-product-style="type-2"] .product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 28px;
}
body[data-product-style="type-2"] .product-card-media {
    order: 2;
    width: 124px;
    min-width: 124px;
    height: 100%;
    align-content: space-between;
}
body[data-product-style="type-2"] .product-image-button,
body[data-product-style="type-2"] .product-image-button img {
    width: 124px;
    height: 124px;
    border-radius: 24px;
}
body[data-product-style="type-2"] .product-gallery-dots {
    justify-content: flex-end;
}
body[data-product-style="type-2"] .product-card-body {
    order: 1;
    gap: 14px;
    align-content: center;
}
body[data-product-style="type-2"] .product-copy,
body[data-product-style="type-2"] .product-copy h3,
body[data-product-style="type-2"] .product-description {
    text-align: var(--text-align);
}
body[data-product-style="type-2"] .product-copy {
    justify-items: var(--grid-inline);
}
body[data-product-style="type-2"] .product-badges {
    justify-content: var(--flex-inline);
}
body[data-product-style="type-2"] .product-card-footer {
    display: grid;
    gap: 12px;
    justify-items: var(--grid-inline);
}
body[data-product-style="type-2"] .product-price {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    gap: 10px;
}
body[data-product-style="type-2"] .product-price strong {
    font-size: clamp(1.9rem, 5vw, 2.55rem);
    line-height: 1;
}
body[data-product-style="type-2"] .product-price span {
    font-size: 1.02rem;
    opacity: 1;
}
body[data-product-style="type-3"] .menu-section {
    gap: 22px;
}
body[data-product-style="type-3"] .section-head--menu {
    position: relative;
    padding-bottom: 16px;
}
body[data-product-style="type-3"] .section-head--menu::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1px;
    background: var(--line);
}
body[data-product-style="type-3"] .product-list {
    gap: 0;
}
body[data-product-style="type-3"] .product-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin-inline: auto;
    padding: 24px 0 30px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}
body[data-product-style="type-3"] .product-card:last-child {
    padding-bottom: 6px;
}
body[data-product-style="type-3"] .product-card-media {
    width: 100%;
    max-width: 220px;
    margin-inline: auto;
    gap: 14px;
}
body[data-product-style="type-3"] .product-image-button,
body[data-product-style="type-3"] .product-image-button img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: none;
}
body[data-product-style="type-3"] .product-gallery-dots {
    display: flex;
}
body[data-product-style="type-3"] .product-card-body,
body[data-product-style="type-3"] .product-copy {
    justify-items: center;
    text-align: center;
}
body[data-product-style="type-3"] .product-card-footer,
body[data-product-style="type-3"] .product-badges {
    justify-content: center;
}
body[data-product-style="type-3"] .product-price {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    box-shadow: none;
}
body[data-product-style="type-3"] .product-action-chip {
    border-radius: 999px;
}
.hours-list--page {
    display: grid;
    gap: 12px;
}
.hours-list--page .hours-row {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
@media (max-width: 860px) {
    body[data-category-style="type-2"] .category-link,
    body[data-category-style="type-3"] .category-link {
        width: min(46vw, 126px);
    }
    body[data-product-style="type-1"] .product-card {
        max-width: 100%;
    }
    body[data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 108px;
        padding: 18px;
    }
    body[data-product-style="type-2"] .product-card-media {
        width: 108px;
        min-width: 108px;
    }
    body[data-product-style="type-2"] .product-image-button,
    body[data-product-style="type-2"] .product-image-button img {
        width: 108px;
        height: 108px;
    }
    body[data-product-style="type-3"] .product-card {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .site-header-bar--v19 {
        grid-template-columns: 56px minmax(0,1fr) 56px;
        padding: 14px 16px;
    }
    .brand-copy--title-only strong {
        font-size: 1.3rem;
    }
    .brand-logo {
        width: 62px;
        height: 62px;
    }
    .contact-links-grid,
    .route-buttons-grid {
        grid-template-columns: 1fr;
    }
    .floating-action--top {
        width: 58px;
        height: 58px;
        left: 14px;
        bottom: 14px;
    }
}


body[data-category-style="type-1"] .category-bar-inner,
body[data-category-style="type-2"] .category-bar-inner,
body[data-category-style="type-3"] .category-bar-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 4px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}
body[data-category-style] .category-link {
    flex: 0 0 auto;
    scroll-snap-align: start;
}
body[data-category-style="type-2"] .category-link,
body[data-category-style="type-3"] .category-link {
    width: 132px;
    min-width: 132px;
}
body[data-product-style="type-1"] .product-card {
    width: min(100%, 456px);
    padding: 26px 24px 28px;
}
body[data-product-style="type-1"] .product-card-media {
    width: min(100%, 320px);
    margin-inline: auto;
}
body[data-product-style="type-1"] .product-image-button {
    width: 100%;
    max-width: none;
}
body[data-product-style="type-2"] .product-card {
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-template-areas: "body media";
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
}
body[data-product-style="type-2"] .product-card-body {
    grid-area: body;
    order: 0;
    min-width: 0;
}
body[data-product-style="type-2"] .product-card-media {
    grid-area: media;
    order: 0;
    width: 132px;
    min-width: 132px;
    justify-self: end;
    align-content: end;
}
body[data-product-style="type-2"] .product-image-button,
body[data-product-style="type-2"] .product-image-button img {
    width: 132px;
    height: 132px;
}
body[data-style="style-two"][data-product-style="type-2"] .product-card,
body[data-style="style-one"][data-product-style="type-2"] .product-card,
body[data-style="style-three"][data-product-style="type-2"] .product-card {
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-template-areas: "body media";
}
body[data-style="style-two"][data-product-style="type-2"] .product-card-body,
body[data-style="style-one"][data-product-style="type-2"] .product-card-body,
body[data-style="style-three"][data-product-style="type-2"] .product-card-body {
    grid-area: body;
    display: grid;
    gap: 14px;
}
body[data-style="style-two"][data-product-style="type-2"] .product-card-media,
body[data-style="style-one"][data-product-style="type-2"] .product-card-media,
body[data-style="style-three"][data-product-style="type-2"] .product-card-media {
    grid-area: media;
    justify-self: end;
}
@media (max-width: 860px) {
    body[data-product-style="type-2"] .product-card,
    body[data-style="style-two"][data-product-style="type-2"] .product-card,
    body[data-style="style-one"][data-product-style="type-2"] .product-card,
    body[data-style="style-three"][data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 108px;
        grid-template-areas: "body media";
        padding: 18px;
    }
    body[data-product-style="type-2"] .product-card-media {
        width: 108px;
        min-width: 108px;
    }
    body[data-product-style="type-2"] .product-image-button,
    body[data-product-style="type-2"] .product-image-button img {
        width: 108px;
        height: 108px;
    }
}
@media (max-width: 640px) {
    body[data-product-style="type-1"] .product-card {
        width: 100%;
        padding: 22px 18px 24px;
    }
    body[data-product-style="type-1"] .product-card-media {
        width: min(100%, 286px);
    }
    body[data-product-style="type-2"] .product-card,
    body[data-style="style-two"][data-product-style="type-2"] .product-card,
    body[data-style="style-one"][data-product-style="type-2"] .product-card,
    body[data-style="style-three"][data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 14px;
        padding: 16px;
    }
    body[data-product-style="type-2"] .product-card-media {
        width: 104px;
        min-width: 104px;
    }
    body[data-product-style="type-2"] .product-image-button,
    body[data-product-style="type-2"] .product-image-button img {
        width: 104px;
        height: 104px;
    }
}


.header-brand--inline {
    flex-direction: row;
}
html[dir="rtl"] .header-brand--inline,
html[dir="ltr"] .header-brand--inline {
    flex-direction: row;
}
body[data-header-logo-position="left"] .header-brand--inline {
    flex-direction: row-reverse;
}
body[data-header-logo-position="right"] .header-brand--inline {
    flex-direction: row;
}

body[data-product-style="type-2"] .product-card {
    direction: ltr;
    grid-template-columns: minmax(0, 1fr) 132px !important;
    grid-template-areas: "body media" !important;
}
body[data-product-style="type-2"] .product-card-body,
body[data-product-style="type-2"] .product-copy,
body[data-product-style="type-2"] .product-card-footer {
    direction: rtl;
}
body[data-lang="en"][data-product-style="type-2"] .product-card-body,
body[data-lang="en"][data-product-style="type-2"] .product-copy,
body[data-lang="en"][data-product-style="type-2"] .product-card-footer {
    direction: ltr;
}
body[data-product-style="type-2"] .product-card-media {
    grid-area: media !important;
    order: 0 !important;
    justify-self: end !important;
    margin-inline-start: auto;
    margin-inline-end: 0;
}
body[data-product-style="type-2"] .product-card-body {
    grid-area: body !important;
    order: 0 !important;
}
@media (max-width: 860px) {
    body[data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 108px !important;
        grid-template-areas: "body media" !important;
    }
}
@media (max-width: 640px) {
    body[data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 104px !important;
        grid-template-areas: "body media" !important;
    }
}

.header-brand {
    max-width: min(100%, 620px);
}
.header-brand--inline {
    width: 100%;
    max-width: min(100%, 620px);
    flex-wrap: nowrap;
    --brand-logo-size: 72px;
    gap: 18px;
}
.header-brand--inline.is-compact {
    gap: 12px;
}
.header-brand--inline.is-ultra-compact {
    gap: 10px;
}
.header-brand--inline .brand-copy--title-only {
    flex: 1 1 auto;
    min-width: 0;
}
.header-brand--inline .brand-copy--title-only strong {
    display: block;
    width: 100%;
    white-space: nowrap;
    line-height: 1.08;
    transition: font-size .24s ease, letter-spacing .24s ease;
}
.header-brand--inline .brand-logo {
    width: var(--brand-logo-size);
    height: var(--brand-logo-size);
    border-radius: calc(var(--brand-logo-size) * .28);
    transition: width .24s ease, height .24s ease, border-radius .24s ease, transform .24s ease;
}
.header-brand--inline.is-compact .brand-logo {
    transform: scale(.97);
}

.category-bar-shell,
.category-link,
.product-card,
.product-image-button img,
.gallery-dot,
.floating-action--top {
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}
.category-bar-shell,
.product-card {
    transition-property: transform, box-shadow, border-color, background;
    transition-duration: .28s;
}
.category-bar-inner {
    scroll-behavior: smooth;
    scroll-padding-inline: 18px;
    touch-action: pan-x;
}
.category-link {
    transition-property: transform, border-color, background, color, box-shadow;
    transition-duration: .24s;
    will-change: transform;
}
.category-link:hover,
.category-link.is-active {
    transform: translateY(-2px);
}
.product-card {
    will-change: transform, opacity;
}
body.js-enhanced .product-card:hover {
    transform: translateY(-3px);
}
body.js-enhanced .product-image-button:hover img {
    transform: scale(1.02);
}
.product-image-button img {
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}
body.js-enhanced .menu-section,
body.js-enhanced .product-card,
body.js-enhanced .page-detail-card,
body.js-enhanced .notice-banner,
body.js-enhanced .empty-state,
body.js-enhanced .contact-link-card,
body.js-enhanced .hours-list--page .hours-row {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .42s ease,
        transform .42s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}
body.js-enhanced .menu-section.reveal-ready,
body.js-enhanced .product-card.reveal-ready,
body.js-enhanced .page-detail-card.reveal-ready,
body.js-enhanced .notice-banner.reveal-ready,
body.js-enhanced .empty-state.reveal-ready,
body.js-enhanced .contact-link-card.reveal-ready,
body.js-enhanced .hours-list--page .hours-row.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
}
body.js-enhanced .menu-section.reveal-ready.is-revealed,
body.js-enhanced .product-card.reveal-ready.is-revealed,
body.js-enhanced .page-detail-card.reveal-ready.is-revealed,
body.js-enhanced .notice-banner.reveal-ready.is-revealed,
body.js-enhanced .empty-state.reveal-ready.is-revealed,
body.js-enhanced .contact-link-card.reveal-ready.is-revealed,
body.js-enhanced .hours-list--page .hours-row.reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
    transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 640px) {
    .header-brand,
    .header-brand--inline {
        max-width: 100%;
        --brand-logo-size: 62px;
    }
    .header-brand--inline.is-compact {
        gap: 10px;
    }
    .header-brand--inline.is-ultra-compact {
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .category-bar-inner {
        scroll-behavior: auto;
    }
    body.js-enhanced .menu-section,
    body.js-enhanced .product-card,
    body.js-enhanced .page-detail-card,
    body.js-enhanced .notice-banner,
    body.js-enhanced .empty-state,
    body.js-enhanced .contact-link-card,
    body.js-enhanced .hours-list--page .hours-row,
    .header-brand--inline .brand-logo,
    .header-brand--inline .brand-copy--title-only strong,
    .product-image-button img,
    .category-link,
    .floating-action--top {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}


.site-header-bar--v19 {
    gap: 12px;
}
.header-brand {
    justify-content: flex-start;
    overflow: hidden;
}
.header-brand--inline {
    min-width: 0;
    overflow: hidden;
    gap: 14px;
}
.header-brand--inline .brand-copy--title-only {
    min-width: 0;
    overflow: hidden;
}
.header-brand--inline .brand-copy--title-only strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.02;
}
body[data-style="style-one"] .brand-copy--title-only strong,
body[data-style="style-two"] .brand-copy--title-only strong,
body[data-style="style-three"] .brand-copy--title-only strong {
    font-size: clamp(1.16rem, 4.6vw, 1.95rem);
}
body[data-category-style] .category-bar-inner {
    padding-top: 6px;
    padding-bottom: 6px;
}
body[data-category-style] .category-link {
    box-sizing: border-box;
}
body[data-category-style] .category-link:hover,
body[data-category-style] .category-link.is-active {
    transform: translateY(-1px);
}
body[data-category-style="type-1"] .category-link.is-active,
body[data-category-style="type-2"] .category-link.is-active,
body[data-category-style="type-3"] .category-link.is-active {
    box-shadow: 0 0 0 1px var(--line-strong) inset, var(--glow);
}
@media (max-width: 640px) {
    .site-header-bar--v19 {
        grid-template-columns: 50px minmax(0, 1fr) 50px;
        gap: 10px;
        padding: 12px;
    }
    .header-icon-button,
    .header-icon-spacer {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    .header-brand--inline {
        --brand-logo-size: 56px;
        gap: 10px;
    }
    .header-brand--inline .brand-copy--title-only strong {
        font-size: clamp(1.04rem, 4.35vw, 1.32rem);
    }
}
@media (max-width: 420px) {
    .site-header-bar--v19 {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 8px;
        padding: 11px;
    }
    .header-icon-button,
    .header-icon-spacer {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }
    .menu-toggle-button span {
        width: 20px;
    }
    .header-brand--inline {
        --brand-logo-size: 50px;
        gap: 8px;
    }
    .header-brand--inline .brand-copy--title-only strong {
        font-size: clamp(.96rem, 4.1vw, 1.18rem);
    }
}


.header-brand {
    justify-content: center;
}
.header-brand--inline {
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}
.header-brand--inline .brand-copy--title-only {
    flex: 0 1 auto;
    max-width: 100%;
    text-align: center;
}
.header-brand--inline .brand-copy--title-only strong {
    line-height: 1.16;
    padding-block: .08em .14em;
}
.notice-banner--closed.is-day-closed {
    justify-content: center;
    text-align: center;
}
.notice-banner--closed.is-day-closed strong {
    margin: 0 auto;
}
.category-bar {
    margin-bottom: 10px;
}
.category-bar-shell {
    overflow: visible;
    padding-bottom: 16px;
}
body[data-category-style] .category-bar-inner {
    padding-top: 10px;
    padding-bottom: 16px;
}
body[data-category-style="type-1"] .category-link,
body[data-category-style="type-2"] .category-link,
body[data-category-style="type-3"] .category-link {
    position: relative;
    z-index: 1;
}
body[data-category-style="type-1"] .category-link.is-active,
body[data-category-style="type-2"] .category-link.is-active,
body[data-category-style="type-3"] .category-link.is-active {
    z-index: 2;
}
.menu-sections {
    gap: 34px;
}
body.js-enhanced .product-card {
    opacity: 1;
    transform: none;
    transition:
        opacity .42s ease,
        transform .42s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}
body.js-enhanced .product-card.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
}
body.js-enhanced .product-card.reveal-ready.is-revealed,
body.js-enhanced .product-card.is-preloaded,
body.js-enhanced .product-card.is-revealed:not(.reveal-ready) {
    opacity: 1;
    transform: none;
    transition-delay: var(--reveal-delay, 0ms);
}
body[data-product-animation="type-2"].js-enhanced .product-card.reveal-ready {
    opacity: 0;
    transform: translateX(-40px);
}
body[data-product-animation="type-2"].js-enhanced .product-card.reveal-ready.is-revealed,
body[data-product-animation="type-2"].js-enhanced .product-card.is-preloaded,
body[data-product-animation="type-2"].js-enhanced .product-card.is-revealed:not(.reveal-ready) {
    opacity: 1;
    transform: none;
}
body[data-product-animation="none"].js-enhanced .product-card,
body[data-product-animation="none"].js-enhanced .product-card.reveal-ready,
body[data-product-animation="none"].js-enhanced .product-card.is-revealed {
    opacity: 1;
    transform: none;
    transition: box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
@media (max-width: 640px) {
    .header-brand--inline {
        gap: 8px;
    }
    .header-brand--inline .brand-copy--title-only strong {
        line-height: 1.14;
        padding-block: .08em .14em;
    }
    .category-bar {
        margin-bottom: 12px;
    }
    .category-bar-shell {
        padding-bottom: 18px;
    }
    body[data-category-style] .category-bar-inner {
        padding-top: 10px;
        padding-bottom: 18px;
    }
    .menu-sections {
        gap: 30px;
    }
}

body {
    background-color: var(--bg);
}
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}
body::before {
    z-index: -2;
    background-image: var(--site-background-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(4, 4, 6, 0.82), rgba(4, 4, 6, 0.76)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.38));
}
.site-shell {
    position: relative;
    min-height: 100vh;
}
body[data-category-style] .category-link {
    overflow: hidden;
}
body[data-category-style] .category-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--category-overlay-surface);
    pointer-events: none;
    z-index: 0;
}
body[data-category-style] .category-link > * {
    position: relative;
    z-index: 1;
}
body[data-category-style] .category-link-media {
    position: relative;
    overflow: hidden;
}
body[data-category-style] .category-link-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--category-overlay-opacity));
    pointer-events: none;
}
.product-card.is-unavailable {
    filter: grayscale(.14) saturate(.74);
}
.product-unavailable-overlay {
    align-items: center;
    justify-content: center;
    padding-top: 0;
    background: rgba(90, 94, 103, 0.42);
    backdrop-filter: grayscale(0.92) blur(2px);
}
.product-unavailable-overlay span {
    background: rgba(32, 34, 40, 0.92);
    min-width: 112px;
}
.site-search-panel {
    position: fixed;
    inset: 0;
    z-index: 80;
}
.site-search-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(6px);
}
.site-search-dialog {
    position: relative;
    width: min(720px, calc(100vw - 24px));
    margin: 76px auto 0;
    padding: 18px;
    display: grid;
    gap: 14px;
    z-index: 1;
}
.site-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.site-search-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}
.site-search-field input {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 0 16px;
    outline: none;
}
.site-search-field input::placeholder {
    color: var(--muted);
}
.ghost-search-button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 700;
}
.site-search-meta {
    color: var(--muted);
    font-size: .92rem;
}
.site-search-empty {
    border-radius: 18px;
    padding: 16px;
    border: 1px dashed var(--line-strong);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.menu-section[hidden],
.product-card[hidden],
.category-link[hidden],
.site-search-panel[hidden] {
    display: none !important;
}
@media (max-width: 640px) {
    body::before {
        background-attachment: scroll;
    }
    .site-search-dialog {
        width: calc(100vw - 18px);
        margin-top: 58px;
        padding: 14px;
    }
    .site-search-field {
        grid-template-columns: 1fr;
    }
}

body,
button,
input,
textarea,
select {
    word-spacing: var(--word-spacing, normal);
}
body[data-category-style] .category-link-media::after {
    display: none;
}
body[data-category-style] .category-link-label {
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.drawer-status-box.is-open strong {
    color: #69d59b;
}
.drawer-status-box.is-closed strong {
    color: #ff8f8f;
}
.site-search-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ghost-search-button--view {
    min-height: 44px;
    padding-inline: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
}
.human-check {
    display: grid;
    gap: 10px;
}
.human-honeypot {
    position: absolute;
    inset-inline-start: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.human-check-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    width: fit-content;
    max-width: 100%;
}
.human-check-row input {
    width: 20px;
    min-height: 20px;
    margin: 0;
}
@media (max-width: 640px) {
    .site-search-meta {
        align-items: stretch;
    }
    .ghost-search-button--view {
        width: 100%;
    }
    .human-check-row {
        width: 100%;
    }
}


body[data-category-style] .category-link-media,
body[data-category-style] .category-link-media img {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}
body[data-category-style] .category-link-media img {
    position: relative;
    z-index: 3;
}
@media (min-width: 768px) {
    select,
    select option,
    select optgroup {
        background: #1a1d24;
        color: #f5f6f8;
    }
}


html,
body {
    overflow-x: hidden;
}
body[data-has-background="1"] {
    background-color: transparent;
}
body[data-has-background="1"] .site-shell {
    background: transparent;
}
body[data-has-background="1"]::after {
    background: linear-gradient(180deg, rgba(4, 4, 6, var(--site-background-overlay)), rgba(4, 4, 6, var(--site-background-overlay)));
}
.page-menu .menu-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
}
@media (max-width: 820px) {
    .page-menu .product-card {
        content-visibility: auto;
        contain-intrinsic-size: 420px 520px;
    }
}
.floating-action--cart {
    position: relative;
}
.floating-cart-badge {
    position: absolute;
    top: -6px;
    inset-inline-start: -6px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-contrast);
    font-size: 0.74rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.product-option-selector-shell {
    width: 100%;
    margin-top: 10px;
}
.product-option-select {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(12,14,18,0.72);
    color: var(--text);
    font: inherit;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
html[dir="rtl"] .product-option-select {
    direction: rtl;
    text-align: right;
}
html[dir="ltr"] .product-option-select {
    direction: ltr;
    text-align: left;
}
.product-option-select:focus {
    border-color: rgba(255,143,58,0.34);
    box-shadow: 0 0 0 3px rgba(255,143,58,0.12);
}
.product-option-select option {
    color: #111;
}
.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}
.product-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-contrast);
    text-decoration: none;
    font-weight: 800;
    font: inherit;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.product-action-button:hover,
.product-action-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}
.product-action-button[disabled] {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}
.product-action-button.is-added {
    background: linear-gradient(135deg, rgba(80,200,120,0.88), rgba(129,233,164,0.92));
    color: #132617;
}
.product-action-button--secondary {
    background: rgba(255,255,255,0.04);
    border-color: var(--line);
    color: var(--text);
    box-shadow: none;
}
.product-card[data-product-cart] .product-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.product-card[data-product-cart] .product-price {
    flex: 0 0 auto;
}
body[data-product-style="type-2"] .product-card[data-product-cart] .product-card-media {
    align-content: start;
}
body[data-product-style="type-2"] .product-card[data-product-cart] .product-card-footer {
    justify-content: space-between;
    align-items: center;
}
body[data-product-style="type-2"] .product-card[data-product-cart] .product-card-actions {
    justify-content: flex-start;
}
@media (max-width: 860px) {
    body[data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-two"][data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-one"][data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-three"][data-product-style="type-2"] .product-card[data-product-cart] {
        grid-template-columns: minmax(0, 1fr) 108px;
    }
}
@media (max-width: 640px) {
    .product-card[data-product-cart] .product-card-footer,
    .product-card-actions {
        width: 100%;
    }
    .product-action-button,
    .product-action-button--secondary {
        width: 100%;
    }
    body[data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-two"][data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-one"][data-product-style="type-2"] .product-card[data-product-cart],
    body[data-style="style-three"][data-product-style="type-2"] .product-card[data-product-cart] {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 12px;
        padding: 14px;
    }
    body[data-product-style="type-2"] .product-card[data-product-cart] .product-card-media {
        width: 104px;
        min-width: 104px;
    }
    body[data-product-style="type-2"] .product-card[data-product-cart] .product-image-button,
    body[data-product-style="type-2"] .product-card[data-product-cart] .product-image-button img {
        width: 104px;
        height: 104px;
        border-radius: 20px;
    }
}


/* === Enhanced category and order UI === */
.category-bar-shell[data-category-shell] {
    display: grid;
    gap: 16px;
    padding: 18px;
}
.category-bar-viewport {
    position: relative;
    overflow: hidden;
    max-height: none;
    transition: max-height .48s cubic-bezier(.22, 1, .36, 1);
}
.category-bar-viewport::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 44px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0), var(--category-surface));
}
.category-bar-shell.is-collapsed[data-category-overflow="1"] .category-bar-viewport::after {
    opacity: 1;
}
.category-bar-actions {
    display: flex;
    justify-content: center;
}
body[data-category-style] .category-toggle[data-category-toggle] {
    position: relative;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body[data-category-style] .category-toggle[data-category-toggle]:hover,
body[data-category-style] .category-toggle[data-category-toggle]:focus-visible {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}
body[data-category-style] .category-toggle[data-category-toggle] span,
body[data-category-style] .category-toggle[data-category-toggle] .category-toggle-label {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: nowrap !important;
}
.category-toggle[data-category-toggle] svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform .32s ease;
}
.category-bar-shell.is-expanded .category-toggle[data-category-toggle] svg {
    transform: rotate(180deg);
}
.category-bar-shell[data-category-overflow="0"] .category-bar-actions {
    display: none;
}
body[data-category-style] .category-bar-inner {
    justify-content: center;
    align-items: stretch;
    overflow: visible;
}
body[data-category-style="type-1"] .category-bar-inner,
body[data-category-style="type-2"] .category-bar-inner,
body[data-category-style="type-3"] .category-bar-inner {
    display: flex;
    flex-wrap: wrap;
}
body[data-category-style="type-4"] .category-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 12px;
}
body[data-category-style="type-4"] .category-link {
    width: auto;
    min-width: 0;
    min-height: 104px;
    padding: 14px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}
body[data-category-style="type-4"] .category-link-media {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    padding: 7px;
    display: grid;
    place-items: center;
}
body[data-category-style="type-4"] .category-link-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body[data-category-style="type-4"] .category-link-label {
    width: 100%;
    font-size: .9rem;
    line-height: 1.4;
}
body[data-category-style="type-4"] .category-link.is-active {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    box-shadow: 0 0 0 1px var(--line-strong) inset;
}
body[data-style="style-two"][data-category-style="type-4"] .category-link {
    background: rgba(255,255,255,0.7);
    border-color: rgba(10, 20, 10, 0.1);
}
body[data-style="style-two"][data-category-style="type-4"] .category-link-media {
    background: rgba(25, 40, 35, 0.04);
}
body[data-style="style-three"][data-category-style="type-4"] .category-link {
    background: transparent;
    border-style: dashed;
}
.product-card[data-product-cart] .product-card-footer {
    width: 100%;
    display: block;
}
.product-order-box {
    width: 100%;
    display: grid;
    gap: 12px;
}
.product-order-toggle {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: var(--text);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    text-align: start;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.product-order-toggle:hover,
.product-order-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.product-order-toggle-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}
.product-order-toggle-label {
    font-size: .98rem;
    font-weight: 800;
}
.product-order-toggle-hint {
    font-size: .84rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-order-toggle-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}
.product-order-toggle-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform .32s ease;
}
.product-order-box.is-open .product-order-toggle-icon svg {
    transform: rotate(180deg);
}
.product-order-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .48s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, transform .22s ease;
}
.product-order-box.is-open .product-order-panel {
    opacity: 1;
    transform: translateY(0);
}
.product-order-panel-inner {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}
.product-order-section {
    display: grid;
    gap: 12px;
}
.product-order-section-head {
    font-size: .88rem;
    font-weight: 700;
    color: var(--muted);
}
.product-option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product-option-pill {
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    display: grid;
    gap: 6px;
    justify-items: start;
    text-align: start;
    font: inherit;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.product-option-pill:hover,
.product-option-pill:focus-visible {
    transform: translateY(-1px);
    border-color: var(--line-strong);
}
.product-option-pill.is-selected {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border-color: var(--line-strong);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.product-option-pill-label {
    font-weight: 800;
}
.product-option-pill-price {
    font-size: .82rem;
    color: var(--muted);
}
.product-order-summary {
    display: grid;
    gap: 10px;
}
.product-order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}
.product-order-summary-row:first-child {
    padding-top: 0;
    border-top: 0;
}
.product-order-summary-label {
    color: var(--muted);
    font-size: .88rem;
}
.product-order-summary-value {
    font-size: .94rem;
    font-weight: 800;
}
.product-price--toggle,
.product-price--summary {
    min-height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    justify-content: flex-end;
    gap: 8px;
}
.product-card-actions--panel {
    justify-content: stretch;
}
.product-card-actions--panel > * {
    flex: 1 1 170px;
}
body[data-product-style="type-1"] .product-order-toggle,
body[data-product-style="type-1"] .product-order-panel-inner {
    border-radius: 28px;
}
body[data-product-style="type-1"] .product-order-toggle-copy,
body[data-product-style="type-1"] .product-order-section,
body[data-product-style="type-1"] .product-order-summary {
    text-align: center;
}
body[data-product-style="type-1"] .product-option-pills,
body[data-product-style="type-1"] .product-card-actions--panel {
    justify-content: center;
}
body[data-product-style="type-1"] .product-option-pill {
    justify-items: center;
    text-align: center;
}
body[data-product-style="type-2"] .product-order-toggle {
    border-radius: 20px;
    padding: 12px 14px;
}
body[data-product-style="type-2"] .product-order-panel-inner {
    border-radius: 22px;
}
body[data-product-style="type-3"] .product-order-toggle {
    background: transparent;
    border-style: dashed;
    box-shadow: none;
}
body[data-product-style="type-3"] .product-order-panel-inner,
body[data-product-style="type-3"] .product-option-pill {
    background: rgba(255,255,255,0.02);
    border-style: dashed;
    box-shadow: none;
}
@media (max-width: 720px) {
    body[data-category-style="type-4"] .category-bar-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .product-order-toggle {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .product-order-toggle-icon {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }
}
@media (max-width: 560px) {
    .category-bar-shell[data-category-shell] {
        padding: 14px;
        gap: 12px;
    }
    body[data-category-style="type-4"] .category-bar-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-order-toggle {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }
    .product-price--toggle {
        justify-content: flex-start;
    }
    .product-order-toggle-icon {
        width: 100%;
        height: 44px;
        border-radius: 14px;
    }
    .product-order-summary-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .product-option-pill {
        width: 100%;
    }
}

/* === Final refinements: compact category rail + all-categories drawer === */
.category-bar-shell[data-category-shell] {
    gap: 14px;
}

.category-bar-shell[data-category-shell] .category-bar-viewport {
    overflow: hidden;
}

.category-bar-shell[data-category-shell] .category-bar-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.category-bar-shell[data-category-shell] .category-bar-inner::-webkit-scrollbar {
    display: none;
}

.category-bar-shell[data-category-shell] .category-link {
    flex: 0 0 auto;
}

.category-bar-shell[data-category-shell] .category-sheet {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height .42s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, transform .22s ease;
}

.category-bar-shell[data-category-shell].is-sheet-open .category-sheet {
    opacity: 1;
    transform: translateY(0);
}

.category-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.category-sheet-head strong {
    font-size: 1rem;
    font-weight: 900;
}

.category-sheet-close {
    appearance: none;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.category-sheet-close:hover,
.category-sheet-close:focus-visible {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.category-sheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    max-height: min(62vh, 420px);
    overflow: auto;
    padding: 4px 2px 2px;
    scrollbar-width: thin;
}

.category-sheet-grid .category-link {
    width: 100%;
    min-width: 0;
    min-height: 102px;
    padding: 14px 10px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.category-sheet-grid .category-link-media {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    padding: 7px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.05);
}

.category-sheet-grid .category-link-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-sheet-grid .category-link-label {
    width: 100%;
    font-size: .9rem;
    line-height: 1.45;
}

.category-sheet-grid .category-link.is-active {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    box-shadow: 0 0 0 1px var(--line-strong) inset;
}

body[data-style="style-two"] .category-sheet-grid .category-link {
    background: rgba(255,255,255,0.82);
    border-color: rgba(20, 30, 24, 0.12);
}

body[data-style="style-two"] .category-sheet-grid .category-link-media,
body[data-style="style-two"] .category-sheet-close {
    background: rgba(25, 40, 35, 0.04);
}

body[data-style="style-three"] .category-sheet-grid .category-link,
body[data-style="style-three"] .category-sheet-close {
    background: transparent;
    border-style: dashed;
    box-shadow: none;
}

body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-bar-inner {
    gap: 10px;
}

body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link {
    min-width: 88px;
    min-height: 98px;
    padding: 12px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}

body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    padding: 6px;
    display: grid;
    place-items: center;
}

body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-label {
    width: 100%;
    font-size: .88rem;
    line-height: 1.4;
}

body[data-style="style-two"][data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link {
    background: rgba(255,255,255,0.78);
    border-color: rgba(20, 30, 24, 0.12);
}

body[data-style="style-three"][data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link {
    background: transparent;
    border-style: dashed;
}

.product-order-toggle[data-has-price="0"] {
    grid-template-columns: minmax(0, 1fr) auto;
}

.product-order-toggle[data-has-price="0"] .product-order-toggle-hint {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

@media (max-width: 720px) {
    .category-sheet-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .category-sheet-head {
        align-items: stretch;
        flex-direction: column;
    }

    .category-sheet-close {
        width: 100%;
    }

    .category-sheet-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: min(60vh, 360px);
    }

    body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link {
        min-width: 82px;
    }
}
.category-bar-shell[data-category-shell].is-sheet-open .category-toggle[data-category-toggle] svg {
    transform: rotate(180deg);
}

@media (max-width: 560px) {
    .product-order-toggle[data-has-price="0"] {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .product-order-toggle[data-has-price="0"] .product-order-toggle-icon {
        width: 42px;
        height: 42px;
        border-radius: 16px;
        grid-column: auto;
        grid-row: auto;
    }
}

/* === v3 refinement: compact category rail, quick cart, inline qty === */
.floating-actions {
    left: auto;
    right: 16px;
    bottom: 16px;
    justify-items: end;
}
body[data-align="left"] .floating-actions {
    left: auto;
    right: 16px;
}
.floating-cart-dock {
    position: relative;
    display: grid;
    gap: 10px;
    justify-items: end;
}
.floating-cart-panel {
    width: min(340px, calc(100vw - 24px));
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    background: rgba(15, 16, 22, 0.96);
    box-shadow: 0 26px 52px rgba(0,0,0,0.24);
    position: absolute;
    inset-inline-end: 0;
    bottom: calc(100% + 12px);
}
body[data-style="style-two"] .floating-cart-panel {
    background: rgba(255,255,255,0.97);
}
body[data-style="style-three"] .floating-cart-panel {
    background: rgba(16,19,25,0.98);
    border-style: dashed;
}
.floating-cart-panel-head,
.floating-cart-panel-meta,
.floating-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.floating-cart-panel-head strong {
    font-size: 1rem;
}
.floating-cart-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
}
.floating-cart-panel-meta {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
}
.floating-cart-panel-meta strong {
    color: var(--text);
}
.floating-cart-panel-list {
    display: grid;
    gap: 10px;
}
.floating-cart-item {
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.floating-cart-item-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.floating-cart-item-copy strong,
.floating-cart-item-copy small,
.floating-cart-item-total {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.floating-cart-item-copy small {
    color: var(--muted);
}
.floating-cart-item-total {
    font-weight: 800;
}
.floating-cart-empty {
    padding: 12px 14px;
    border-radius: 18px;
    text-align: center;
    color: var(--muted);
    background: rgba(255,255,255,0.03);
}
.floating-cart-continue {
    min-height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--accent-contrast);
    text-decoration: none;
    font-weight: 800;
    padding: 0 16px;
}
.category-link.is-text-only,
.category-sheet-grid .category-link.is-text-only,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link.is-text-only {
    justify-content: center;
    min-height: 68px;
    padding: 14px 16px;
}
.category-link.is-text-only .category-link-label,
.category-sheet-grid .category-link.is-text-only .category-link-label {
    font-size: 0.92rem;
}
.product-order-box--simple {
    gap: 14px;
}
.product-order-simple {
    width: 100%;
    min-height: 62px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-card-actions--simple,
.product-card-actions--panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.product-card-actions--simple > * ,
.product-card-actions--panel > * {
    flex: 1 1 140px;
}
.product-qty-control {
    min-height: 46px;
    padding: 4px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.product-qty-control[hidden] {
    display: none !important;
}
.product-qty-button {
    width: 40px;
    height: 38px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: var(--text);
    font: inherit;
    font-size: 1.2rem;
    cursor: pointer;
}
.product-qty-button[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}
.product-qty-control strong {
    min-width: 34px;
    text-align: center;
    font-size: 1rem;
}
.product-action-button.is-hidden {
    display: none !important;
}
body[data-product-style="type-3"] .product-order-simple,
body[data-product-style="type-3"] .product-qty-control {
    background: rgba(255,255,255,0.02);
    border-style: dashed;
}
@media (max-width: 720px) {
    .floating-actions {
        right: 12px;
        bottom: 12px;
    }
    body[data-align="left"] .floating-actions {
        right: 12px;
    }
    .floating-cart-panel {
        width: min(320px, calc(100vw - 16px));
    }
    .category-bar-shell[data-category-shell] {
        padding: 14px;
    }
    .category-bar-shell[data-category-shell] .category-bar-inner {
        gap: 10px;
    }
    .category-bar-shell[data-category-shell] .category-link {
        min-width: 76px;
        min-height: 78px;
    }
}
@media (max-width: 560px) {
    .floating-cart-panel {
        width: min(300px, calc(100vw - 16px));
        padding: 14px;
        bottom: calc(100% + 10px);
    }
    .floating-cart-panel-head,
    .floating-cart-panel-meta,
    .floating-cart-item {
        align-items: flex-start;
        flex-direction: column;
    }
    .product-order-simple {
        align-items: flex-start;
        flex-direction: column;
    }
    .product-card-actions--simple > *,
    .product-card-actions--panel > * {
        flex-basis: 100%;
    }
    .product-qty-control {
        width: 100%;
    }
    .category-sheet-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* === Polished mobile refinements for category sheet and quick cart === */
.category-bar-shell[data-category-shell] {
    transition: padding-bottom .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.category-bar-shell[data-category-shell].is-sheet-open {
    padding-bottom: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.category-bar-shell[data-category-shell].is-sheet-open .category-bar-actions {
    margin-bottom: 4px;
}

.category-sheet-grid {
    align-items: stretch;
}

.category-sheet-grid .category-link {
    min-height: 108px;
}

.category-sheet-grid .category-link.is-text-only {
    min-height: 90px;
}

.product-order-box--simple .product-card-actions {
    margin-top: 10px;
}

@media (max-width: 560px) {
    .category-bar-shell[data-category-shell].is-sheet-open {
        padding-bottom: 14px;
    }

    .category-sheet-grid .category-link {
        min-height: 96px;
        border-radius: 18px;
        padding: 12px 8px;
    }

    .floating-cart-dock {
        inset-inline-end: 14px;
        inset-block-end: 14px;
    }

    .floating-cart-panel {
        width: min(92vw, 340px);
    }
}

.category-toggle[data-category-toggle]:disabled {
    opacity: .78;
    cursor: default;
}

/* === v5: restore simple category rail, fix mobile cart, polish mobile pricing === */
.category-bar,
.category-bar.is-pinned {
    position: sticky;
    inset: auto;
    top: 0;
}
.category-bar-placeholder {
    display: none !important;
}
.category-bar-shell[data-category-shell] {
    gap: 0;
    padding: 12px 14px;
}
.category-bar-shell[data-category-shell] .category-bar-viewport {
    overflow: hidden;
}
.category-bar-shell[data-category-shell] .category-bar-inner {
    gap: 10px;
    padding: 2px 2px 4px;
    scroll-snap-type: none;
}
.category-bar-shell[data-category-shell] .category-link {
    scroll-snap-align: none;
}
.category-bar-actions,
.category-sheet {
    display: none !important;
}
.product-price {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}
.product-price.has-compare {
    row-gap: 2px;
}
.product-price-compare {
    order: -1;
    font-size: .74rem;
    line-height: 1.2;
    color: var(--muted);
    text-decoration: line-through;
    opacity: .9;
}
.product-option-pill-price-wrap {
    display: grid;
    gap: 2px;
    justify-items: end;
}
.product-option-pill-compare {
    font-size: .72rem;
    line-height: 1.2;
    color: var(--muted);
    text-decoration: line-through;
}
.product-order-simple .product-price {
    margin-inline-start: auto;
    text-align: end;
}
.product-order-summary .product-price {
    text-align: end;
}
.floating-actions {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
}
body[data-align="left"] .floating-actions {
    left: max(14px, env(safe-area-inset-left));
    right: auto;
    justify-items: start;
}
.floating-cart-dock {
    justify-items: end;
}
body[data-align="left"] .floating-cart-dock {
    justify-items: start;
}
.floating-cart-panel {
    right: 0;
    left: auto;
    inset-inline-end: auto;
    max-width: calc(100vw - 28px);
    transform-origin: bottom right;
}
body[data-align="left"] .floating-cart-panel {
    left: 0;
    right: auto;
    transform-origin: bottom left;
}
html[dir="rtl"] .floating-cart-panel {
    right: 0;
    left: auto;
}
html[dir="ltr"] .floating-cart-panel {
    left: 0;
    right: auto;
}
@media (max-width: 760px) {
    .category-bar {
        padding-top: 6px;
    }
    .category-bar-shell[data-category-shell] {
        padding: 12px;
        border-radius: 24px;
    }
    .category-bar-shell[data-category-shell] .category-bar-inner {
        gap: 9px;
    }
    body[data-category-style="type-1"] .category-link,
    body[data-category-style="type-2"] .category-link,
    body[data-category-style="type-3"] .category-link,
    body[data-category-style="type-4"] .category-link {
        min-width: 74px;
        min-height: 76px;
        border-radius: 18px;
    }
    body[data-category-style="type-4"] .category-link {
        min-width: 78px;
        min-height: 84px;
    }
    .product-card.page-panel {
        border-radius: 24px;
    }
    .product-card[data-product-cart] .product-card-footer {
        gap: 12px;
    }
    .product-option-pill {
        border-radius: 18px;
    }
    .floating-cart-panel {
        width: min(340px, calc(100vw - 20px));
        padding: 15px;
    }
}
@media (max-width: 560px) {
    .category-bar {
        top: 6px;
    }
    .category-bar-shell[data-category-shell] {
        padding: 10px;
        border-radius: 22px;
    }
    .category-bar-shell[data-category-shell] .category-bar-inner {
        gap: 8px;
    }
    body[data-category-style="type-1"] .category-link,
    body[data-category-style="type-2"] .category-link,
    body[data-category-style="type-3"] .category-link {
        min-width: 70px;
        min-height: 72px;
        padding: 10px 12px;
    }
    body[data-category-style="type-4"] .category-link {
        min-width: 74px;
        min-height: 80px;
        padding: 10px 8px;
    }
    .product-order-simple {
        gap: 8px;
    }
    .product-order-simple .product-price {
        width: 100%;
        justify-content: flex-end;
    }
    .product-price-compare,
    .product-option-pill-compare {
        font-size: .7rem;
    }
    .floating-actions {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    body[data-align="left"] .floating-actions {
        left: max(12px, env(safe-area-inset-left));
    }
    .floating-cart-panel {
        right: 0;
        left: auto;
        width: min(320px, calc(100vw - 18px));
        max-width: calc(100vw - 18px);
        bottom: calc(100% + 10px);
    }
    body[data-align="left"] .floating-cart-panel,
    html[dir="ltr"] .floating-cart-panel {
        left: 0;
        right: auto;
    }
}

/* === v6: restore sticky category rail + original collapse toggle === */
.category-bar,
body .category-bar,
body .category-bar.is-pinned {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    inset: auto;
}
body .category-bar.is-pinned {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: 120;
}
.category-bar-placeholder {
    display: block !important;
    width: 100%;
    height: 0;
    pointer-events: none;
}
.category-bar-shell[data-category-shell] {
    gap: 14px;
    padding: 12px 14px;
}
.category-bar-shell[data-category-shell].is-collapsed {
    gap: 0;
}
.category-bar-shell[data-category-shell].is-collapsed .category-bar-viewport {
    display: none;
}
.category-toggle[data-category-toggle] {
    width: max-content;
    margin-inline: auto;
}
.category-bar-shell[data-category-shell].is-collapsed .category-toggle[data-category-toggle] svg {
    transform: rotate(180deg);
}
@media (max-width: 760px) {
    .category-bar {
        padding-top: 6px;
    }
    .category-bar-shell[data-category-shell] {
        gap: 12px;
        padding: 12px;
        border-radius: 24px;
    }
}
@media (max-width: 560px) {
    .category-bar {
        top: 6px;
    }
    body .category-bar.is-pinned {
        top: 0;
    }
    .category-bar-shell[data-category-shell] {
        gap: 10px;
        padding: 10px;
        border-radius: 22px;
    }
}


/* === v7: mobile polish, centered imagery, commerce cart refinements === */
.menu-search-strip {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
    padding: 16px 18px;
}
.menu-search-strip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.menu-search-strip-head strong {
    font-size: 0.95rem;
    font-weight: 900;
}
.menu-search-strip-clear {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.menu-search-strip-field {
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
}
.menu-search-strip-icon {
    font-size: 1.1rem;
    color: var(--muted);
}
.menu-search-strip-field input {
    width: 100%;
    min-height: 52px;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    outline: none;
}
body[data-style="style-two"] .menu-search-strip,
body[data-style="style-two"] .menu-search-strip-field,
body[data-style="style-two"] .menu-search-strip-clear {
    background: rgba(255,255,255,0.86);
}
body[data-category-style] .category-link-media,
.category-sheet-grid .category-link-media,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media {
    overflow: hidden;
    padding: 0 !important;
}
body[data-category-style] .category-link-media img,
.category-sheet-grid .category-link-media img,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: inherit;
}
.category-link.is-active {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 10px 24px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}
body[data-style="style-two"] .category-link.is-active {
    box-shadow: 0 0 0 1px rgba(18, 34, 26, 0.12) inset, 0 12px 24px rgba(11, 18, 14, 0.08);
}
body[data-product-style="type-2"] .product-card,
body[data-product-style="type-2"] .product-card[data-product-cart] {
    align-items: start !important;
}
body[data-product-style="type-2"] .product-card-media,
body[data-product-style="type-2"] .product-card[data-product-cart] .product-card-media {
    align-self: start !important;
    align-content: start !important;
    justify-items: center;
}
body[data-product-style="type-2"] .product-card-body {
    align-content: start !important;
}
body[data-product-style="type-2"] .product-image-button,
body[data-product-style="type-2"] .product-image-button img {
    width: 136px;
    height: 136px;
}
.floating-cart-dock {
    position: fixed !important;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    left: auto;
    z-index: 120;
    justify-items: end;
}
html[dir="ltr"] .floating-cart-dock {
    left: max(14px, env(safe-area-inset-left));
    right: auto;
    justify-items: start;
}
.floating-cart-panel {
    width: min(360px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    right: 0 !important;
    left: auto !important;
    inset-inline-end: 0 !important;
    bottom: calc(100% + 12px);
    background: linear-gradient(180deg, rgba(18, 22, 31, 0.98), rgba(11, 14, 22, 0.98)) !important;
    color: #f6f7fb;
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 24px 52px rgba(0,0,0,0.28);
}
html[dir="ltr"] .floating-cart-panel {
    left: 0 !important;
    right: auto !important;
}
.floating-cart-panel-head,
.floating-cart-panel-meta,
.floating-cart-item {
    align-items: center;
    flex-direction: row;
}
.floating-cart-panel-head strong,
.floating-cart-item-copy strong,
.floating-cart-panel-meta strong,
.floating-cart-item-total {
    color: #f8f9ff;
}
.floating-cart-panel-meta {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.floating-cart-item {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.045);
}
.floating-cart-item-copy small,
.floating-cart-empty {
    color: rgba(241,244,255,0.72);
}
.floating-cart-close {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.floating-cart-continue {
    box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}
.product-order-toggle[data-has-price="1"] {
    grid-template-columns: minmax(0, 1fr) auto auto;
}
.product-order-toggle[data-has-price="1"] .product-order-toggle-copy {
    gap: 3px;
}
@media (max-width: 860px) {
    body[data-product-style="type-2"] .product-image-button,
    body[data-product-style="type-2"] .product-image-button img {
        width: 114px;
        height: 114px;
    }
}
@media (max-width: 640px) {
    .menu-search-strip {
        padding: 14px;
        border-radius: 22px;
    }
    .menu-search-strip-field {
        min-height: 50px;
        border-radius: 18px;
    }
    body[data-product-style="type-2"] .product-card,
    body[data-style="style-two"][data-product-style="type-2"] .product-card,
    body[data-style="style-one"][data-product-style="type-2"] .product-card,
    body[data-style="style-three"][data-product-style="type-2"] .product-card {
        grid-template-columns: minmax(0, 1fr) 112px !important;
    }
    body[data-product-style="type-2"] .product-card-media {
        width: 112px;
        min-width: 112px;
    }
    body[data-product-style="type-2"] .product-image-button,
    body[data-product-style="type-2"] .product-image-button img {
        width: 112px;
        height: 112px;
    }
    .product-order-toggle[data-has-price="1"] {
        grid-template-columns: 1fr;
    }
    .product-order-toggle[data-has-price="1"] .product-price--toggle {
        justify-content: flex-start;
    }
    .floating-cart-dock {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    .floating-cart-panel {
        width: min(330px, calc(100vw - 18px));
        max-width: calc(100vw - 18px);
    }
}
@media (max-width: 560px) {
    .menu-search-strip-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .menu-search-strip-clear {
        width: 100%;
    }
    .floating-cart-panel-head,
    .floating-cart-panel-meta,
    .floating-cart-item {
        align-items: flex-start;
        flex-direction: column;
    }
    .floating-cart-panel {
        width: min(318px, calc(100vw - 16px));
        max-width: calc(100vw - 16px);
    }
}


/* mobile polish v9: iPhone-safe category media crop + simple price only layout */
body[data-category-style] .category-link-media,
.category-sheet-grid .category-link-media,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media {
    position: relative;
    display: block;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    isolation: isolate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
}
body[data-category-style] .category-link-media img,
.category-sheet-grid .category-link-media img,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    -webkit-object-fit: cover;
    -webkit-object-position: center center;
    border-radius: inherit;
    transform: translateZ(0);
}
.product-order-simple--price-only {
    justify-content: flex-end;
    text-align: end;
}
.product-order-simple--price-only .product-price {
    margin-inline-start: 0;
}

/* v10 mobile stability + iPhone category image fit */
@media (max-width: 820px) {
    .page-menu .product-card {
        content-visibility: visible !important;
        contain-intrinsic-size: auto !important;
    }
}

body[data-category-style] .category-link-media,
.category-sheet-grid .category-link-media,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(circle, white 100%, black 100%);
}

body[data-category-style] .category-link-media img,
.category-sheet-grid .category-link-media img,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media img {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate(-50%, -50%) translateZ(0) !important;
    -webkit-transform: translate(-50%, -50%) translateZ(0) !important;
}


/* v12 fix: style-two + category type-1 should stay compact horizontal chip layout */
body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-bar-inner {
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-top: 6px;
    padding-bottom: 10px;
}
body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-link {
    width: auto !important;
    min-width: max-content !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 20px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    text-align: right !important;
}
body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-link-media {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 14px !important;
}
body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-link-label {
    font-size: .95rem !important;
    line-height: 1.35 !important;
    white-space: nowrap;
}
@media (max-width: 640px) {
    body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-link {
        min-width: max-content !important;
        min-height: 58px !important;
        padding: 8px 12px !important;
        border-radius: 18px !important;
    }
    body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-link-media {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 12px !important;
    }
}

body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
body[data-style="style-two"][data-category-style="type-1"] .category-bar-shell[data-category-shell] .category-bar-inner {
    justify-content: center;
    gap: 14px;
    padding-inline: 0;
}
body[data-style="style-two"][data-category-style="type-1"] .category-link {
    width: auto;
    min-width: 156px;
    min-height: 74px;
    padding: 12px 16px;
    border-radius: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgba(16,36,19,.08);
    color: var(--accent);
    box-shadow: none;
}
body[data-style="style-two"][data-category-style="type-1"] .category-link:hover {
    transform: translateY(-1px);
}
body[data-style="style-two"][data-category-style="type-1"] .category-link.is-active {
    background: rgba(0,0,0,.08);
    border-color: rgba(255,255,255,.18);
    color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.05);
}
body[data-style="style-two"][data-category-style="type-1"] .category-link-media {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 18px;
    border: 0;
    background: transparent;
}
body[data-style="style-two"][data-category-style="type-1"] .category-link-label {
    font-size: 1rem;
    line-height: 1.55;
    text-align: right;
}
body[data-number-locale="latin"] [data-price-value],
body[data-number-locale="latin"] [data-price-compare-value],
body[data-number-locale="latin"] .product-option-pill-price,
body[data-number-locale="latin"] .product-option-pill-compare {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    font-family: var(--font-en), var(--font-fa), sans-serif;
    font-variant-numeric: lining-nums tabular-nums;
}
@media (max-width: 560px) {
    body[data-style="style-two"][data-category-style="type-1"] .category-link {
        min-width: 108px;
        min-height: 72px;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 20px;
    }
    body[data-style="style-two"][data-category-style="type-1"] .category-link-media {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 15px;
    }
    body[data-style="style-two"][data-category-style="type-1"] .category-link-label {
        font-size: .92rem;
    }
}

body[data-category-style] .category-link-media img,
.category-sheet-grid .category-link-media img,
body[data-category-style="type-4"] .category-bar-shell[data-category-shell] .category-link-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    -webkit-transform: none !important;
}

body[data-number-locale="latin"] {
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

body[data-number-locale="latin"] .product-price,
body[data-number-locale="latin"] .product-price strong,
body[data-number-locale="latin"] .product-price-compare,
body[data-number-locale="latin"] .product-option-pill-price,
body[data-number-locale="latin"] .product-option-pill-compare,
body[data-number-locale="latin"] [data-price-value],
body[data-number-locale="latin"] [data-price-compare-value],
body[data-number-locale="latin"] .floating-cart-item-copy small,
body[data-number-locale="latin"] .floating-cart-item-total,
body[data-number-locale="latin"] .floating-cart-summary strong,
body[data-number-locale="latin"] .floating-cart-quantity,
body[data-number-locale="latin"] .floating-cart-badge {
    font-family: var(--font-en), var(--font-fa), "Inter", "Segoe UI", Arial, sans-serif !important;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}
