:root {
    --arch-font-sans: "Roboto", sans-serif;
    --store-bg: #f3f5f8;
    --store-surface: #ffffff;
    --store-surface-soft: #eef2f6;
    --store-ink: #111a2d;
    --store-muted: #6b7387;
    --store-line: #dce2ea;
    --store-line-strong: #cfd6e0;
    --store-accent: #ff0a45;
    --store-accent-deep: #c70036;
    --store-accent-soft: #ffe8ef;
    --store-navy: #0e1f43;
    --store-navy-deep: #08152e;
    --store-hero-shadow: 0 30px 80px rgba(14, 31, 67, 0.18);
    --store-card-shadow: 0 18px 40px rgba(17, 26, 45, 0.07);
    --store-soft-shadow: 0 12px 28px rgba(17, 26, 45, 0.05);
    --store-shell-max: 1320px;
}

[dir="rtl"] {
    text-align: right;
}

body {
    font-family: var(--arch-font-sans);
    font-style: normal;
    background:
        radial-gradient(circle at top left, rgba(255, 10, 69, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(14, 31, 67, 0.08), transparent 26%),
        var(--store-bg);
    color: var(--store-ink);
}

button,
input,
select,
textarea,
a {
    font-family: inherit;
    font-style: normal;
}

em,
i {
    font-style: normal;
}

::selection {
    background: rgba(255, 10, 69, 0.16);
    color: var(--store-ink);
}

.site-shell {
    width: min(calc(100% - 2rem), var(--store-shell-max));
    margin-inline: auto;
}

.content-rail,
.content-rail-wide {
    width: 100%;
    margin-inline: auto;
}

.glass-nav {
    background: rgba(248, 249, 252, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(207, 214, 224, 0.75);
}

.material-symbols-outlined {
    display: inline-flex;
    width: 1em;
    min-width: 1em;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
}

.brand-mark {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--store-accent) 0%, var(--store-accent-deep) 100%);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 10, 69, 0.24);
}

.brand-wordmark {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.store-nav-link {
    position: relative;
    padding-bottom: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--store-muted);
    transition: color 0.2s ease;
}

.store-nav-link:hover,
.store-nav-link.is-active {
    color: var(--store-accent-deep);
}

.store-nav-link.is-active::after {
    content: "";
    position: absolute;
    inset: auto 0 -0.2rem 0;
    height: 2px;
    border-radius: 999px;
    background: var(--store-accent);
}

.surface-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--store-line);
    border-radius: 2rem;
    box-shadow: var(--store-soft-shadow);
}

.surface-panel-soft {
    background: rgba(238, 242, 246, 0.9);
    border: 1px solid rgba(220, 226, 234, 0.8);
    border-radius: 1.75rem;
}

.surface-card {
    background: var(--store-surface);
    border: 1px solid rgba(220, 226, 234, 0.9);
    border-radius: 1.5rem;
    box-shadow: var(--store-card-shadow);
}

.shadow-ambient {
    box-shadow: var(--store-soft-shadow);
}

.shadow-ambient-lg {
    box-shadow: var(--store-hero-shadow);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--store-accent-soft);
    color: var(--store-accent-deep);
}

.eyebrow {
    color: var(--store-muted);
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(220, 226, 234, 0.7);
    color: var(--store-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.quote-gradient {
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.14), transparent 12%),
        radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.12), transparent 12%),
        linear-gradient(135deg, #8f0026 0%, #c70036 48%, #07162e 100%);
}

.store-hero {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    background-color: var(--store-navy);
    box-shadow: var(--store-hero-shadow);
}

.store-hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(8, 21, 46, 0.82) 0%, rgba(8, 21, 46, 0.54) 45%, rgba(8, 21, 46, 0.34) 100%), var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.store-hero__inner {
    position: relative;
    z-index: 1;
}

.store-button-primary,
.store-button-secondary,
.store-button-accent,
.store-button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.store-button-primary:hover,
.store-button-secondary:hover,
.store-button-accent:hover,
.store-button-ghost:hover {
    transform: translateY(-1px);
}

.store-button-primary {
    background: linear-gradient(135deg, var(--store-navy) 0%, var(--store-navy-deep) 100%);
    color: #ffffff;
}

.store-button-secondary {
    background: var(--store-surface);
    color: var(--store-ink);
    border: 1px solid var(--store-line);
}

.store-button-accent {
    background: linear-gradient(135deg, var(--store-accent) 0%, var(--store-accent-deep) 100%);
    color: #ffffff;
}

.store-button-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.store-feature-card {
    height: 100%;
    padding: 1.65rem;
}

.store-category-card {
    position: relative;
    overflow: hidden;
    min-height: 15rem;
    border-radius: 1.8rem;
    background: var(--store-surface);
    border: 1px solid var(--store-line);
    box-shadow: var(--store-card-shadow);
}

.store-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(8, 21, 46, 0.05) 0%, rgba(8, 21, 46, 0.58) 100%), var(--category-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}

.store-category-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem;
    color: #ffffff;
}

.store-spec-sheet-card {
    background: linear-gradient(180deg, #11254d 0%, #0a1633 100%);
    color: #ffffff;
}

.store-product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--store-surface);
    border: 1px solid var(--store-line);
    box-shadow: var(--store-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 10, 69, 0.24);
    box-shadow: 0 24px 54px rgba(17, 26, 45, 0.1);
}

.store-product-media {
    background: linear-gradient(180deg, #fafbfc 0%, #eef2f6 100%);
    border-bottom: 1px solid var(--store-line);
}

.store-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.34rem 0.72rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.store-product-tag--accent {
    background: var(--store-accent);
    color: #ffffff;
}

.store-product-tag--soft {
    background: var(--store-accent-soft);
    color: var(--store-accent-deep);
}

.store-product-action {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--store-accent) 0%, var(--store-accent-deep) 100%);
    color: #ffffff;
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-filter-panel {
    position: sticky;
    top: 6.75rem;
}

.store-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    color: var(--store-muted);
    transition: background-color 0.18s ease, color 0.18s ease;
}

.store-filter-link:hover,
.store-filter-link.is-active {
    background: rgba(255, 10, 69, 0.08);
    color: var(--store-accent-deep);
}

.store-product-stage {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(180deg, #16181f 0%, #0f172c 100%);
    min-height: 34rem;
    box-shadow: var(--store-card-shadow);
}

.store-product-stage img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 2.2rem;
}

.store-product-thumb {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--store-line);
    background: #0f172c;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.store-product-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 10, 69, 0.3);
}

.store-product-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.store-tech-grid {
    display: grid;
    gap: 0;
    border: 1px solid var(--store-line);
    border-radius: 1.4rem;
    overflow: hidden;
    background: var(--store-surface);
}

.store-tech-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
}

.store-tech-row + .store-tech-row {
    border-top: 1px solid var(--store-line);
}

.store-tech-cell {
    padding: 0.9rem 1rem;
}

.store-tech-cell + .store-tech-cell {
    border-inline-start: 1px solid var(--store-line);
}

.store-tech-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.store-tech-value {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--store-ink);
}

.store-price-panel {
    padding: 1.5rem;
    border-radius: 1.6rem;
    border: 1px solid var(--store-line);
    background: #f9fbfd;
    box-shadow: var(--store-soft-shadow);
}

.store-price-tier {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--store-line);
    background: var(--store-surface);
}

.store-price-tier.is-highlight {
    border-color: rgba(255, 10, 69, 0.18);
    background: linear-gradient(90deg, rgba(249, 231, 226, 0.8) 0%, #ffffff 100%);
}

.store-qty-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    background: var(--store-surface-soft);
}

.store-qty-wrap button {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--store-ink);
}

.store-qty-wrap input {
    width: 3rem;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
}

.store-note-card {
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #11254d 0%, #0a1633 100%);
    color: #ffffff;
    box-shadow: var(--store-card-shadow);
}

