:root {
    --bg: #0a1224;
    --bg-soft: #131f38;
    --panel: rgba(15, 24, 44, 0.82);
    --panel-strong: #111b31;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f4f7ff;
    --muted: #9eb2d3;
    --primary: #ff9f1c;
    --primary-strong: #ffbf69;
    --secondary: #33d1ff;
    --success: #35d07f;
    --danger: #ff6b6b;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100% - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255, 159, 28, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(51, 209, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #07101f 0%, #0d172c 52%, #09111f 100%);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(4, 10, 20, 0.7);
    border-bottom: 1px solid var(--line);
}

.nav-wrap,
.site-nav,
.brand,
.hero-actions,
.hero-stats,
.product-card-top,
.product-card-bottom,
.footer-grid,
.filter-row,
.message-card-top,
.panel-heading,
.admin-heading,
.action-cell,
.inline-form,
.checkbox-row {
    display: flex;
    align-items: center;
}

.nav-wrap,
.panel-heading,
.admin-heading {
    justify-content: space-between;
}

.nav-wrap {
    min-height: 82px;
    gap: 16px;
}

.brand {
    gap: 14px;
}

.brand strong,
.admin-brand strong {
    display: block;
    font-size: 1.15rem;
}

.brand small,
.admin-brand small,
.table-subline {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: block;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(7, 16, 30, 0.28);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
}

.site-nav,
.footer-grid,
.hero-actions,
.hero-stats,
.filter-row,
.action-cell,
.feature-bullets,
.dashboard-grid,
.message-list,
.form-grid,
.admin-grid-2 {
    gap: 16px;
}

.site-nav a,
.ghost-link,
.filter-chip,
.link-button {
    color: var(--muted);
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.ghost-link:hover,
.filter-chip:hover,
.filter-chip.is-active,
.link-button:hover {
    color: var(--text);
}

.site-nav a.is-active,
.filter-chip.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.site-nav a,
.filter-chip {
    padding: 10px 16px;
    border-radius: 999px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.language-switch a {
    min-width: 52px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.language-switch a.is-active {
    background: rgba(255, 159, 28, 0.18);
    color: var(--primary-strong);
}

.pill-link {
    position: relative;
    z-index: 4;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 10px 14px;
}

.hero-section,
.page-hero,
.section-block,
.admin-section {
    padding: 34px 0 72px;
}

.hero-grid,
.feature-grid,
.detail-grid,
.form-grid,
.admin-grid-2 {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: 24px 0;
}

.hero-grid-store {
    align-items: start;
    grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.feature-panel h2,
.detail-card h2,
.contact-panel h2,
.login-card h1,
.admin-heading h1 {
    margin: 0 0 18px;
    line-height: 1.1;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.page-hero h1,
.section-heading h2,
.feature-panel h2,
.detail-card h2,
.contact-panel h2,
.admin-heading h1 {
    font-size: clamp(2rem, 3.8vw, 3rem);
}

.hero-copy p,
.page-hero p,
.feature-panel p,
.feature-item p,
.detail-card p,
.contact-panel p,
.product-card p,
.hero-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-copy p {
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-strong);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ffcb77);
    color: #171717;
    box-shadow: 0 18px 36px rgba(255, 159, 28, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

.btn-block {
    width: 100%;
}

.hero-panel,
.feature-list,
.product-grid,
.footer-grid,
.dashboard-grid,
.message-list {
    display: grid;
}

.hero-panel {
    gap: 18px;
    position: relative;
}

.hero-card,
.stat-card,
.product-card,
.feature-item,
.feature-panel,
.detail-card,
.purchase-card,
.contact-panel,
.glass-form,
.dashboard-card,
.admin-panel,
.message-card,
.login-card {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-card,
.feature-panel,
.detail-card,
.purchase-card,
.contact-panel,
.admin-panel,
.login-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.hero-card-top {
    background:
        linear-gradient(160deg, rgba(255, 159, 28, 0.22), rgba(255, 255, 255, 0.03)),
        var(--panel);
}

.hero-card-label {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--primary-strong);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-service-list,
.hero-step-list {
    display: grid;
    gap: 14px;
}

.hero-service-list {
    margin-top: 20px;
}

.hero-service-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(7, 16, 31, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-service-item strong,
.hero-step strong {
    display: block;
    margin-bottom: 6px;
}

.hero-service-item p,
.hero-step p {
    margin: 0;
}

.hero-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-step:first-child {
    padding-top: 0;
    border-top: 0;
}

.hero-step:last-child {
    padding-bottom: 0;
}

.hero-step-badge {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.95), rgba(255, 191, 105, 0.88));
    color: #151515;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(255, 159, 28, 0.22);
}

.hero-card-bottom ul {
    margin: 18px 0 0;
    padding-inline-start: 18px;
    color: var(--muted);
    line-height: 2;
}

.hero-stats {
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1 1 180px;
    min-width: 180px;
    border-radius: 22px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 14, 26, 0.28));
}

.stat-card strong,
.price-tag {
    display: block;
    font-size: 1.35rem;
}

.stat-card span {
    color: var(--muted);
    margin-top: 6px;
    display: block;
}

.section-heading,
.page-hero,
.admin-heading {
    margin-bottom: 26px;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 26px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 191, 105, 0.35);
}

.category-card h3 {
    margin: 0;
}

.category-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.product-card {
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 191, 105, 0.35);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-media {
    margin: -24px -24px 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1)),
        #0d172a;
    border-bottom: 1px solid var(--line);
}

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

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

.product-card h3,
.feature-item h3,
.hero-card h3,
.purchase-card h2,
.message-card h3 {
    margin: 0;
}