.store-footer {
    margin-top: 5rem;
    background: linear-gradient(180deg, #10254d 0%, #09142c 100%);
    color: #ffffff;
}

.footer-grid-link {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.18s ease;
}

.footer-grid-link:hover {
    color: #ffffff;
}

.whatsapp-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    border-radius: 999px;
    padding: 0.75rem 1rem 0.75rem 0.8rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 24px 42px rgba(18, 140, 126, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 50px rgba(18, 140, 126, 0.34);
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

img[loading="lazy"] {
    opacity: 1;
}

[role="alert"] {
    animation: slideDown 0.26s ease;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #eef2f6;
}

::-webkit-scrollbar-thumb {
    background: rgba(107, 115, 135, 0.35);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 115, 135, 0.54);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .site-shell {
        width: min(calc(100% - 1.5rem), var(--store-shell-max));
    }

    .store-filter-panel {
        position: static;
    }

    .store-product-stage {
        min-height: 24rem;
    }
}

@media (max-width: 767px) {
    .store-hero {
        border-radius: 2rem;
    }

    .store-product-stage {
        min-height: 19rem;
    }

    .store-tech-row {
        grid-template-columns: 1fr;
    }

    .store-tech-cell + .store-tech-cell {
        border-inline-start: 0;
        border-top: 1px solid var(--store-line);
    }

    .whatsapp-fab {
        padding-inline-end: 0.8rem;
    }
}

@media print {
    nav,
    footer,
    aside,
    .no-print {
        display: none !important;
    }

    main {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ==========================================================================
   Architectural storefront layer
   ========================================================================== */

:root {
    --arch-bg: #f8f9fb;
    --arch-surface: #ffffff;
    --arch-surface-soft: #f3f5f8;
    --arch-line: #e2e8f0;
    --arch-ink: #0f172a;
    --arch-muted: #667085;
    --arch-navy: #1d2b44;
    --arch-navy-deep: #07162e;
    --arch-accent-bright: #ff0a45;
    --arch-accent: #c70036;
    --arch-accent-deep: #8f0027;
}

body {
    background: var(--arch-bg);
    color: var(--arch-ink);
}

.site-shell {
    width: min(calc(100% - 2rem), 1920px);
    margin-inline: auto;
}

.glass-nav {
    background: rgba(248, 250, 252, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.94);
}

.arch-header-row {
    display: grid;
    grid-template-columns: minmax(360px, auto) minmax(320px, 1fr) auto;
    align-items: center;
    gap: 2rem;
    min-height: 96px;
}

.arch-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 1.35rem;
}

.arch-brand-logo {
    display: block;
    width: clamp(10rem, 14vw, 15.5rem);
    height: auto;
    border-radius: 0.1rem;
    filter: drop-shadow(0 16px 34px rgba(255, 10, 69, 0.12));
}

.arch-brand-logo + .brand-mark,
.arch-brand-logo ~ .arch-brand-copy,
.arch-footer-old-brand {
    display: none !important;
}

.arch-footer-logo {
    display: block;
    width: min(14.5rem, 100%);
    height: auto;
}

.arch-brand .brand-mark {
    width: 4.4rem;
    height: 4.4rem;
    flex: 0 0 auto;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #ff0a45 0%, #c70036 100%);
    box-shadow: 0 24px 52px rgba(255, 10, 69, 0.18);
}

.arch-brand .brand-mark .material-symbols-outlined {
    font-size: 1.65rem;
}

.arch-brand-copy {
    min-width: 0;
}

.arch-brand-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--arch-navy);
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.9rem, 2vw, 2.55rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.arch-brand .brand-wordmark {
    margin-top: 0.45rem;
    color: #6b7280;
    font-size: clamp(0.7rem, 0.7vw, 0.88rem);
    letter-spacing: 0.24em;
    line-height: 1.1;
}

.arch-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(1.8rem, 2.5vw, 3.6rem);
}

.glass-nav .arch-header-row > .ml-auto {
    min-width: 0;
}

.arch-actions {
    min-width: 0;
}

.arch-search-submit {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--arch-muted);
    cursor: pointer;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.arch-search-submit:hover,
.arch-search-submit:focus-visible {
    background: rgba(199, 0, 54, 0.08);
    color: var(--arch-accent-deep);
    outline: none;
}

.arch-search-submit .material-symbols-outlined {
    font-size: 18px;
}

.arch-search-bar {
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

.arch-search-bar form {
    max-width: 760px;
    margin-inline: auto;
    border-radius: 999px !important;
    box-shadow: none;
}

.arch-search-bar input[name="q"] {
    letter-spacing: 0;
}

/* Auth and admin surfaces follow the sharper architecture used on the homepage. */
.arch-auth-page {
    background: var(--store-bg);
}

.arch-auth-page [class*="rounded-"],
.admin-shell [class*="rounded-"] {
    border-radius: 4px !important;
}

.arch-auth-page .section-kicker,
.arch-auth-page .eyebrow,
.admin-shell .section-kicker,
.admin-shell .eyebrow {
    border-radius: 4px !important;
    letter-spacing: 0.16em;
}

.arch-auth-hero {
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(148, 0, 42, 0.98) 0%, rgba(104, 0, 32, 0.96) 54%, rgba(7, 22, 46, 0.98) 100%) !important;
    box-shadow: none !important;
}

.arch-auth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 22, 46, 0.48) 0%, rgba(7, 22, 46, 0.12) 45%, rgba(7, 22, 46, 0.58) 100%),
        url("/uploads/products/seed_1001_b47c3df0e2.png");
    background-position: center;
    background-size: cover;
    opacity: 0.16;
}

.arch-auth-hero .text-primary {
    color: #ffffff !important;
}

.arch-auth-feature,
.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.hero-stat {
    padding: 1rem;
}

.hero-stat-value {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0;
    color: #ffffff;
}

.hero-stat-label {
    margin-top: 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.arch-auth-panel,
.arch-auth-side-panel {
    border: 1px solid var(--arch-line) !important;
    border-radius: 4px !important;
    background: var(--arch-surface) !important;
    box-shadow: none !important;
}

.arch-auth-input,
.arch-auth-step {
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft) !important;
    box-shadow: none !important;
}

.arch-auth-icon {
    background: rgba(199, 0, 54, 0.08) !important;
    color: var(--arch-accent) !important;
}

.arch-auth-feature .arch-auth-icon {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.arch-auth-chip,
.metric-chip {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid var(--arch-line);
    background: #ffffff;
    color: var(--arch-navy);
    padding: 0 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arch-auth-page input,
.arch-auth-page select,
.arch-auth-page textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--arch-line) !important;
    border-radius: 4px !important;
    background: var(--arch-surface-soft) !important;
    padding: 0.85rem 1rem;
    color: var(--arch-navy-deep);
    box-shadow: none !important;
}

.arch-auth-page input::placeholder,
.arch-auth-page textarea::placeholder {
    color: var(--arch-muted);
    opacity: 0.74;
}

.arch-auth-page input:focus,
.arch-auth-page select:focus,
.arch-auth-page textarea:focus {
    outline: none;
    border-color: rgba(199, 0, 54, 0.42) !important;
    box-shadow: 0 0 0 3px rgba(199, 0, 54, 0.09) !important;
}

.arch-auth-input input {
    min-height: 0;
    border: 0 !important;
    background: transparent !important;
    padding: 0;
    box-shadow: none !important;
}

.arch-auth-page input[type="hidden"],
.arch-auth-page input[type="radio"] {
    width: auto;
    min-height: 0;
    border: 0 !important;
    padding: 0;
}

.arch-auth-submit,
.arch-auth-secondary {
    min-height: 48px;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.arch-auth-submit {
    border: 1px solid var(--arch-accent);
    background: var(--arch-accent) !important;
}

.arch-auth-secondary {
    border: 1px solid var(--arch-line);
    background: #ffffff !important;
}

.admin-shell {
    background: var(--store-bg);
    font-family: "Roboto", sans-serif;
}

.admin-shell > .fixed.inset-0 {
    display: none;
}

.admin-sidebar,
.admin-topbar {
    border-color: var(--arch-line) !important;
    background: rgba(248, 249, 252, 0.96) !important;
    box-shadow: none !important;
}

.admin-main {
    background: var(--store-bg);
}

.admin-brand-logo {
    display: block;
    width: 9.5rem;
    max-width: 100%;
}

.admin-sidebar-panel,
.admin-shell .bg-surface-container-lowest,
.admin-shell .bg-white {
    border: 1px solid var(--arch-line);
    box-shadow: none !important;
}

.admin-sidebar-panel--accent,
.admin-shell .bg-gradient-to-br,
.admin-shell .bg-gradient-to-r {
    background-image: linear-gradient(135deg, var(--arch-accent) 0%, var(--arch-accent-dark) 100%) !important;
}

.admin-nav-link {
    border: 1px solid transparent;
}

.admin-nav-link.bg-primary,
.admin-nav-link:hover {
    border-color: rgba(199, 0, 54, 0.18);
}

.admin-shell input,
.admin-shell select,
.admin-shell textarea,
.admin-shell button,
.admin-shell a {
    border-radius: 4px !important;
}

.admin-shell table {
    border-collapse: collapse;
}

@media (max-width: 767px) {
    .arch-auth-page {
        padding-top: 88px;
        padding-bottom: 3rem;
    }

    .arch-auth-hero-column {
        display: none;
    }

    .arch-auth-page h2 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.05;
    }

    .arch-auth-panel {
        padding: 1.25rem !important;
    }

    .arch-auth-panel > .mb-8 {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .arch-auth-chip,
    .metric-chip {
        min-height: 34px;
        padding-inline: 0.65rem;
        font-size: 0.66rem;
        letter-spacing: 0.08em;
    }

    .arch-auth-submit,
    .arch-auth-secondary {
        width: 100%;
    }

    .arch-auth-side-panel {
        display: none;
    }

    .admin-brand-logo {
        width: 8rem;
    }
}

.arch-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    font-family: inherit;
    font-size: clamp(0.94rem, 0.85vw, 1rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: var(--arch-navy);
    transition: color 0.18s ease;
}

.arch-nav-link:hover,
.arch-nav-link.is-active {
    color: var(--arch-accent-deep);
}

.arch-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 2px;
    background: var(--arch-accent);
}

.arch-nav-menu {
    position: relative;
}

.arch-nav-menu::after {
    content: "";
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: 100%;
    height: 1.25rem;
    z-index: 59;
}

.arch-nav-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.55rem);
    z-index: 60;
    display: grid;
    min-width: 260px;
    transform: translateX(-50%) translateY(0.35rem);
    gap: 0.25rem;
    border: 1px solid var(--arch-line);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.arch-nav-menu:hover .arch-nav-dropdown,
.arch-nav-menu:focus-within .arch-nav-dropdown {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.arch-nav-dropdown-link {
    display: block;
    padding: 0.85rem 0.95rem;
    color: var(--arch-navy);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.arch-nav-dropdown-link:hover,
.arch-nav-dropdown-link.is-active {
    background: var(--arch-surface-soft);
    color: var(--arch-accent);
}

.arch-icon-button,
.arch-utility-button,
.arch-cart-button,
.arch-btn-primary,
.arch-btn-secondary,
.arch-btn-ghost,
.arch-page-button,
.arch-select,
.arch-thumb-button,
.arch-mobile-language-switch,
.arch-mobile-language-option,
.arch-mobile-account-panel,
.arch-mobile-admin-link,
.arch-mobile-account-link,
.arch-mobile-login-link {
    border-radius: 4px;
}

.arch-icon-button,
.arch-utility-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid var(--arch-line);
    background: rgba(255, 255, 255, 0.88);
    color: var(--arch-navy);
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.arch-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 58px;
    padding: 0.82rem 1.2rem;
    background: var(--arch-accent);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
}

.arch-cart-badge {
    display: inline-flex;
    height: 24px;
    min-width: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
    background: #fff;
    color: var(--arch-accent);
    font-size: 0.75rem;
    font-weight: 800;
}

.arch-mobile-language-switch {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-mobile-language-option {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: var(--arch-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.arch-mobile-language-option:hover,
.arch-mobile-language-option.is-active {
    border-color: var(--arch-accent);
    background: var(--arch-accent);
    color: #fff;
}

html[dir="rtl"] .arch-mobile-language-option {
    letter-spacing: 0;
}

.arch-mobile-account-panel {
    display: grid;
    gap: 0.55rem;
    padding: 0.75rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-mobile-account-summary {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
}

.arch-mobile-account-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(199, 0, 54, 0.14);
    background: #fff;
    color: var(--arch-accent);
    font-size: 20px;
}

.arch-mobile-account-name,
.arch-mobile-account-role {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arch-mobile-account-name {
    color: var(--arch-navy-deep);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.15;
}

.arch-mobile-account-role {
    margin-top: 0.15rem;
    color: var(--arch-muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

html[dir="rtl"] .arch-mobile-account-role {
    letter-spacing: 0;
}

.arch-mobile-admin-link,
.arch-mobile-account-link,
.arch-mobile-login-link {
    display: inline-flex;
    min-height: 46px;
    min-width: 0;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid var(--arch-line);
    background: #fff;
    color: var(--arch-navy);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.arch-mobile-admin-link span:last-child,
.arch-mobile-account-link span:last-child,
.arch-mobile-login-link span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.arch-mobile-admin-link .material-symbols-outlined,
.arch-mobile-account-link .material-symbols-outlined,
.arch-mobile-login-link .material-symbols-outlined {
    flex: 0 0 auto;
    font-size: 20px;
}

.arch-mobile-admin-link {
    border-color: var(--arch-accent);
    background: var(--arch-accent);
    color: #fff;
}

.arch-mobile-account-links {
    display: grid;
    gap: 0.45rem;
}

.arch-mobile-account-link--logout {
    color: #b42318;
}

.arch-mobile-admin-link:hover,
.arch-mobile-account-link:hover,
.arch-mobile-login-link:hover {
    border-color: rgba(199, 0, 54, 0.22);
    background: rgba(199, 0, 54, 0.06);
    color: var(--arch-accent-deep);
}

.arch-mobile-admin-link:hover {
    border-color: var(--arch-accent-deep);
    background: var(--arch-accent-deep);
    color: #fff;
}

.arch-page {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 104px;
    padding-bottom: 84px;
}

.arch-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.arch-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.38rem 0.64rem;
    border: 1px solid rgba(199, 0, 54, 0.14);
    background: rgba(199, 0, 54, 0.07);
    color: var(--arch-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.arch-kicker--light,
.arch-kicker--panel {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
}

.arch-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.arch-section-title {
    margin-top: 0.6rem;
    font-family: inherit;
    font-size: clamp(1.75rem, 2.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    color: var(--arch-navy-deep);
}

.arch-section-title--catalog {
    min-width: 0;
    max-width: none;
    margin-top: 0;
    overflow: hidden;
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arch-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--arch-accent);
}

.arch-btn-primary,
.arch-btn-secondary,
.arch-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0 1.1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.arch-btn-primary:hover,
.arch-btn-secondary:hover,
.arch-btn-ghost:hover,
.arch-icon-button:hover,
.arch-utility-button:hover,
.arch-cart-button:hover {
    transform: scale(0.98);
}

.arch-btn-primary {
    background: var(--arch-accent);
    border: 1px solid var(--arch-accent);
    color: #fff;
}

.arch-btn-secondary {
    background: transparent;
    border: 2px solid var(--arch-navy);
    color: var(--arch-navy);
}

.arch-btn-secondary--light {
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.arch-btn-secondary--block,
.arch-btn-primary--wide,
.arch-btn-secondary--wide {
    width: 100%;
}

.arch-btn-primary--small,
.arch-btn-secondary--small {
    min-height: 42px;
    padding-inline: 0.85rem;
    font-size: 0.82rem;
}

.arch-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.arch-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(148, 0, 42, 0.98) 0%, rgba(104, 0, 32, 0.96) 54%, rgba(7, 22, 46, 0.98) 100%);
}

.arch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(7, 22, 46, 0.58) 0%, rgba(7, 22, 46, 0.22) 42%, rgba(7, 22, 46, 0.68) 100%),
        var(--arch-hero-image, none);
    background-position: center;
    background-size: cover;
    opacity: 0.18;
}

.arch-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 10%),
        radial-gradient(circle at 12% 76%, rgba(255, 255, 255, 0.1), transparent 10%);
    pointer-events: none;
}

.arch-hero-brand-watermark {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: clamp(-8rem, -6vw, -2rem);
    width: clamp(24rem, 48vw, 48rem);
    max-width: none;
    opacity: 0.1;
    pointer-events: none;
    transform: translateY(-50%);
}

.arch-hero-accent-sweep {
    position: absolute;
    z-index: 0;
    top: -22%;
    bottom: -22%;
    left: -42%;
    width: 34%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 48%, transparent 100%);
    pointer-events: none;
    transform: skewX(-17deg);
}

.arch-hero-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 1.5rem;
    padding: 2.35rem;
    align-items: center;
}

.arch-hero-copy {
    display: flex;
    max-width: 680px;
    min-width: 0;
    flex-direction: column;
    gap: 1rem;
}

.arch-hero-title,
.arch-detail-title,
.arch-network-title {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
}

.arch-hero-title {
    font-size: clamp(3.1rem, 5.6vw, 5.25rem);
    line-height: 0.95;
}

.arch-hero-text,
.arch-panel-text,
.arch-detail-text,
.arch-catalog-text,
.arch-card-body,
.arch-product-text,
.arch-category-body,
.arch-network-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
}

.arch-hero-text,
.arch-panel-text {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.88);
}

.arch-hero-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    padding: 1.15rem;
}