.product-card-bottom {
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.product-card-bottom a {
    color: var(--secondary);
}

.product-link-label {
    color: var(--secondary);
    font-weight: 700;
}

.category-links-row {
    margin-bottom: 28px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.pill-accent {
    background: rgba(255, 159, 28, 0.16);
    color: var(--primary-strong);
}

.pill-success {
    background: rgba(53, 208, 127, 0.16);
    color: #89f2b4;
}

.pill-danger {
    background: rgba(255, 107, 107, 0.16);
    color: #ff9c9c;
}

.feature-grid,
.detail-grid,
.form-grid,
.admin-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list {
    grid-template-columns: 1fr;
}

.feature-item,
.dashboard-card {
    border-radius: 24px;
    padding: 24px;
}

.feature-bullets {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-bullet {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.purchase-card,
.contact-panel {
    align-self: start;
}

.breadcrumb-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    margin-bottom: 16px;
}

.breadcrumb-row a:hover {
    color: var(--text);
}

.gallery-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
}

.gallery-main {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 1 / 1;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.gallery-thumb {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
    transform: translateY(-2px);
    border-color: rgba(255, 191, 105, 0.45);
}

.gallery-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.detail-stack {
    display: grid;
    gap: 24px;
}

.detail-highlight-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.detail-highlight {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-highlight strong {
    display: block;
    margin-bottom: 6px;
}

.detail-highlight span {
    color: var(--muted);
}

.purchase-points {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
}

.purchase-points div {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.price-tag {
    margin: 16px 0;
    font-size: 2rem;
    color: var(--primary-strong);
}

.glass-form,
.admin-form,
.login-form {
    display: grid;
    gap: 18px;
}

.glass-form,
.admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius-lg);
    padding: 28px;
}

.admin-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

label {
    display: grid;
    gap: 10px;
}

label span {
    color: var(--muted);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 14px 16px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(255, 159, 28, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.1);
}

.full-span {
    grid-column: 1 / -1;
}

.checkbox-row {
    gap: 12px;
}

.checkbox-row input {
    width: auto;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(4, 10, 18, 0.76);
    padding: 28px 0 44px;
}

.footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
}

.footer-brand-block {
    display: grid;
    gap: 16px;
}

.footer-badges,
.footer-meta-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
}

.footer-meta-links a {
    margin: 0;
}

.flash-wrap {
    padding-top: 20px;
}

.flash {
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.flash-success {
    background: rgba(53, 208, 127, 0.12);
    border-color: rgba(53, 208, 127, 0.35);
}

.flash-error {
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.35);
}

.compact-hero {
    padding-top: 48px;
    padding-bottom: 24px;
}

.filter-row {
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.admin-body,
.login-body {
    background:
        radial-gradient(circle at top left, rgba(51, 209, 255, 0.12), transparent 22%),
        radial-gradient(circle at bottom right, rgba(255, 159, 28, 0.14), transparent 24%),
        linear-gradient(180deg, #07101f 0%, #0d172c 100%);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 24px;
    border-left: 1px solid var(--line);
    background: rgba(7, 12, 24, 0.92);
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin-top: 28px;
}

.admin-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--muted);
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.admin-main {
    padding: 28px;
}

.dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-editor {
    display: grid;
    gap: 24px;
}

.content-toolbar,
.content-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.content-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.content-section-panel {
    display: grid;
    gap: 20px;
    align-content: start;
}

.content-panel-heading {
    align-items: flex-start;
}

.content-panel-heading h2 {
    margin: 0 0 6px;
}

.content-field-list {
    display: grid;
    gap: 18px;
}

.content-field {
    display: grid;
    gap: 10px;
}

.content-locale-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.content-locale-field {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-locale-field strong {
    color: var(--text);
    font-size: 0.95rem;
}

.content-locale-field-en {
    direction: ltr;
    text-align: left;
}

.content-field textarea {
    min-height: 110px;
}

.dashboard-card span {
    color: var(--muted);
}

.dashboard-card strong {
    display: block;
    margin-top: 12px;
    font-size: 2.2rem;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--line);
    text-align: right;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-weight: 700;
}

.message-list {
    grid-template-columns: 1fr;
}

.message-list-wide {
    gap: 18px;
}

.message-card {
    border-radius: 22px;
    padding: 22px;
}

.message-card-top {
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.message-card span {
    color: var(--muted);
}

.link-button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.danger-link {
    color: var(--danger);
}

.inline-form {
    gap: 10px;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(460px, 100%);
}

.current-media-card,
.current-gallery-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
}

.current-media-card img,
.current-gallery-item img,
.admin-table-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.current-media-card img {
    max-width: 240px;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
}

.current-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.current-gallery-item img {
    aspect-ratio: 1 / 1;
}

.admin-table-image {
    width: 66px;
    height: 66px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .category-grid,
    .product-grid,
    .feature-grid,
    .detail-grid,
    .form-grid,
    .admin-grid-2,
    .footer-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .detail-highlight-row,
    .current-gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-sections-grid {
        grid-template-columns: 1fr;
    }

    .content-locale-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(10, 18, 36, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .language-switch {
        width: 100%;
        justify-content: center;
    }

    .glass-form,
    .admin-form {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .hero-chip-row {
        gap: 8px;
    }

    .hero-chip {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.92rem;
    }

    .page-hero h1,
    .section-heading h2,
    .feature-panel h2,
    .detail-card h2,
    .contact-panel h2,
    .admin-heading h1 {
        font-size: 2rem;
    }

    .hero-section,
    .page-hero,
    .section-block,
    .admin-section,
    .admin-main {
        padding-top: 28px;
        padding-bottom: 42px;
    }

    .content-toolbar,
    .content-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-step {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-media {
        aspect-ratio: 5 / 4;
    }
}