.arch-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
    .arch-home-page .arch-hero-brand-watermark {
        animation: archHeroLogoReveal 960ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .arch-home-page .arch-hero-accent-sweep {
        animation: archHeroAccentSweep 1150ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .arch-home-page .arch-hero-copy {
        animation: archHeroContentRise 720ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .arch-home-page .arch-hero-panel {
        animation: archHeroContentRise 760ms 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .arch-home-page .arch-product-card--home {
        animation: archProductCardRise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .arch-home-page .arch-product-card--home:nth-child(1) { animation-delay: 90ms; }
    .arch-home-page .arch-product-card--home:nth-child(2) { animation-delay: 140ms; }
    .arch-home-page .arch-product-card--home:nth-child(3) { animation-delay: 190ms; }
    .arch-home-page .arch-product-card--home:nth-child(4) { animation-delay: 240ms; }
    .arch-home-page .arch-product-card--home:nth-child(5) { animation-delay: 290ms; }
    .arch-home-page .arch-product-card--home:nth-child(6) { animation-delay: 340ms; }
    .arch-home-page .arch-product-card--home:nth-child(7) { animation-delay: 390ms; }
    .arch-home-page .arch-product-card--home:nth-child(8) { animation-delay: 440ms; }
}

@keyframes archHeroLogoReveal {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(2rem) scale(0.96);
    }
    100% {
        opacity: 0.1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes archHeroAccentSweep {
    0% {
        opacity: 0;
        transform: translateX(0) skewX(-17deg);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(410%) skewX(-17deg);
    }
}

@keyframes archHeroContentRise {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes archProductCardRise {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.arch-metric-card,
.arch-panel-note {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.arch-metric-value {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
}

.arch-metric-label {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.arch-spec-label,
.arch-price-label,
.arch-filter-label {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--arch-muted);
}

.arch-panel-title {
    margin-top: 0.75rem;
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}

.arch-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.arch-flat-card,
.arch-filter-block,
.arch-catalog-hero,
.arch-empty-state,
.arch-price-panel,
.arch-spec-section,
.arch-detail-actions,
.arch-product-purchase,
.arch-product-card,
.arch-footer,
.arch-sidebar {
    background: var(--arch-surface);
    border: 1px solid var(--arch-line);
}

.arch-flat-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
}

.arch-icon-chip {
    display: grid;
    height: 52px;
    width: 52px;
    flex: 0 0 auto;
    place-items: center;
    background: rgba(255, 10, 69, 0.08);
    color: var(--arch-accent);
    line-height: 1;
}

.arch-icon-chip .material-symbols-outlined {
    display: grid;
    height: 1em;
    width: 1em;
    min-width: 1em;
    place-items: center;
    line-height: 1;
}

.arch-card-title {
    margin-top: 0.75rem;
    font-family: "Roboto", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--arch-navy-deep);
}

.arch-card-body,
.arch-catalog-text,
.arch-detail-text,
.arch-product-text,
.arch-category-body {
    margin-top: 0.65rem;
    color: var(--arch-muted);
}

.arch-category-grid.arch-category-grid--legacy {
    display: none;
}

.arch-collection-block {
    margin-top: 0;
}

.arch-collection-showcase {
    display: grid;
    gap: 1rem;
}

.arch-collection-scene {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: clamp(360px, 48vh, 520px);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: var(--arch-navy-deep);
    background-image:
        linear-gradient(90deg, rgba(7, 22, 46, 0.88) 0%, rgba(88, 0, 28, 0.7) 46%, rgba(7, 22, 46, 0.22) 100%),
        var(--arch-scene-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: clamp(1.35rem, 4vw, 3rem);
}

.arch-collection-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 16%),
        linear-gradient(180deg, rgba(7, 22, 46, 0.05), rgba(7, 22, 46, 0.72));
}

.arch-collection-scene.is-reversed {
    justify-content: flex-end;
    background-image:
        linear-gradient(270deg, rgba(7, 22, 46, 0.9) 0%, rgba(88, 0, 28, 0.72) 48%, rgba(7, 22, 46, 0.24) 100%),
        var(--arch-scene-image, none);
}

.arch-collection-content {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(7, 22, 46, 0.42);
    padding: clamp(1.2rem, 3vw, 2.25rem);
    backdrop-filter: blur(8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.arch-collection-title {
    margin-top: 0.75rem;
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0;
}

.arch-collection-copy {
    margin-top: 0.85rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.6;
}

.arch-collection-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.arch-collection-points span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.48rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arch-collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
    background: var(--arch-accent);
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.arch-collection-link:hover,
.arch-collection-link:focus-visible {
    background: var(--arch-accent-dark);
    transform: translateY(-2px);
}

.arch-category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
}

.arch-category-stack {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 2rem;
}

.arch-category-card,
.arch-spec-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-category-card {
    background-image: var(--arch-category-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.arch-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 22, 46, 0.05) 0%, rgba(7, 22, 46, 0.7) 100%);
}

.arch-category-content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: end;
    gap: 0.75rem;
    padding: 1.5rem;
    color: #fff;
}

.arch-category-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
}

.arch-category-title.is-compact {
    font-size: 1.6rem;
}

.arch-spec-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: end;
    gap: 0.9rem;
    padding: 1.5rem;
    background: var(--arch-navy-deep);
    color: #fff;
}

@media (min-width: 1025px) {
    .arch-hero::before,
    .arch-collection-scene,
    .arch-category-card {
        background-attachment: fixed;
    }
}

@media (max-width: 1024px) {
    .arch-hero::before,
    .arch-collection-scene,
    .arch-category-card {
        background-attachment: scroll;
    }

    .arch-collection-scene {
        min-height: 500px;
        background-image:
            linear-gradient(180deg, rgba(7, 22, 46, 0.78) 0%, rgba(88, 0, 28, 0.72) 100%),
            var(--arch-scene-image, none);
    }

    .arch-collection-scene.is-reversed {
        justify-content: flex-start;
        background-image:
            linear-gradient(180deg, rgba(7, 22, 46, 0.78) 0%, rgba(88, 0, 28, 0.72) 100%),
            var(--arch-scene-image, none);
    }
}

@media (max-width: 767px) {
    .arch-collection-scene {
        min-height: 430px;
        padding: 1.25rem;
    }

    .arch-collection-content {
        padding: 1.25rem;
    }

    .arch-collection-title {
        font-size: clamp(2.4rem, 14vw, 3.25rem);
        line-height: 0.96;
        letter-spacing: 0;
    }

    .arch-collection-copy {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .arch-collection-points {
        display: grid;
        gap: 0.5rem;
    }

    .arch-collection-points span {
        width: fit-content;
    }
}

.arch-spec-card .arch-category-body {
    color: rgba(255, 255, 255, 0.84);
}

.arch-spec-card .arch-btn-secondary:not(.arch-btn-secondary--light) {
    background: #fff;
    border-color: #fff;
    color: var(--arch-navy-deep);
}

.arch-spec-card--tall {
    min-height: 100%;
}

.arch-product-grid {
    display: grid;
    gap: 1.25rem;
}

.arch-product-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.arch-product-grid--catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.arch-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}

.arch-product-thumb {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-product-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.arch-product-thumb--catalog {
    aspect-ratio: 4 / 3;
}

.arch-product-thumb--related {
    aspect-ratio: 4 / 3;
}

.arch-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.arch-product-body--catalog,
.arch-product-body--related {
    gap: 0.75rem;
}

.arch-product-body--catalog {
    justify-content: space-between;
    min-height: auto;
    padding: 1rem;
}

.arch-product-card--catalog .arch-mini-kicker {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
}

.arch-mini-kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--arch-navy);
}

.arch-product-title {
    margin-top: 0.4rem;
    font-family: "Roboto", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    color: var(--arch-navy-deep);
}

.arch-product-title--catalog {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.1rem;
    font-size: 0.98rem;
    line-height: 1.16;
    letter-spacing: 0;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.arch-product-title--catalog a {
    overflow-wrap: inherit;
}

html[dir="rtl"] .arch-section-title--catalog,
html[dir="rtl"] .arch-category-link > span:first-child,
html[dir="rtl"] .arch-product-title--catalog {
    hyphens: none;
}

.arch-product-footer--catalog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.arch-quick-add-form {
    flex-shrink: 0;
}

.arch-quick-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
    color: var(--arch-navy);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.arch-quick-add-button:hover {
    transform: scale(0.98);
    border-color: var(--arch-accent);
    background: var(--arch-accent);
    color: #fff;
}

.arch-product-text--catalog {
    font-size: 0.95rem;
    line-height: 1.7;
}

.arch-price {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0;
    color: var(--arch-accent);
}

.arch-price--hero {
    font-size: clamp(2.8rem, 4vw, 4rem);
    color: var(--arch-navy-deep);
}

.arch-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.arch-product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.arch-product-footer--single {
    justify-content: flex-end;
}

.arch-product-card--related .arch-price-stack {
    display: none;
}

.arch-product-card--related .arch-product-footer {
    justify-content: flex-end;
}

.arch-network-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(148, 0, 42, 0.98) 0%, rgba(104, 0, 32, 0.96) 54%, rgba(7, 22, 46, 0.98) 100%);
    color: #fff;
}

.arch-network-copy {
    max-width: 58rem;
}

.arch-network-title {
    margin-top: 0.7rem;
    font-size: clamp(1.9rem, 3vw, 3.25rem);
    line-height: 1;
}

.arch-contact-page {
    gap: 2rem;
}

.arch-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
    align-items: stretch;
}

.arch-contact-copy,
.arch-contact-summary,
.arch-contact-form,
.arch-contact-side {
    border: 1px solid var(--arch-line);
    background: var(--arch-surface);
}

.arch-contact-copy {
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.arch-contact-title {
    margin-top: 0.9rem;
    max-width: 18ch;
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 0.96;
    color: var(--arch-navy-deep);
}

.arch-contact-lead {
    margin-top: 1rem;
    max-width: 58rem;
    color: var(--arch-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.arch-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.arch-contact-summary {
    display: grid;
    align-content: stretch;
}

.arch-contact-summary > div {
    display: flex;
    min-height: 7rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--arch-line);
}

.arch-contact-summary > div:last-child {
    border-bottom: 0;
}

.arch-contact-summary-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--arch-muted);
}

.arch-contact-summary strong {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1;
    color: var(--arch-navy-deep);
}

.arch-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1rem;
    align-items: start;
}

.arch-contact-form {
    padding: clamp(1.1rem, 2vw, 1.6rem);
}

.arch-contact-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.arch-contact-form-head p {
    max-width: 34rem;
    color: var(--arch-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.arch-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.arch-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.45rem;
}

.arch-field--full {
    grid-column: 1 / -1;
}

.arch-field > span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--arch-muted);
}

.arch-field input,
.arch-field select,
.arch-field textarea {
    width: 100%;
    border: 1px solid var(--arch-line);
    background: #fff;
    color: var(--arch-navy-deep);
    font-size: 0.95rem;
    font-weight: 700;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.arch-field input,
.arch-field select {
    min-height: 46px;
    padding: 0 0.85rem;
}

.arch-field textarea {
    resize: vertical;
    min-height: 7rem;
    padding: 0.85rem;
    line-height: 1.55;
}

.arch-field input:focus,
.arch-field select:focus,
.arch-field textarea:focus {
    border-color: rgba(199, 0, 54, 0.45);
    box-shadow: 0 0 0 3px rgba(199, 0, 54, 0.08);
}

.arch-contact-submit {
    margin-top: 1rem;
}

.arch-contact-side {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;
}

.arch-contact-side-block ul {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    color: var(--arch-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.arch-contact-side-block li {
    padding-inline-start: 0.85rem;
    border-inline-start: 2px solid rgba(199, 0, 54, 0.18);
}

.arch-footer {
    margin-top: 0;
    background: var(--arch-navy-deep);
    color: #fff;
}

.arch-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
}

.arch-footer-title {
    font-family: "Roboto", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.arch-footer-link {
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.16s ease;
}

.arch-footer-link:hover {
    color: #fff;
}

.arch-footer-meta {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.85rem;
}

.arch-whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 1rem 0.8rem 0.8rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 16px 36px rgba(18, 140, 126, 0.24);
}

.arch-catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.arch-catalog-main,
.arch-detail-content {
    min-width: 0;
}

.arch-sidebar {
    position: sticky;
    top: 104px;
}

.arch-filter-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;
}

.arch-filter-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-filter-mobile-toggle {
    display: none;
}

.arch-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.arch-filter-label {
    margin-top: 0;
    color: var(--arch-muted);
}

.arch-filter-list,
.arch-radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.arch-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
    color: var(--arch-navy);
    font-size: 0.94rem;
    font-weight: 700;
}

.arch-category-link > span:first-child {
    min-width: 0;
    overflow-wrap: break-word;
}

.arch-category-link.is-active {
    border-color: rgba(255, 10, 69, 0.28);
    background: rgba(255, 10, 69, 0.06);
    color: var(--arch-accent);
}

.arch-category-count {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--arch-muted);
}

.arch-radio-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--arch-muted);
}

.arch-radio-row input {
    height: 16px;
    width: 16px;
    accent-color: var(--arch-accent);
}

.arch-select {
    min-height: 42px;
    width: 100%;
    border: 1px solid var(--arch-line);
    background: #fff;
    padding: 0 0.9rem;
    color: var(--arch-navy-deep);
    font-size: 0.94rem;
    font-weight: 700;
}

.arch-catalog-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: #fff;
}

.arch-catalog-copy {
    display: flex;
    min-width: 0;
    max-width: none;
    align-items: center;
    gap: 0.85rem;
}

.arch-catalog-copy .arch-kicker {
    flex: 0 0 auto;
    padding: 0.32rem 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.arch-catalog-text {
    min-width: 12rem;
    margin-top: 0;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arch-catalog-meta {
    display: flex;
    min-width: max-content;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.arch-stat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 0.72rem;
    border: 1px solid var(--arch-line);
    background: #fff;
    color: var(--arch-navy);
    font-size: 0.76rem;
    font-weight: 800;
}

.arch-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
}

.arch-empty-state h2 {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--arch-navy-deep);
}

.arch-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 2rem;
    align-items: start;
}

.arch-detail-gallery,
.arch-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.arch-detail-main-media {
    overflow: hidden;
    min-height: 680px;
    border: 1px solid var(--arch-line);
    background: linear-gradient(180deg, #0d1017 0%, #0b1630 100%);
}

.arch-detail-main-media img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.arch-thumb-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.arch-thumb-button {
    overflow: hidden;
    border: 1px solid var(--arch-line);
    background: #fff;
    aspect-ratio: 1 / 1;
}

.arch-thumb-button img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.arch-detail-title {
    color: var(--arch-navy-deep);
    font-size: clamp(3rem, 5vw, 4.8rem);
}

.arch-detail-text {
    color: var(--arch-muted);
}

.arch-spec-section,
.arch-price-panel,
.arch-detail-actions,
.arch-product-purchase {
    padding: 1.5rem;
}

.arch-detail-subhead {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--arch-navy);
}

.arch-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 1rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-spec-item {
    padding: 1rem;
    border-right: 1px solid var(--arch-line);
    border-bottom: 1px solid var(--arch-line);
}

.arch-spec-item:nth-child(2n) {
    border-right: 0;
}

.arch-spec-value {
    display: block;
    margin-top: 0.35rem;
    color: var(--arch-navy-deep);
    font-size: 0.98rem;
    font-weight: 700;
}

.arch-price-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.arch-price-chip {
    display: flex;
    min-width: 160px;
    flex-direction: column;
    align-items: end;
    gap: 0.25rem;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
    padding: 1rem;
}

.arch-price-chip strong {
    font-family: "Roboto", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--arch-navy);
}

.arch-tier-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.arch-tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--arch-line);
    background: #fff;
}

.arch-tier-row strong {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--arch-navy-deep);
}

.arch-tier-row span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.84rem;
    color: var(--arch-muted);
}

.arch-tier-row.is-featured {
    border-color: rgba(255, 10, 69, 0.22);
    background: rgba(255, 10, 69, 0.05);
}

.arch-tier-price {
    font-family: "Roboto", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--arch-accent);
}

.arch-detail-actions {
    gap: 1rem;
}

.arch-product-purchase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-product-purchase-head {
    min-width: 0;
}

.arch-product-purchase-head h2 {
    margin-top: 0.35rem;
    color: var(--arch-navy-deep);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
}

.arch-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    margin-inline-start: 0.5rem;
    transform: translateY(-0.12rem);
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
    padding: 0.32rem 0.45rem;
    color: var(--arch-muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: normal;
}

.arch-response-badge .material-symbols-outlined {
    font-size: 0.95rem;
    line-height: 1;
}

.arch-detail-actions--purchase {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.arch-action-text {
    min-width: 0;
}

.arch-qty-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.arch-qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--arch-line);
    background: var(--arch-surface-soft);
}

.arch-qty-wrap button {
    display: inline-flex;
    height: 52px;
    width: 52px;
    align-items: center;
    justify-content: center;
    color: var(--arch-navy);
}

.arch-qty-wrap input {
    width: 72px;
    border: 0;
    background: transparent;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--arch-navy-deep);
}

.arch-stock-note {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--arch-accent);
}

.arch-related-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: stretch;
}

.arch-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    color: var(--arch-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.arch-product-placeholder {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: var(--arch-surface-soft);
    color: rgba(255, 10, 69, 0.2);
}

.arch-product-placeholder--dark {
    background: linear-gradient(180deg, #16181f 0%, #0f172c 100%);
    color: rgba(255, 255, 255, 0.2);
}

.arch-pager {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.arch-page-button {
    display: inline-flex;
    height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--arch-line);
    background: #fff;
    color: var(--arch-navy);
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.arch-page-button.is-active {
    border-color: var(--arch-accent);
    background: var(--arch-accent);
    color: #fff;
}

/*
 * Some Chromium/Tailwind CDN combinations resolve the primary gradient stops
 * to transparent after hydration. Lock the branded primary gradient combo to a
 * static gradient so admin/store CTA surfaces stay solid.
 */
.bg-gradient-to-r.from-primary.to-primary-container {
    background-color: #c70036 !important;
    background-image: linear-gradient(90deg, #c70036 0%, #8f0027 100%) !important;
}

.bg-gradient-to-br.from-primary.to-primary-container {
    background-color: #c70036 !important;
    background-image: linear-gradient(135deg, #c70036 0%, #8f0027 100%) !important;
}

@media (max-width: 1439px) {
    .arch-header-row {
        grid-template-columns: minmax(280px, auto) minmax(0, 1fr) auto;
        gap: 1.3rem;
    }

    .arch-nav {
        gap: 1.5rem;
    }

    .arch-nav-link {
        font-size: 0.96rem;
    }

    .arch-nav-link--secondary {
        display: none;
    }

    .arch-catalog-layout {
        grid-template-columns: 250px minmax(0, 1fr);
    }
}

@media (max-width: 1699px) {
    .arch-nav-link--secondary {
        display: none;
    }
}

@media (max-width: 1535px) {
    .arch-header-row {
        grid-template-columns: minmax(300px, auto) minmax(0, 1fr) auto;
        gap: 1.35rem;
    }

    .arch-nav {
        gap: 1.8rem;
    }

    .arch-nav-link {
        font-size: 0.98rem;
    }

    .arch-brand .brand-mark {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
    }

    .arch-brand-title {
        font-size: 2.05rem;
    }

    .brand-wordmark {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

}

@media (max-width: 1279px) {
    .arch-header-row {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .glass-nav .arch-nav {
        display: none !important;
    }

    .glass-nav .arch-header-row > .ml-auto > button[onclick="toggleMobileMenu()"] {
        display: inline-flex !important;
    }

    .arch-page {
        gap: 3.5rem;
        padding-top: 96px;
    }

    .arch-hero-body,
    .arch-detail-layout {
        grid-template-columns: 1fr;
    }

    .arch-category-grid,
    .arch-related-grid {
        grid-template-columns: 1fr;
    }

    .arch-catalog-layout {
        grid-template-columns: 1fr;
    }

    .arch-sidebar {
        position: static;
    }
}

@media (max-width: 1023px) {
    .site-shell {
        width: min(calc(100% - 1.5rem), 1920px);
    }

    .arch-page {
        gap: 2.75rem;
        padding-top: 88px;
        padding-bottom: 72px;
    }

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

    .arch-hero-body {
        padding: 2rem;
    }

    .arch-feature-grid,
    .arch-product-grid--home,
    .arch-product-grid--catalog,
    .arch-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arch-network-panel,
    .arch-section-head,
    .arch-price-panel-top,
    .arch-footer-meta {
        flex-direction: column;
        align-items: start;
    }

    .arch-catalog-hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.75rem;
    }

    .arch-catalog-copy {
        flex-wrap: wrap;
        gap: 0.55rem 0.75rem;
    }

    .arch-section-title--catalog,
    .arch-catalog-text {
        flex-basis: 100%;
        white-space: normal;
    }

    .arch-catalog-meta {
        min-width: 0;
        flex-wrap: wrap;
    }

    .arch-contact-hero,
    .arch-contact-layout {
        grid-template-columns: 1fr;
    }

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

    .arch-contact-summary > div {
        min-height: auto;
        border-bottom: 0;
        border-inline-end: 1px solid var(--arch-line);
    }

    .arch-contact-summary > div:last-child {
        border-inline-end: 0;
    }

    .arch-contact-side {
        position: static;
    }
}

@media (max-width: 767px) {
    .arch-header-row {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 76px;
        gap: 0.75rem;
    }

    .arch-brand {
        gap: 0.75rem;
    }

    .arch-brand-logo {
        width: min(11rem, 52vw);
    }

    .arch-brand .brand-mark {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.85rem;
        box-shadow: 0 14px 32px rgba(255, 10, 69, 0.16);
    }

    .arch-brand .brand-mark .material-symbols-outlined {
        font-size: 1rem;
    }

    .arch-brand-title {
        font-size: 1.55rem;
        line-height: 1;
    }

    .arch-brand .brand-wordmark {
        max-width: 14rem;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .arch-icon-button,
    .arch-utility-button {
        min-height: 44px;
        padding: 0 0.8rem;
    }

    .arch-actions {
        gap: 0.45rem !important;
    }

    #mobileMenu .site-shell {
        padding-top: 0.85rem;
        padding-bottom: 1rem;
    }

    .arch-page {
        gap: 2rem;
    }

    .arch-hero-title,
    .arch-detail-title,
    .arch-network-title,
    .arch-section-title {
        letter-spacing: 0;
    }

    .arch-hero-title {
        font-size: clamp(2.2rem, 11vw, 2.5rem);
        line-height: 1;
    }

    .arch-hero-copy {
        gap: 0.75rem;
    }

    .arch-hero-text,
    .arch-panel-text {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .arch-panel-title {
        margin-top: 0.5rem;
        font-size: 1.12rem;
        line-height: 1.08;
    }

    .arch-detail-title {
        font-size: clamp(2rem, 11vw, 2.75rem);
        line-height: 1;
    }

    .arch-kicker {
        max-width: 100%;
        font-size: 0.66rem;
        line-height: 1.35;
    }

    .arch-hero-body,
    .arch-flat-card,
    .arch-filter-block,
    .arch-price-panel,
    .arch-spec-section,
    .arch-detail-actions,
    .arch-product-purchase,
    .arch-product-body,
    .arch-footer,
    .arch-network-panel {
        padding: 1.25rem;
    }

    .arch-hero-body {
        padding: 1rem;
    }

    .arch-hero-panel {
        gap: 0.75rem;
        padding: 0.85rem;
    }

    .arch-catalog-hero {
        padding: 0.78rem;
    }

    .arch-catalog-copy {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .arch-section-title--catalog {
        flex-basis: auto;
        font-size: 1.08rem;
        white-space: nowrap;
    }

    .arch-catalog-text {
        display: none;
    }

    .arch-catalog-meta {
        gap: 0.4rem;
    }

    .arch-stat-pill {
        min-height: 30px;
        padding: 0 0.55rem;
        font-size: 0.68rem;
    }

    .arch-hero-metrics {
        gap: 0.55rem;
    }

    .arch-metric-card,
    .arch-panel-note {
        padding: 0.75rem;
    }

    .arch-metric-value {
        font-size: 1.55rem;
        line-height: 1;
    }

    .arch-panel-note {
        display: none;
    }

    .arch-contact-copy,
    .arch-contact-form,
    .arch-contact-side {
        padding: 1rem;
    }

    .arch-contact-title {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.6rem);
        line-height: 1;
    }

    .arch-contact-lead {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .arch-contact-summary,
    .arch-contact-grid {
        grid-template-columns: 1fr;
    }

    .arch-contact-summary {
        display: none;
    }

    .arch-contact-summary > div {
        min-height: auto;
        padding: 0.95rem;
        border-inline-end: 0;
        border-bottom: 1px solid var(--arch-line);
    }

    .arch-contact-summary > div:last-child {
        border-bottom: 0;
    }

    .arch-contact-form-head {
        align-items: start;
        flex-direction: column;
    }

    .arch-field--full {
        grid-column: auto;
    }

    .arch-metric-label {
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.12em;
    }

    .arch-catalog-layout {
        display: flex;
        flex-direction: column;
    }

    .arch-catalog-main {
        display: contents;
    }

    .arch-catalog-hero {
        order: 1;
    }

    .arch-sidebar {
        order: 2;
        width: 100%;
    }

    .arch-filter-block {
        gap: 1rem;
    }

    .arch-filter-mobile-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }

    .arch-filter-title,
    .arch-filter-body {
        display: none;
    }

    .arch-filter-block.is-open .arch-filter-body {
        display: flex;
    }

    .arch-product-grid--catalog {
        order: 3;
    }

    .arch-pager,
    .arch-empty-state {
        order: 4;
    }

    .arch-feature-grid,
    .arch-product-grid--home,
    .arch-footer-grid,
    .arch-thumb-strip,
    .arch-spec-grid {
        grid-template-columns: 1fr;
    }

    .arch-product-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .arch-product-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .arch-product-body--catalog {
        padding: 0.7rem;
    }

    .arch-product-card--catalog .arch-mini-kicker {
        font-size: 0.48rem;
        letter-spacing: 0.08em;
    }

    .arch-product-title--catalog {
        font-size: 0.82rem;
        line-height: 1.18;
    }

    .arch-quick-add-button {
        width: 2rem;
        height: 2rem;
    }

    .arch-tier-row,
    .arch-qty-form,
    .arch-product-footer {
        flex-direction: column;
        align-items: start;
    }

    .arch-qty-wrap,
    .arch-btn-primary--wide,
    .arch-btn-secondary--wide {
        width: 100%;
    }

    .arch-detail-main-media {
        min-height: 420px;
    }

    .arch-whatsapp-float {
        padding: 0.62rem;
        border-radius: 999px;
    }

    .arch-whatsapp-float > span:first-child {
        height: 2.8rem;
        width: 2.8rem;
    }
}

@media (max-width: 767px) {
    .arch-home-page {
        gap: 1.45rem;
        padding-top: 84px;
        padding-bottom: 2.5rem;
    }

    .arch-home-page .arch-hero {
        min-height: auto;
        border-color: rgba(255, 255, 255, 0.12);
        background:
            linear-gradient(155deg, rgba(160, 0, 45, 0.98) 0%, rgba(107, 0, 38, 0.94) 44%, rgba(7, 22, 46, 0.98) 100%);
    }

    .arch-home-page .arch-hero::before {
        opacity: 0.26;
        background-image:
            linear-gradient(180deg, rgba(7, 22, 46, 0.16) 0%, rgba(7, 22, 46, 0.54) 64%, rgba(7, 22, 46, 0.86) 100%),
            var(--arch-hero-image, none);
        background-position: center top;
    }

    .arch-home-page .arch-hero::after {
        display: none;
    }

    .arch-home-page .arch-hero-brand-watermark {
        top: 34%;
        right: -42%;
        width: clamp(18rem, 86vw, 28rem);
        opacity: 0.08;
    }

    .arch-home-page .arch-hero-accent-sweep {
        display: none;
    }

    .arch-home-page .arch-hero-body {
        display: flex;
        min-height: min(560px, calc(100svh - 112px));
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        gap: 1.1rem;
        padding: 1rem;
    }

    .arch-home-page .arch-hero-copy {
        max-width: none;
        gap: 0.8rem;
        padding-top: 0.15rem;
    }

    .arch-home-page .arch-kicker {
        width: fit-content;
        max-width: 100%;
        letter-spacing: 0.12em;
    }

    .arch-home-page .arch-hero-title {
        max-width: 100%;
        overflow-wrap: break-word;
        font-size: clamp(2.05rem, 10.2vw, 2.62rem);
        line-height: 0.98;
        hyphens: none;
    }

    .arch-home-page .arch-hero-text {
        display: -webkit-box;
        max-width: 23rem;
        overflow: hidden;
        font-size: 0.94rem;
        line-height: 1.48;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .arch-home-page .arch-hero-copy .flex {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        width: 100%;
    }

    .arch-home-page .arch-hero-copy .arch-btn-primary,
    .arch-home-page .arch-hero-copy .arch-btn-ghost {
        min-height: 48px;
        width: 100%;
        justify-content: center;
        padding-inline: 0.9rem;
        text-align: center;
    }

    .arch-home-page .arch-hero-copy .arch-btn-ghost {
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
    }

    .arch-home-page .arch-hero-panel {
        width: 100%;
        min-width: 0;
        gap: 0;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .arch-home-page .arch-hero-metrics {
        display: grid;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-inline: 0;
        overflow: visible;
        padding: 0.1rem 0 0.2rem;
        scroll-snap-type: none;
    }

    .arch-home-page .arch-hero-metrics::-webkit-scrollbar,
    .arch-home-page .arch-feature-grid::-webkit-scrollbar,
    .arch-home-page .arch-collection-showcase::-webkit-scrollbar {
        display: none;
    }

    .arch-home-page .arch-metric-card {
        display: flex;
        min-height: 72px;
        flex: initial;
        flex-direction: column;
        justify-content: center;
        scroll-snap-align: unset;
        padding: 0.72rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .arch-home-page .arch-metric-value {
        font-size: 1.45rem;
    }

    .arch-home-page .arch-metric-label {
        margin-top: 0.32rem;
        font-size: 0.56rem;
        line-height: 1.25;
        letter-spacing: 0.1em;
    }

    .arch-home-page .arch-section-head {
        gap: 0.75rem;
    }

    .arch-home-page .arch-section-title {
        margin-top: 0.45rem;
        font-size: clamp(1.35rem, 7vw, 1.85rem);
        line-height: 1.04;
    }

    .arch-home-page .arch-block {
        overflow: visible;
    }

    .arch-home-page .arch-feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.58rem;
        margin-inline: 0;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .arch-home-page .arch-flat-card {
        display: grid;
        min-height: 94px;
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 0.78rem;
        row-gap: 0.2rem;
        scroll-snap-align: unset;
        padding: 0.78rem;
    }

    .arch-home-page .arch-icon-chip {
        grid-row: 1 / span 2;
        height: 42px;
        width: 42px;
        align-self: center;
        justify-self: center;
    }

    .arch-home-page .arch-card-title {
        margin-top: 0;
        font-size: 1.02rem;
        line-height: 1.1;
    }

    .arch-home-page .arch-card-body {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 0;
        font-size: 0.82rem;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .arch-home-page .arch-collection-showcase {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-inline: 0;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .arch-home-page .arch-collection-scene,
    .arch-home-page .arch-collection-scene.is-reversed {
        display: flex;
        min-height: 224px;
        align-items: stretch;
        justify-content: stretch;
        padding: 0.72rem;
        scroll-snap-align: unset;
        background-image:
            linear-gradient(180deg, rgba(7, 22, 46, 0.06) 0%, rgba(7, 22, 46, 0.86) 100%),
            var(--arch-scene-image, none);
    }

    .arch-home-page .arch-collection-content {
        display: flex;
        width: 100%;
        min-height: 100%;
        flex-direction: column;
        justify-content: flex-end;
        border-color: rgba(255, 255, 255, 0.16);
        background: rgba(7, 22, 46, 0.52);
        padding: 0.82rem;
        box-shadow: none;
        backdrop-filter: blur(6px);
    }

    .arch-home-page .arch-collection-content .arch-kicker {
        max-width: 100%;
        padding: 0.28rem 0.42rem;
        font-size: 0.5rem;
        line-height: 1.25;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .arch-home-page .arch-collection-title {
        margin-top: 0.45rem;
        overflow-wrap: break-word;
        font-size: clamp(1.45rem, 8vw, 1.95rem);
        line-height: 1;
    }

    .arch-home-page .arch-collection-copy {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 0.5rem;
        font-size: 0.78rem;
        line-height: 1.42;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .arch-home-page .arch-collection-points {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.65rem;
    }

    .arch-home-page .arch-collection-points span {
        width: auto;
        max-width: 100%;
        padding: 0.38rem 0.45rem;
        font-size: 0.52rem;
        letter-spacing: 0.08em;
        line-height: 1.2;
        white-space: nowrap;
    }

    .arch-home-page .arch-collection-points span:nth-child(2) {
        display: none;
    }

    html[dir="rtl"] .arch-home-page .arch-collection-content .arch-kicker,
    html[dir="rtl"] .arch-home-page .arch-collection-points span {
        letter-spacing: 0;
    }

    .arch-home-page .arch-collection-link {
        min-height: 38px;
        margin-top: 0.75rem;
        padding: 0.48rem 0.68rem;
        font-size: 0.78rem;
    }

    .arch-home-page .arch-product-card--home:nth-child(n+5) {
        display: none;
    }

    .arch-home-page .arch-product-grid--home {
        gap: 0.65rem;
        align-items: stretch;
    }

    .arch-home-page .arch-product-card--home {
        min-height: 100%;
    }

    .arch-home-page .arch-product-card--home .arch-product-thumb--catalog {
        aspect-ratio: 1 / 0.9;
    }

    .arch-home-page .arch-product-card--home .arch-product-body--catalog {
        display: grid;
        min-height: 88px;
        grid-template-rows: auto minmax(2.25rem, 1fr);
        gap: 0.42rem;
        padding: 0.62rem;
    }

    .arch-home-page .arch-product-card--home .arch-mini-kicker {
        overflow: hidden;
        min-height: 0.75rem;
        max-width: 100%;
        font-size: 0.46rem;
        line-height: 1.15;
        letter-spacing: 0.04em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .arch-home-page .arch-product-card--home .arch-product-title--catalog {
        min-height: 2rem;
        font-size: 0.78rem;
        line-height: 1.18;
    }

    .arch-home-page .arch-product-card--home .arch-product-footer--catalog {
        align-items: end;
        gap: 0.45rem;
    }

    .arch-home-page .arch-network-panel {
        gap: 1rem;
        padding: 1.05rem;
    }

    .arch-home-page .arch-network-title {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
        line-height: 1.04;
    }

    .arch-home-page .arch-network-panel > .flex {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .arch-home-page .arch-network-panel .arch-btn-secondary,
    .arch-home-page .arch-network-panel .arch-btn-ghost {
        justify-content: center;
        width: 100%;
        min-height: 44px;
        text-align: center;
    }

    .arch-footer .site-shell {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .arch-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .arch-footer-grid > div:nth-child(3),
    .arch-footer-grid > div:nth-child(4),
    .arch-footer-grid > div:first-child p {
        display: none;
    }

    .arch-footer-logo {
        width: min(10rem, 52vw);
    }

    .arch-footer-title {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .arch-footer-meta {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .arch-footer-meta > .flex {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-catalog .arch-page,
    .page-product .arch-page {
        gap: 1.35rem;
        padding-top: 84px;
        padding-bottom: 2.75rem;
    }

    .page-catalog .arch-catalog-hero {
        padding: 0.72rem;
    }

    .page-catalog .arch-catalog-copy {
        display: block;
        min-width: 0;
    }

    .page-catalog .arch-catalog-copy .arch-kicker,
    .page-catalog .arch-stat-pill--category,
    .page-catalog .arch-product-category-label {
        display: none;
    }

    .page-catalog .arch-section-title--catalog {
        max-width: 100%;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .page-catalog .arch-catalog-meta {
        min-width: 0;
    }

    .page-catalog .arch-filter-block {
        padding: 0.75rem;
    }

    .page-catalog .arch-filter-mobile-toggle {
        min-height: 44px;
    }

    .page-catalog .arch-category-link {
        align-items: flex-start;
        gap: 0.65rem;
    }

    .page-catalog .arch-category-link > span:first-child {
        line-height: 1.28;
    }

    .page-catalog .arch-product-grid--catalog {
        gap: 0.65rem;
    }

    .page-catalog .arch-product-thumb--catalog {
        aspect-ratio: 1 / 0.86;
    }

    .page-catalog .arch-product-body--catalog {
        padding: 0.62rem;
    }

    .page-catalog .arch-product-footer--catalog {
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-catalog .arch-product-title--catalog {
        min-height: 2.1rem;
        line-height: 1.2;
    }

    .page-product .arch-breadcrumbs {
        gap: 0.32rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.1rem;
        font-size: 0.62rem;
        line-height: 1.4;
        letter-spacing: 0.1em;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .page-product .arch-breadcrumbs::-webkit-scrollbar,
    .page-product .arch-thumb-strip::-webkit-scrollbar {
        display: none;
    }

    .page-product .arch-detail-layout,
    .page-product .arch-detail-gallery,
    .page-product .arch-detail-content {
        gap: 0.85rem;
    }

    .page-product .arch-detail-main-media {
        min-height: 0;
        aspect-ratio: 1 / 0.92;
        background: #ffffff;
    }

    .page-product .arch-detail-main-media img {
        background: #ffffff;
        object-fit: contain;
    }

    .page-product .arch-thumb-strip {
        display: flex;
        grid-template-columns: none;
        gap: 0.55rem;
        overflow-x: auto;
        padding-bottom: 0.05rem;
        scrollbar-width: none;
    }

    .page-product .arch-thumb-button {
        flex: 0 0 4.5rem;
    }

    .page-product .arch-detail-title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 0.98;
    }

    .page-product .arch-detail-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .page-product .arch-detail-content > .space-y-4 .arch-detail-text {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .page-product .arch-spec-section,
    .page-product .arch-price-panel,
    .page-product .arch-detail-actions,
    .page-product .arch-product-purchase {
        padding: 0.95rem;
    }

    .page-product .arch-product-purchase {
        gap: 0.75rem;
    }

    .page-product .arch-product-purchase-head h2 {
        margin-top: 0;
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .page-product .arch-response-badge {
        margin-inline-start: 0.35rem;
        padding: 0.28rem 0.4rem;
        font-size: 0.55rem;
        letter-spacing: 0.07em;
    }

    .page-product .arch-product-purchase .arch-mini-kicker {
        display: none;
    }

    .page-product .arch-detail-actions--purchase {
        padding: 0;
        border: 0;
    }

    .page-product .arch-qty-form,
    .page-product .arch-btn-primary--wide,
    .page-product .arch-btn-secondary--wide {
        min-width: 0;
    }

    .page-product .arch-btn-primary--wide,
    .page-product .arch-btn-secondary--wide {
        flex-wrap: nowrap;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.18;
    }

    .page-product .arch-action-text,
    .page-product .arch-stock-note,
    .page-product .arch-detail-title {
        overflow-wrap: anywhere;
    }

    .page-product .arch-action-text {
        display: block;
        min-width: 0;
        text-align: center;
    }

    .page-product .arch-spec-grid {
        margin-top: 0.75rem;
    }

    .page-product .arch-spec-item {
        padding: 0.72rem;
    }

    .page-product .arch-spec-label,
    .page-product .arch-stock-note {
        font-size: 0.58rem;
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    .page-product .arch-spec-value {
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .page-product .arch-price-panel-top {
        gap: 0.75rem;
    }

    .page-product .arch-price-panel .arch-mini-kicker {
        display: none;
    }

    .page-product .arch-price-panel .arch-category-title.is-compact {
        font-size: 1.35rem;
        line-height: 1.02;
    }

    .page-product .arch-price-chip {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
        padding: 0.75rem;
    }

    .page-product .arch-tier-list {
        gap: 0.55rem;
        margin-top: 0.8rem;
    }

    .page-product .arch-tier-row {
        padding: 0.7rem;
    }

    .page-product .arch-tier-row span {
        margin-top: 0.25rem;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .page-product .arch-qty-form {
        gap: 0.75rem;
    }

    .page-product .arch-qty-wrap {
        justify-content: space-between;
    }

    .page-product .arch-btn-primary--wide,
    .page-product .arch-btn-secondary--wide {
        justify-content: center;
        min-height: 46px;
        padding-inline: 0.8rem;
        text-align: center;
    }

    .page-product .arch-block {
        overflow: hidden;
    }

    .page-product .arch-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .page-product .arch-related-grid .arch-spec-card {
        display: none;
    }

    .page-product .arch-product-card--related .arch-product-thumb--related {
        aspect-ratio: 1 / 0.9;
    }

    .page-product .arch-product-card--related .arch-product-body--related {
        padding: 0.68rem;
    }

    .page-product .arch-product-card--related .arch-mini-kicker,
    .page-product .arch-product-card--related .arch-product-text,
    .page-product .arch-product-card--related .arch-product-footer {
        display: none;
    }

    .page-product .arch-product-card--related .arch-product-title--catalog {
        font-size: 0.8rem;
        line-height: 1.16;
    }

    .page-cart .arch-quote-page {
        padding-top: 5.25rem;
        padding-bottom: 3rem;
    }

    .page-cart .arch-quote-page .site-shell {
        width: min(calc(100% - 1.5rem), 1920px);
    }

    .page-cart .arch-quote-hero,
    .page-cart .arch-quote-empty,
    .page-cart .arch-cart-summary {
        padding: 1.1rem !important;
        border-radius: 4px !important;
    }

    .page-cart .arch-quote-hero h1 {
        font-size: clamp(1.75rem, 8.5vw, 2.25rem);
        line-height: 1.06;
    }

    .page-cart .arch-quote-hero p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .page-cart .arch-quote-hero .metric-chip {
        min-height: 34px;
        padding-inline: 0.65rem;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .page-cart .arch-quote-continue {
        min-height: 46px;
        border: 1px solid var(--arch-line);
        border-radius: 4px !important;
        box-shadow: none;
    }

    .page-cart .arch-quote-empty {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .page-cart .arch-quote-empty > div:first-child {
        height: 4rem;
        width: 4rem;
        border-radius: 4px !important;
    }

    .page-cart .arch-quote-empty h2 {
        margin-top: 1rem;
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        line-height: 1.05;
    }

    .page-cart .arch-quote-empty p {
        line-height: 1.55;
    }

    .page-cart .arch-cart-form-grid {
        gap: 1.1rem;
    }

    .page-cart .arch-cart-list {
        gap: 0.8rem;
    }

    .page-cart .arch-cart-item {
        padding: 0.75rem !important;
        border-radius: 4px !important;
    }

    .page-cart .arch-cart-item-layout {
        display: grid;
        grid-template-columns: 5.8rem minmax(0, 1fr);
        gap: 0.75rem;
        align-items: start;
    }

    .page-cart .arch-cart-thumb {
        height: auto;
        width: auto;
        aspect-ratio: 1 / 1;
        border-radius: 4px !important;
    }

    .page-cart .arch-cart-item-content {
        min-width: 0;
        gap: 0.65rem;
    }

    .page-cart .arch-cart-item-head {
        gap: 0.55rem;
    }

    .page-cart .arch-cart-item-copy > p {
        display: none;
    }

    .page-cart .arch-cart-item-copy .info-chip.bg-green-50 {
        display: none;
    }

    .page-cart .arch-cart-item-title {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.98rem;
        line-height: 1.15;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .page-cart .arch-cart-item-head > button {
        position: absolute;
        top: 0.55rem;
        inset-inline-end: 0.55rem;
        height: 2rem;
        width: 2rem;
        border-radius: 4px !important;
    }

    .page-cart .arch-cart-item {
        position: relative;
    }

    .page-cart .arch-cart-item-controls {
        gap: 0.55rem;
    }

    .page-cart .arch-cart-qty-box,
    .page-cart .arch-cart-note {
        padding: 0.7rem !important;
        border-radius: 4px !important;
    }

    .page-cart .arch-cart-note {
        display: none;
    }

    .page-cart .qty-selector {
        width: 100%;
        justify-content: space-between;
        border-radius: 4px !important;
        box-shadow: none;
    }

    .page-cart .arch-cart-list-actions {
        gap: 0.75rem;
    }

    .page-cart .arch-cart-list-actions a,
    .page-cart .arch-cart-list-actions button {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .page-cart .arch-cart-summary-wrap {
        order: -1;
    }

    .page-cart .arch-cart-summary {
        position: static;
    }

    .page-cart .arch-cart-summary h2 {
        margin-top: 0.8rem;
        font-size: 1.45rem;
    }

    .page-cart .arch-cart-summary [class*="rounded-"] {
        border-radius: 4px !important;
    }

    .page-cart .arch-cart-summary textarea {
        min-height: 7rem;
        border-radius: 4px !important;
        box-shadow: none;
    }

    .page-product .arch-whatsapp-float,
    .page-cart .arch-whatsapp-float,
    .page-login .arch-whatsapp-float,
    .page-register .arch-whatsapp-float {
        display: none;
    }
}

@media (max-width: 480px) {
    .arch-brand .brand-wordmark {
        display: none;
    }

    .arch-brand-title {
        font-size: 1.35rem;
    }

    .arch-icon-button,
    .arch-utility-button {
        min-height: 42px;
        padding: 0 0.68rem;
    }
}
