:root {
    --bg: #050506;
    --surface: #0f1013;
    --surface-2: #17181d;
    --text: #f4f4f5;
    --muted: #a1a1aa;
    --line: #24242c;
    --brand: #e4bc56;
    --brand-strong: #c8941e;
    --brand-deep: #8a6111;
    --brand-glow: rgba(228, 188, 86, 0.34);
    --accent: #e4bc56;
    --danger: #dc2626;
    --success: #059669;
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    --radius: 16px;
}

body.light-theme {
    --bg: #eef1f7;
    --surface: #ffffff;
    --surface-2: #f5f7fc;
    --text: #131927;
    --muted: #606a82;
    --line: #d7deeb;
    --shadow: 0 10px 24px rgba(18, 30, 58, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, #191919, transparent 42%), var(--bg);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.74s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.74s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.74s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

body.light-theme {
    background: radial-gradient(circle at top right, #d8dfef, transparent 42%), var(--bg);
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 2.5rem));
    margin: 0 auto;
}

main {
    min-height: calc(100vh - 260px);
}

.page-section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.section-copy {
    color: var(--muted);
    max-width: 720px;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(228, 188, 86, 0.24);
    background:
        linear-gradient(110deg, rgba(10, 12, 18, 0.94), rgba(8, 10, 16, 0.92)),
        radial-gradient(circle at 85% -30%, rgba(228, 188, 86, 0.22), transparent 60%);
    backdrop-filter: blur(12px);
}

body.light-theme .top-nav {
    border-bottom-color: rgba(15, 23, 42, 0.12);
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.95)),
        radial-gradient(circle at 86% -24%, rgba(15, 23, 42, 0.12), transparent 62%);
}

.top-nav .container {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.mobile-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(228, 188, 86, 0.35);
    background: rgba(228, 188, 86, 0.08);
    color: #f9e2a4;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 30;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 340px);
    height: 100vh;
    padding: 1rem 0.9rem;
    background:
        linear-gradient(140deg, rgba(7, 10, 16, 0.98), rgba(11, 13, 20, 0.96)),
        radial-gradient(circle at 90% -10%, rgba(228, 188, 86, 0.22), transparent 58%);
    border-right: 1px solid rgba(228, 188, 86, 0.24);
    transform: translateX(-104%);
    transition: transform 0.28s ease;
    z-index: 31;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.85rem;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(228, 188, 86, 0.3);
    background: rgba(228, 188, 86, 0.08);
    color: #f9e2a4;
}

.mobile-nav-links {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.mobile-nav-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.68rem 0.72rem;
    border-radius: 12px;
    border: 1px solid rgba(228, 188, 86, 0.14);
    background: rgba(8, 12, 18, 0.55);
    color: #e7ebf5;
    font-weight: 600;
}

.mobile-nav-links a .material-symbols-outlined {
    font-size: 1.1rem;
    color: #f4d583;
}

.mobile-nav-actions {
    display: grid;
    gap: 0.5rem;
}

body.mobile-nav-open {
    overflow: hidden;
}

body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
}

body.light-theme .mobile-nav-toggle {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

body.light-theme .mobile-nav-drawer {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98)),
        radial-gradient(circle at 90% -10%, rgba(15, 23, 42, 0.12), transparent 58%);
    border-right-color: rgba(15, 23, 42, 0.14);
}

body.light-theme .mobile-nav-close {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

body.light-theme .mobile-nav-links a {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
}

body.light-theme .mobile-nav-links a .material-symbols-outlined {
    color: #0f172a;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 1.15rem;
    color: #f8fafc;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.brand span {
    color: var(--brand);
}

.brand-image img {
    height: auto;
    object-fit: contain;
}

.header-logo-img,
.footer-logo-img {
    width: var(--logo-desktop, 140px);
    max-width: 100%;
    height: auto;
}

.header-logo-img {
    width: auto;
    max-width: var(--logo-desktop, 140px);
    height: 44px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #d7dbe6;
    font-weight: 600;
    transition: color 0.22s ease;
}

.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-strong));
    transition: width 0.24s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

body.light-theme .brand {
    color: #0f172a;
    text-shadow: none;
}

body.light-theme .nav-links a {
    color: #334155;
}

body.light-theme .nav-links a.active,
body.light-theme .nav-links a:hover {
    color: #0f172a;
}

.hero {
    padding: 5.5rem 0;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(140deg, #111116 0%, #0a0a0d 100%);
    box-shadow: var(--shadow);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--brand-strong);
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn,
button,
input[type="submit"] {
    border: 0;
    border-radius: 12px;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1.1rem;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover,
button:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-primary-sm,
button.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 55%, var(--brand-deep) 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 10px 20px rgba(144, 102, 20, 0.28);
}

.btn-primary:hover,
.btn-primary-sm:hover,
button.btn-primary:hover {
    background: linear-gradient(135deg, #f0ca67 0%, #d5a736 55%, #966e1f 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 14px 24px rgba(144, 102, 20, 0.32);
}

body.light-theme .btn-primary,
body.light-theme .btn-primary-sm,
body.light-theme button.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 55%, var(--brand-deep) 100%);
    color: #ffffff;
}

body.light-theme .btn-primary:hover,
body.light-theme .btn-primary-sm:hover,
body.light-theme button.btn-primary:hover {
    background: linear-gradient(135deg, #f0ca67 0%, #d5a736 55%, #966e1f 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 14px 24px rgba(144, 102, 20, 0.32);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
}

.btn-danger {
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.1);
    color: #fca5a5;
}

.btn-danger:hover {
    background: rgba(220, 38, 38, 0.2);
}

.kpi-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.kpi {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem;
    background: var(--surface);
}

.kpi strong {
    display: block;
    font-size: 1.3rem;
}

.kpi span {
    color: var(--muted);
    font-size: 0.84rem;
}

.card,
.glass-card,
.admin-card,
.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.glass-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(11, 14, 21, 0.72);
    border-color: rgba(228, 188, 86, 0.24);
    backdrop-filter: blur(10px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.product-showcase {
    background:
        radial-gradient(circle at 92% 6%, rgba(212, 175, 55, 0.1), transparent 30%),
        transparent;
}

.product-head .eyebrow {
    margin-bottom: 0.65rem;
}

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

.product-highlight-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-highlight-card:hover {
    transform: translateY(-8px) rotateX(1deg);
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.55);
}

.product-highlight-card.glass-card,
.why-shell.glass-card,
.why-card.glass-card,
.split-content.glass-card,
.review-card.glass-card,
.faq-item.glass-card,
.contact-hub.glass-card {
    background:
        linear-gradient(150deg, rgba(16, 20, 30, 0.82), rgba(10, 12, 18, 0.76)),
        rgba(8, 11, 17, 0.58);
    border-color: rgba(228, 188, 86, 0.26);
    backdrop-filter: blur(10px);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card {
    overflow: hidden;
    background: linear-gradient(160deg, #11131a, #0d1016);
}

.product-img-wrapper {
    aspect-ratio: 4 / 3;
    background: var(--surface-2);
}

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

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.product-info p {
    color: var(--muted);
    font-size: 0.94rem;
    min-height: 3.2rem;
}

.product-meta {
    color: var(--brand-strong);
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.product-card-foot {
    margin-top: 0.7rem;
    display: grid;
    gap: 0.55rem;
}

.product-hover-cta {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.08);
    color: #ffffff;
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.product-hover-cta-block {
    width: 100%;
    justify-content: center;
    padding: 0.58rem 0.7rem;
}

.product-hover-cta .material-symbols-outlined {
    font-size: 0.95rem;
}

.product-hover-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #b8932b);
    transition: width 0.32s ease;
    z-index: -1;
}

.product-card-link:hover .product-hover-cta::before {
    width: 100%;
}

.products-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.products-hero-inner {
    padding: clamp(2rem, 7vw, 4.2rem) 0;
    max-width: 860px;
}

.products-hero-inner h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0.65rem;
    color: #f8fafc;
}

.products-hero-inner p {
    color: #d5d9e4;
    max-width: 720px;
}

.products-page-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.3rem;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 84px;
    padding: 1.1rem;
    background: linear-gradient(160deg, #11131a, #0f1118);
}

.products-sidebar h3 {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.products-category-list {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    max-height: calc(100vh - 200px);
    overflow: auto;
    padding-right: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(241, 205, 108, 0.78) rgba(255, 255, 255, 0.08);
    scroll-behavior: smooth;
}

.products-category-list::-webkit-scrollbar {
    width: 10px;
}

.products-category-list::-webkit-scrollbar-track {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.22);
}

.products-category-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(10, 13, 20, 0.3);
    background-clip: padding-box;
    background: linear-gradient(180deg, rgba(248, 220, 140, 0.96), rgba(204, 146, 22, 0.95));
    box-shadow:
        0 0 0 1px rgba(255, 236, 170, 0.24),
        0 10px 22px rgba(236, 182, 63, 0.22),
        inset 0 0 12px rgba(255, 255, 255, 0.28);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.products-category-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 232, 159, 1), rgba(217, 162, 45, 1));
    box-shadow:
        0 0 0 1px rgba(255, 236, 170, 0.3),
        0 12px 26px rgba(236, 182, 63, 0.3),
        inset 0 0 14px rgba(255, 255, 255, 0.34);
    transform: scaleX(1.02);
}

.products-category-list a {
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 0.58rem 0.68rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.01);
}

.products-category-list a strong {
    color: #f5d67a;
    font-size: 0.78rem;
}

.products-category-list a.active,
.products-category-list a:hover {
    border-color: rgba(228, 188, 86, 0.45);
    background: rgba(228, 188, 86, 0.08);
    color: #ffffff;
}

.products-main-area {
    min-width: 0;
}

[data-products-ajax].is-loading {
    opacity: 0.72;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.products-toolbar h2 {
    font-size: 1.05rem;
}

.products-modern-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.2rem;
}

.products-modern-grid .product-card-link {
    height: 100%;
}

.product-modern-card {
    overflow: hidden;
    background: linear-gradient(162deg, #11141d 0%, #0b0e15 100%);
    border-color: rgba(228, 188, 86, 0.14);
    height: 100%;
    border-radius: 18px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(228, 188, 86, 0.42);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.48);
}

.product-modern-media {
    position: relative;
}

.product-modern-media img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-link:hover .product-modern-media img {
    transform: scale(1.05);
}

.product-modern-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 6, 10, 0.02) 26%, rgba(4, 6, 10, 0.64) 100%),
        radial-gradient(circle at 86% 10%, rgba(228, 188, 86, 0.24), transparent 40%);
}

.product-modern-chip {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    border: 1px solid rgba(228, 188, 86, 0.42);
    background: rgba(6, 10, 16, 0.78);
    color: #f9e2a4;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.22rem 0.58rem;
    z-index: 2;
}

.product-card-price-chip {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 2;
    border: 1px solid rgba(228, 188, 86, 0.45);
    border-radius: 999px;
    background: rgba(10, 14, 22, 0.88);
    color: #ffe4a6;
    padding: 0.25rem 0.58rem;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.products-modern-grid .product-info {
    padding: 1.1rem 1rem 1rem;
}

.products-modern-grid .product-info h3 {
    font-size: 1.12rem;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.products-modern-grid .product-info p {
    font-size: 0.92rem;
    min-height: 2.8rem;
}

.products-modern-grid .product-card-foot {
    margin-top: 0.9rem;
    grid-template-columns: 1fr;
}

.products-empty {
    grid-column: 1/-1;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

.products-pagination {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.products-page-pills {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.page-pill {
    text-decoration: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    border-radius: 10px;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.page-pill.active,
.page-pill:hover {
    border-color: rgba(228, 188, 86, 0.45);
    background: rgba(228, 188, 86, 0.1);
    color: #fff;
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, 1fr);
    gap: 1rem;
    padding: 1rem;
    align-items: start;
}

.product-top-intro {
    padding: 1rem;
    margin-bottom: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(10, 15, 24, 0.95), rgba(8, 12, 20, 0.92));
}

.product-top-intro h1 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.product-top-intro p {
    margin: 0;
    color: #d2dae8;
    font-size: 1rem;
}

.product-trade-main {
    display: grid;
    gap: 0.85rem;
}

.product-trade-gallery {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.55rem;
}

.product-trade-gallery.is-single-image {
    grid-template-columns: minmax(0, 1fr);
}

.product-trade-media {
    border-radius: 14px;
}

.product-trade-media-main {
    position: relative;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), rgba(7, 10, 15, 0.95));
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 420px;
    max-height: 520px;
}

.product-trade-header {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem;
    background: #10131a;
}

.product-trade-header h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.product-trade-subtitle {
    color: #cad3e2;
    font-size: 0.95rem;
}

.product-trade-block {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.product-trade-block h3 {
    padding: 0.72rem 0.85rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
    background: #0d1016;
}

.product-spec-grid {
    display: grid;
    grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
}

.product-spec-grid > div {
    padding: 0.62rem 0.82rem;
    border-bottom: 1px solid var(--line);
}

.product-spec-grid .spec-label {
    border-right: 1px solid var(--line);
    color: #9eabc1;
    font-weight: 600;
    background: rgba(8, 11, 16, 0.78);
}

.product-spec-grid .spec-value {
    color: #e5ebf5;
    background: rgba(12, 15, 22, 0.72);
}

.product-trade-block p {
    padding: 0.82rem;
    color: #d2dae8;
}

.product-table-grid {
    display: grid;
    gap: 0;
}

.product-table-row {
    display: grid;
    grid-template-columns: minmax(130px, 0.48fr) minmax(160px, 0.9fr) minmax(130px, 0.48fr) minmax(160px, 0.9fr);
}

.product-table-row.single {
    grid-template-columns: minmax(130px, 0.48fr) minmax(0, 1fr);
}

.product-table-row > div {
    padding: 0.62rem 0.75rem;
    border-bottom: 1px solid var(--line);
}

.product-table-grid .table-label {
    border-right: 1px solid var(--line);
    color: #9eabc1;
    background: rgba(8, 11, 16, 0.78);
    font-weight: 500;
}

.product-table-grid .table-value {
    border-right: 1px solid var(--line);
    color: #f1f5ff;
    background: rgba(12, 15, 22, 0.72);
    font-weight: 600;
}

.product-table-grid .table-value:nth-child(4n) {
    border-right: 0;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.product-gallery-thumbs-vertical {
    align-content: start;
}

.product-thumb {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #0f131c;
    padding: 0;
}

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

.product-thumb.active {
    border-color: rgba(228, 188, 86, 0.75);
    box-shadow: 0 0 0 1px rgba(228, 188, 86, 0.36);
}

.product-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(228, 188, 86, 0.48);
    background: rgba(10, 14, 22, 0.82);
    color: #ffe3a3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.product-main-nav:hover {
    transform: translateY(-50%) scale(1.08);
    border-color: rgba(255, 214, 122, 0.9);
    background: rgba(15, 22, 34, 0.95);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.product-main-nav:active {
    transform: translateY(-50%) scale(0.96);
}

.product-main-nav.prev {
    left: 0.75rem;
}

.product-main-nav.next {
    right: 0.75rem;
}

.product-main-nav .material-symbols-outlined {
    font-size: 1.45rem;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    padding: 0;
    min-height: 0 !important;
    max-height: 100%;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        filter 0.28s ease;
}

.product-main-image.single-main-image {
    object-fit: contain !important;
    max-width: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), rgba(7, 10, 15, 0.25));
}

.product-main-image.is-changing {
    opacity: 0.22;
    transform: scale(0.985);
    filter: blur(1px);
}

.product-trade-side {
    position: sticky;
    top: 84px;
}

.product-trade-data-stack {
    grid-column: 1 / 2;
    display: grid;
    gap: 0.85rem;
}

.product-trade-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem;
    background: linear-gradient(168deg, rgba(11, 15, 22, 0.96), rgba(8, 11, 18, 0.94));
    display: grid;
    gap: 0.82rem;
}

.tier-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.55rem;
}

.tier-price-item {
    border: 1px solid rgba(228, 188, 86, 0.25);
    border-radius: 10px;
    padding: 0.58rem 0.62rem;
    background: rgba(228, 188, 86, 0.08);
    display: grid;
    gap: 0.18rem;
}

.tier-price-item small {
    color: #fbdd96;
    font-weight: 600;
}

.tier-price-item strong {
    font-size: 1.2rem;
    color: #fff3cd;
    line-height: 1.2;
}

.tier-price-item span {
    color: #d2dbeb;
    font-size: 0.82rem;
}

.product-trade-variations h4 {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
}

.variation-list {
    display: grid;
    gap: 0.46rem;
}

.variation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.5rem 0.62rem;
    background: rgba(13, 16, 24, 0.78);
}

.variation-row span {
    color: #9eabc1;
    font-weight: 600;
}

.variation-row strong {
    color: #f2f7ff;
}

.variation-fallback {
    color: var(--muted);
    font-size: 0.9rem;
}

.product-trade-meta {
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
    display: grid;
    gap: 0.28rem;
}

.product-trade-meta p {
    font-size: 0.89rem;
    color: #d2dae8;
}

.product-trade-actions {
    display: grid;
    gap: 0.5rem;
}

.product-trade-actions .btn {
    width: 100%;
    justify-content: center;
    color: #ffffff;
}

.btn-sample {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 201, 92, 0.8);
    background: linear-gradient(130deg, #f2be4d, #d28a0d);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(210, 138, 13, 0.35);
}

.btn-sample::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.38), transparent 70%);
    transform: translateX(-120%);
    animation: sampleShine 2.2s ease-in-out infinite;
}

@keyframes sampleShine {
    0% { transform: translateX(-120%); }
    60% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

.product-detail-media {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #0f1118;
    height: 100%;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    min-height: clamp(260px, 38vw, 520px);
    object-fit: cover;
}

.product-trade-media-main .product-main-image {
    min-height: 0 !important;
    max-height: 100%;
    object-fit: cover !important;
}

.whatsapp-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 211, 102, 0.65);
    background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.26), rgba(18, 140, 78, 0.2)),
        rgba(8, 18, 12, 0.48);
    color: #ecfff3;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 12px 22px rgba(15, 110, 62, 0.3);
    backdrop-filter: blur(8px);
    animation: whatsappBlink 1.8s ease-in-out infinite;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22), transparent 70%);
    transform: translateX(-120%);
    animation: whatsappShine 2.8s ease-in-out infinite;
    pointer-events: none;
}

.whatsapp-btn:hover {
    border-color: rgba(37, 211, 102, 0.9);
    background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.34), rgba(18, 140, 78, 0.28)),
        rgba(8, 18, 12, 0.64);
    color: #ffffff;
}

.whatsapp-btn i {
    font-size: 1rem;
    color: #8ff0b6;
}

@keyframes whatsappBlink {
    0%,
    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.16),
            0 12px 22px rgba(15, 110, 62, 0.28);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 0 2px rgba(37, 211, 102, 0.25),
            0 16px 28px rgba(15, 110, 62, 0.42);
    }
}

@keyframes whatsappShine {
    0% {
        transform: translateX(-120%);
    }
    55% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(120%);
    }
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
}

.price-unit {
    font-size: 0.78rem;
    margin-left: 0.28rem;
    color: var(--muted);
    font-weight: 500;
}

.form-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.products-title {
    margin: 0;
}

.products-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
}

.products-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    align-items: center;
}

.products-csv-form {
    display: grid;
    grid-template-columns: minmax(230px, 280px) auto;
    gap: 0.5rem;
    align-items: center;
}

.csv-dropzone {
    position: relative;
    border: 1px dashed rgba(212, 175, 55, 0.55);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(18, 20, 27, 0.95), rgba(10, 11, 16, 0.95));
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.csv-dropzone:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-1px);
}

.csv-dropzone.drag-over {
    border-color: rgba(212, 175, 55, 0.86);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18) inset;
}

.csv-dropzone .material-symbols-outlined {
    color: #e7c571;
}

.csv-dropzone-copy {
    display: grid;
    gap: 0.12rem;
}

.csv-dropzone-copy strong {
    font-size: 0.8rem;
}

.csv-file-name {
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.csv-file-clear {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.64);
    background: rgba(20, 8, 9, 0.9);
    color: #fecdd3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.csv-file-clear .material-symbols-outlined {
    font-size: 0.78rem;
}

.csv-file-clear.is-hidden,
.file-dropzone-clear.is-hidden,
.image-remove-btn.is-hidden {
    display: none !important;
}

.js-csv-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.products-csv-form input[type="file"] {
    max-width: 210px;
}

.products-status {
    padding: 0.72rem 0.9rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.products-status.success {
    border-color: rgba(5, 150, 105, 0.35);
    background: rgba(5, 150, 105, 0.08);
}

.products-status.error {
    border-color: rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.08);
}

.products-table-wrap {
    padding: 1rem;
}

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

.products-image-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface-2);
}

.products-row-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-danger-soft {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.products-empty {
    text-align: center;
    color: var(--muted);
}

.products-form-shell {
    padding: 1rem;
}

.products-pro-shell {
    padding: 1rem;
}

.products-pro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
    gap: 0.95rem;
}

.products-pro-main {
    display: grid;
    gap: 0.72rem;
}

.products-pro-side {
    display: grid;
    gap: 0.72rem;
    align-content: start;
}

.products-pro-section {
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(165deg, rgba(15, 18, 28, 0.95), rgba(10, 13, 20, 0.95)),
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.08), transparent 42%);
    padding: 0.82rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.products-pro-section h4 {
    margin-bottom: 0.58rem;
    font-size: 0.98rem;
    color: #ebf0fa;
}

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

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

.products-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.products-form-main {
    min-width: 0;
}

.products-form-media {
    min-width: 0;
}

.products-form-media .upload-card {
    height: 100%;
}

.product-repeat-shell {
    display: grid;
    gap: 0.52rem;
}

.repeat-body {
    display: grid;
    gap: 0.45rem;
}

.repeat-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 0.45rem;
    align-items: center;
}

.repeat-row-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(140px, 0.8fr) auto;
}

.repeat-row .btn {
    white-space: nowrap;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.6rem;
}

.admin-gallery-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(11, 14, 22, 0.78);
    padding: 0.45rem;
    display: grid;
    gap: 0.4rem;
    position: relative;
}

.admin-gallery-item img {
    width: 100%;
    height: 92px;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-remove-existing {
    top: 9px;
    right: 9px;
}

.custom-order-hero {
    min-height: clamp(380px, 58vh, 520px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
}

.custom-order-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(228, 188, 86, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(5, 8, 14, 0.28), rgba(5, 8, 14, 0.82));
    z-index: -1;
}

.custom-order-hero-minimal {
    max-width: 760px;
}

.custom-order-hero-minimal h1 {
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 0.48rem;
    max-width: 16ch;
}

.custom-order-hero-minimal p {
    color: #d9deea;
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
    max-width: 58ch;
}

.custom-order-hero-card-zone {
    margin-top: -2.15rem;
    position: relative;
    z-index: 3;
}

.custom-order-hero-brief {
    padding: clamp(1rem, 2.5vw, 1.4rem);
    border-color: rgba(228, 188, 86, 0.28);
    background:
        linear-gradient(130deg, rgba(8, 12, 18, 0.74), rgba(9, 13, 21, 0.58)),
        rgba(8, 11, 17, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 32px rgba(0, 0, 0, 0.34);
}

.custom-order-hero-brief h2 {
    font-size: clamp(1.45rem, 2.9vw, 2.25rem);
    line-height: 1.16;
    margin: 0.24rem 0 0.45rem;
    max-width: 24ch;
}

.custom-order-hero-brief > p {
    color: #d9deea;
    margin-bottom: 0.82rem;
    max-width: 72ch;
}

.custom-order-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 0.62rem;
}

.custom-order-highlight {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.62rem 0.7rem;
    border-color: rgba(228, 188, 86, 0.24);
    background: rgba(8, 12, 18, 0.55);
}

.custom-order-highlight .material-symbols-outlined {
    font-size: 1.04rem;
    color: #f4d583;
}

.custom-order-highlight p {
    margin: 0;
    color: #ebeff8;
    font-size: 0.86rem;
}

.custom-order-cap-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: 0.8rem;
}

.custom-order-cap-card {
    padding: 1rem;
    border-color: rgba(228, 188, 86, 0.2);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.12), transparent 52%),
        rgba(8, 11, 17, 0.5);
}

.custom-order-cap-card h3 {
    margin: 0.6rem 0 0.32rem;
}

.custom-order-cap-card p {
    color: var(--muted);
}

.custom-order-pricing-shell {
    padding: clamp(1rem, 2.4vw, 1.5rem);
    border-color: rgba(228, 188, 86, 0.28);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.17), transparent 38%),
        linear-gradient(145deg, rgba(11, 15, 24, 0.92), rgba(8, 11, 18, 0.9));
}

.custom-order-factor-grid {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.7rem;
}

.custom-order-factor {
    padding: 0.78rem 0.82rem;
    border-radius: 14px;
    border: 1px solid rgba(228, 188, 86, 0.22);
    background: rgba(9, 12, 18, 0.62);
}

.custom-order-factor h3 {
    font-size: 1.02rem;
    margin-bottom: 0.16rem;
}

.custom-order-factor p {
    color: #d4dae8;
    font-size: 0.9rem;
}

.custom-order-note {
    margin-top: 0.82rem;
    border-top: 1px solid rgba(228, 188, 86, 0.2);
    padding-top: 0.82rem;
    color: #f3e2b1;
}

.custom-order-process-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    gap: 0.75rem;
}

.custom-order-step {
    padding: 0.88rem;
    border-color: rgba(228, 188, 86, 0.2);
    background:
        linear-gradient(145deg, rgba(10, 13, 21, 0.86), rgba(8, 11, 17, 0.74));
    position: relative;
}

.custom-order-step-no {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #15161b;
    background: linear-gradient(145deg, #f1d17d, #d9a729);
    margin-bottom: 0.46rem;
}

.custom-order-step h3 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.custom-order-step p {
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .products-pro-grid {
        grid-template-columns: 1fr;
    }

    .products-form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .product-trade-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs-vertical {
        grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
        max-height: none;
    }

    .product-table-row,
    .product-table-row.single {
        grid-template-columns: minmax(120px, 0.6fr) minmax(0, 1fr);
    }

    .product-table-row .table-value {
        border-right: 0;
    }

    .product-trade-media-main {
        min-height: 320px;
        max-height: 420px;
    }
}

@media (max-width: 700px) {
    .products-form-grid-3,
    .products-form-grid-2 {
        grid-template-columns: 1fr;
    }

    .product-card-price-chip {
        top: 0.45rem;
        right: 0.45rem;
        font-size: 0.72rem;
        padding: 0.22rem 0.45rem;
    }
}

.custom-order-form-shell {
    padding: clamp(1rem, 2.8vw, 1.6rem);
    border-color: rgba(228, 188, 86, 0.28);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.15), transparent 36%),
        linear-gradient(145deg, rgba(10, 14, 22, 0.92), rgba(7, 10, 16, 0.92));
    max-width: 980px;
    margin-inline: auto;
}

.custom-order-form-head {
    margin-bottom: 0.88rem;
}

.custom-order-form-shell form {
    display: grid;
    gap: 0.2rem;
}

.custom-order-form-shell input,
.custom-order-form-shell select,
.custom-order-form-shell textarea {
    border-color: rgba(228, 188, 86, 0.24);
    background: rgba(7, 10, 16, 0.72);
}

.custom-order-form-shell input:focus,
.custom-order-form-shell select:focus,
.custom-order-form-shell textarea:focus {
    outline: none;
    border-color: rgba(228, 188, 86, 0.58);
    box-shadow: 0 0 0 3px rgba(228, 188, 86, 0.17);
}

.custom-order-form-note {
    display: block;
    margin-top: 0.4rem;
    color: #d9ddc8;
    font-size: 0.83rem;
}

.contact-hero {
    min-height: clamp(360px, 56vh, 500px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.contact-hero-inner {
    max-width: 760px;
}

.contact-hero-inner h1 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.08;
    margin-bottom: 0.55rem;
}

.contact-hero-inner p {
    color: #dde2ef;
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    max-width: 62ch;
}

.contact-detail-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 0.82rem;
}

.contact-detail-card {
    padding: 0.95rem;
    border-color: rgba(228, 188, 86, 0.22);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.12), transparent 55%),
        rgba(8, 11, 17, 0.52);
}

.contact-detail-card .section-icon {
    margin-bottom: 0.62rem;
}

.contact-detail-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.04rem;
}

.contact-detail-card p {
    color: var(--muted);
    margin-bottom: 0.68rem;
    min-height: 48px;
}

.contact-detail-card .btn {
    width: 100%;
    justify-content: center;
}

.contact-map-shell {
    padding: clamp(1rem, 2.6vw, 1.5rem);
    border-color: rgba(228, 188, 86, 0.26);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.14), transparent 40%),
        linear-gradient(148deg, rgba(10, 14, 22, 0.92), rgba(7, 10, 16, 0.9));
}

.contact-map-wrap {
    margin-top: 0.85rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(228, 188, 86, 0.25);
}

.contact-map-wrap iframe {
    width: 100%;
    height: min(430px, 56vh);
    border: 0;
    display: block;
}

.contact-map-note {
    margin-top: 0.72rem;
    color: #efdca4;
}

.contact-form-shell {
    padding: clamp(1rem, 2.8vw, 1.55rem);
    border-color: rgba(228, 188, 86, 0.26);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.13), transparent 38%),
        linear-gradient(145deg, rgba(9, 13, 20, 0.94), rgba(7, 10, 16, 0.9));
    max-width: 980px;
    margin-inline: auto;
}

.contact-form-head {
    margin-bottom: 0.84rem;
}

.contact-form-shell input,
.contact-form-shell textarea {
    border-color: rgba(228, 188, 86, 0.24);
    background: rgba(7, 10, 16, 0.72);
}

.contact-form-shell input:focus,
.contact-form-shell textarea:focus {
    outline: none;
    border-color: rgba(228, 188, 86, 0.58);
    box-shadow: 0 0 0 3px rgba(228, 188, 86, 0.16);
}

body.light-theme .custom-order-hero::before {
    background:
        radial-gradient(circle at 78% 12%, rgba(15, 23, 42, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(246, 250, 255, 0.26), rgba(238, 243, 252, 0.72));
}

body.light-theme .contact-hero-inner p {
    color: #2f3a4e;
}

body.light-theme .contact-detail-card {
    border-color: rgba(15, 23, 42, 0.14);
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 55%),
        #ffffff;
}

body.light-theme .contact-map-shell,
body.light-theme .contact-form-shell {
    border-color: rgba(15, 23, 42, 0.16);
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 40%),
        linear-gradient(145deg, #ffffff, #f5f8fd);
}

body.light-theme .contact-map-wrap {
    border-color: rgba(15, 23, 42, 0.16);
}

body.light-theme .contact-map-note {
    color: #334155;
}

body.light-theme .contact-form-shell input,
body.light-theme .contact-form-shell textarea {
    border-color: rgba(15, 23, 42, 0.16);
    background: #ffffff;
    color: #0f172a;
}

body.light-theme .custom-order-hero-brief {
    border-color: rgba(15, 23, 42, 0.18);
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.84)),
        #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 14px 26px rgba(18, 30, 58, 0.12);
}

body.light-theme .custom-order-hero-minimal p,
body.light-theme .custom-order-hero-brief > p {
    color: #2f3a4e;
}

body.light-theme .custom-order-highlight {
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(15, 23, 42, 0.06);
}

body.light-theme .custom-order-highlight p {
    color: #1c2434;
}

body.light-theme .custom-order-cap-card {
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 52%),
        #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .custom-order-pricing-shell,
body.light-theme .custom-order-form-shell {
    border-color: rgba(15, 23, 42, 0.16);
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 36%),
        linear-gradient(145deg, #ffffff, #f5f8fd);
}

body.light-theme .custom-order-factor {
    border-color: rgba(15, 23, 42, 0.14);
    background: #ffffff;
}

body.light-theme .custom-order-factor p,
body.light-theme .custom-order-note {
    color: #334155;
}

body.light-theme .custom-order-note {
    border-top-color: rgba(15, 23, 42, 0.14);
}

body.light-theme .custom-order-step {
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

body.light-theme .custom-order-step-no {
    color: #ffffff;
    background: linear-gradient(145deg, #0f172a, #1e293b);
}

body.light-theme .custom-order-form-shell input,
body.light-theme .custom-order-form-shell select,
body.light-theme .custom-order-form-shell textarea {
    border-color: rgba(15, 23, 42, 0.16);
    background: #ffffff;
    color: #0f172a;
}

body.light-theme .custom-order-form-note {
    color: #475569;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.form-group {
    margin-bottom: 0.95rem;
}

label {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #111216;
    border-radius: 12px;
    font-family: inherit;
    color: var(--text);
    padding: 0.72rem 0.85rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

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

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

th {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.sidebar {
    border-right: 1px solid var(--line);
    background: #0b0b0f;
    padding: 1.4rem 1rem;
}

.sidebar nav {
    margin-top: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    text-decoration: none;
    color: var(--muted);
    margin-bottom: 0.22rem;
}

.nav-item:hover,
.nav-item.active {
    background: #16161c;
    color: var(--brand-strong);
}

.admin-main {
    padding: 1.4rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-card {
    padding: 1rem;
}

.stat-card h4 {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.stat-card .value {
    font-size: 1.6rem;
    font-weight: 700;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.footer {
    border-top: 1px solid rgba(228, 188, 86, 0.2);
    margin-top: 2rem;
    padding: 2.4rem 0 1.2rem;
    color: #cfd4df;
    font-size: 0.9rem;
    background:
        radial-gradient(circle at 8% 0%, rgba(228, 188, 86, 0.12), transparent 34%),
        #090c12;
}

body.light-theme .footer {
    border-top-color: rgba(15, 23, 42, 0.14);
    color: #334155;
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 23, 42, 0.08), transparent 34%),
        #f8fafc;
}

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

.footer-block {
    border: 1px solid rgba(228, 188, 86, 0.18);
    border-radius: 14px;
    padding: 0.95rem;
    background: rgba(8, 11, 17, 0.45);
}

.footer-brand {
    font-size: 1.08rem;
    margin-bottom: 0.42rem;
    display: inline-flex;
}

.footer-brand img {
    object-fit: contain;
}

.footer-block h4 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: #f9e2a4;
}

.footer-block p {
    color: #c7cedd;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: grid;
    gap: 0.48rem;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #d8deea;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact li {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
}

.footer-contact .material-symbols-outlined {
    font-size: 1rem;
    color: #f2cc72;
}

.footer-subscribe {
    display: flex;
    gap: 0.48rem;
}

.footer-subscribe input {
    min-width: 0;
}

.footer-social {
    margin-top: 0.72rem;
    display: flex;
    gap: 0.42rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f4d98f;
    border: 1px solid rgba(228, 188, 86, 0.35);
    background: rgba(228, 188, 86, 0.08);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(228, 188, 86, 0.2);
}

.footer-bottom p {
    color: #a9b3c6;
}

body.light-theme .footer-block {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.8);
}

body.light-theme .footer-block h4 {
    color: #0f172a;
}

body.light-theme .footer-block p,
body.light-theme .footer-links a,
body.light-theme .footer-contact a,
body.light-theme .footer-bottom p {
    color: #334155;
}

body.light-theme .footer-contact .material-symbols-outlined {
    color: #0f172a;
}

body.light-theme .footer-social a {
    border-color: rgba(15, 23, 42, 0.2);
    background: #ffffff;
    color: #0f172a;
}

body.light-theme .footer-social a:hover {
    background: #0f172a;
    color: #ffffff;
}

body.light-theme .footer-bottom {
    border-top-color: rgba(15, 23, 42, 0.12);
}

.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.58rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-pending {
    background: #fff7ed;
    color: #9a3412;
}

.badge-processing {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-shipped {
    background: #ecfeff;
    color: #0e7490;
}

.badge-delivered {
    background: #ecfdf3;
    color: #166534;
}

.badge-cancelled {
    background: #fef2f2;
    color: #b91c1c;
}

#alert-container {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 80;
    display: grid;
    gap: 0.55rem;
}

.custom-alert {
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(18, 18, 26, 0.95), rgba(10, 10, 15, 0.96));
    color: #f4f6fb;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
    padding: 0.8rem 0.95rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.24s ease;
    backdrop-filter: blur(4px);
}

.custom-alert.show {
    opacity: 1;
    transform: translateX(0);
}

.alert-success {
    border-left: 4px solid #10b981;
}

.alert-error {
    border-left: 4px solid #ef4444;
}

body.light-theme .custom-alert {
    background: #0f1218;
    border-color: #2a3342;
    color: #ffffff;
}

.hero-cover {
    position: relative;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(212, 175, 55, 0.22), transparent 42%);
    pointer-events: none;
}

.hero-cover-content {
    max-width: 920px;
    padding: clamp(2rem, 7vw, 5.2rem) 0;
}

.hero-cover h1 {
    font-size: clamp(2rem, 5.4vw, 4.1rem);
    line-height: 1.04;
    margin-bottom: 0.9rem;
    color: #f7f8fb;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-cover p {
    max-width: 760px;
    color: #d4d4d8;
}

.hero-subtitle-rich {
    max-width: 760px;
    color: #d4d4d8;
    margin-bottom: 1.2rem;
}

.hero-subtitle-rich p {
    color: inherit;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-kpi-row {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 0.7rem;
}

.hero-kpi {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    backdrop-filter: blur(8px);
    transform: translateZ(0);
}

.hero-kpi:hover {
    border-color: rgba(212, 175, 55, 0.48);
    transform: translateY(-3px);
    transition: 0.22s ease;
}

.hero-kpi strong {
    display: block;
    font-size: 1.25rem;
    color: #f7f8fb;
}

.hero-kpi span {
    color: #d4d4d8;
    font-size: 0.82rem;
}

.home-section-head {
    margin-bottom: 1rem;
}

.section-alt {
    background: #09090d;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

body.light-theme .section-alt {
    background: #f4f6fb;
}

.why-shell {
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 42%),
        linear-gradient(120deg, #0e1016 0%, #0a0b11 100%);
}

.why-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.why-media {
    overflow: hidden;
}

.why-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 0.9rem;
    margin: 1rem 0 1.1rem;
}

.why-card {
    padding: 1rem;
    background: linear-gradient(160deg, #11131b, #0f1218);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.why-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.08rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.value-grid,
.industry-grid,
.capability-grid,
.timeline-grid,
.testimonial-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 0.9rem;
}

.value-card,
.industry-card,
.capability-card,
.timeline-card,
.testimonial-card,
.faq-card {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.value-card::after,
.industry-card::after,
.capability-card::after,
.timeline-card::after,
.testimonial-card::after,
.faq-card::after {
    content: "";
    position: absolute;
    inset: auto -28% -68% auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 66%);
    pointer-events: none;
}

.value-card:hover,
.industry-card:hover,
.capability-card:hover,
.timeline-card:hover,
.testimonial-card:hover,
.faq-card:hover {
    transform: translateY(-5px) rotateX(1.5deg);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.5);
}

.value-card h3,
.industry-card h3,
.capability-card h3,
.timeline-card h3,
.faq-card h3 {
    margin-bottom: 0.45rem;
}

.value-card p,
.industry-card p,
.capability-card p,
.timeline-card p,
.testimonial-card p,
.faq-card p {
    color: var(--muted);
}

.timeline-step {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.45rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f9e2a4;
    margin-bottom: 0.45rem;
}

.visual-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.9rem;
}

.showcase-tile {
    position: relative;
    min-height: 240px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #111218;
    box-shadow: var(--shadow);
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-tilt {
    transform-style: preserve-3d;
    transition: transform 0.25s ease;
}

.image-tilt:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
}

.image-tilt:hover img {
    transform: scale(1.06);
}

.showcase-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
    color: #f5f5f5;
    font-weight: 600;
}

.showcase-overlay .material-symbols-outlined {
    color: #f8dd8a;
}

.stats-3d {
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.2), transparent 35%),
        linear-gradient(150deg, #101015, #0b0b10);
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.66rem 0.72rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(0, 0, 0, 0.34);
    color: #e4e4e7;
    font-size: 0.88rem;
}

.stat-pill .material-symbols-outlined {
    color: #f8dd8a;
}

.results-band {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.results-grid article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #111218;
    padding: 0.75rem;
}

.results-grid strong {
    display: block;
    font-size: 1.35rem;
    color: var(--brand);
}

.results-grid span {
    color: var(--muted);
    font-size: 0.86rem;
}

.testimonial-card h4 {
    margin-top: 0.7rem;
    font-size: 0.93rem;
    color: #e4e4e7;
}

.cta-shell {
    border-color: rgba(212, 175, 55, 0.38);
}

.newsletter-row {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.newsletter-row input {
    flex: 1;
    min-width: 260px;
}

.parallax-break {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: grid;
    place-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.parallax-inner {
    position: relative;
    overflow: hidden;
    width: min(1060px, 100%);
    padding: 1.35rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(10, 10, 12, 0.42));
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.45);
}

.parallax-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -70px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 70%);
    pointer-events: none;
}

.parallax-inner h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.6rem;
}

.parallax-inner p {
    color: #d4d4d8;
}

.parallax-copy .eyebrow {
    margin-bottom: 0.8rem;
}

.parallax-copy p {
    max-width: 620px;
    margin-bottom: 1rem;
}

.parallax-bullets {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.parallax-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.3);
}

.parallax-bullet .material-symbols-outlined {
    color: #f7df90;
    font-size: 1.2rem;
    margin-top: 0.08rem;
}

.parallax-bullet h4 {
    font-size: 0.96rem;
    margin-bottom: 0.1rem;
    color: #f8fafc;
}

.parallax-bullet p {
    margin: 0;
    color: #cfd6e1;
    font-size: 0.84rem;
}

.parallax-metrics {
    display: grid;
    gap: 0.65rem;
}

.parallax-metric {
    padding: 0.72rem 0.78rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(0, 0, 0, 0.4);
}

.parallax-metric strong {
    display: block;
    font-size: 1.38rem;
    color: #f6df95;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.parallax-metric span {
    color: #d4d4d8;
    font-size: 0.86rem;
}

.parallax-metric i {
    margin-top: 0.55rem;
    display: block;
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.parallax-metric i::after {
    content: "";
    display: block;
    height: 100%;
    width: var(--fill, 60%);
    border-radius: 999px;
    background: linear-gradient(90deg, #f4d06f, #d4af37);
}

.split-stack {
    display: grid;
    gap: 1rem;
}

.story-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08), transparent 34%),
        transparent;
}

.story-head {
    margin-bottom: 1.15rem;
}

.story-head .section-title {
    max-width: 760px;
}

.story-head .section-copy {
    max-width: 820px;
}

.story-stack .split-row {
    gap: 1rem;
}

.split-content .eyebrow {
    align-self: flex-start;
    width: auto;
    max-width: max-content;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    align-items: stretch;
}

.split-row.reverse .split-media {
    order: 2;
}

.split-row.reverse .split-content {
    order: 1;
}

.split-media {
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.split-row:hover .split-media img {
    transform: scale(1.04);
}

.split-content {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #11131a 0%, #0d0f15 100%);
}

.split-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    margin-bottom: 0.55rem;
    line-height: 1.22;
}

.split-content p {
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.rich-copy p {
    color: #d4d9e4;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.7rem;
}

.rich-copy p:last-child {
    margin-bottom: 1rem;
}

.story-stack .split-content .btn {
    align-self: flex-start;
}

.story-card {
    border-color: rgba(212, 175, 55, 0.2);
}

.story-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    flex-wrap: nowrap;
}

.story-card-head .eyebrow {
    margin-bottom: 0;
    white-space: nowrap;
}

.story-step {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.24rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    color: #f7df90;
    background: rgba(212, 175, 55, 0.12);
    font-weight: 700;
    white-space: nowrap;
}

.story-points {
    display: grid;
    gap: 0.42rem;
    margin-bottom: 1rem;
}

.story-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #dbe2f0;
    font-size: 0.87rem;
}

.story-points .material-symbols-outlined {
    font-size: 1rem;
    color: #f7df90;
}

.story-card .btn {
    border-color: rgba(212, 175, 55, 0.42);
    background: rgba(212, 175, 55, 0.08);
}

.story-card .btn:hover {
    background: rgba(212, 175, 55, 0.18);
}

.contact-hub-wrap {
    padding-top: 0;
}

.premium-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.about-hero-inner {
    max-width: 820px;
    padding: clamp(2.2rem, 8vw, 5rem) 0;
}

.about-hero-inner h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.04;
    margin-bottom: 0.7rem;
    color: #f8fafc;
}

.about-hero-inner p {
    color: #d7dbe6;
    max-width: 720px;
    margin-bottom: 1.2rem;
}

.about-story-wrap {
    padding-bottom: 3.4rem;
}

.about-owner-wrap {
    padding-top: 0;
}

.about-owner-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: stretch;
    max-width: 1120px;
    margin-inline: auto;
    background:
        radial-gradient(circle at top left, rgba(228, 188, 86, 0.16), transparent 44%),
        linear-gradient(150deg, rgba(12, 15, 24, 0.94), rgba(9, 12, 18, 0.9));
}

.about-owner-media {
    height: 100%;
}

.about-owner-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
}

.about-owner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 68ch;
}

.about-owner-content .eyebrow,
.about-story-content .eyebrow {
    width: fit-content;
    max-width: 100%;
}

.about-owner-content blockquote {
    border-left: 3px solid rgba(228, 188, 86, 0.52);
    padding-left: 0.85rem;
    color: #dce2ef;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0.6rem 0 0.9rem;
}

.about-owner-sign strong {
    display: block;
    color: #f7df90;
    font-size: 1.03rem;
}

.about-owner-sign span {
    color: #cdd5e6;
    font-size: 0.9rem;
}

.about-manager-wrap {
    padding-top: 0;
}

.about-owner-shell--manager {
    grid-template-columns: 1fr 300px;
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.16), transparent 44%),
        linear-gradient(150deg, rgba(12, 15, 24, 0.94), rgba(9, 12, 18, 0.9));
}

.about-owner-shell--manager .about-owner-content {
    max-width: 100%;
}

.about-contact-icons {
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.about-contact-icons a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(228, 188, 86, 0.34);
    background: rgba(228, 188, 86, 0.1);
    color: #f7df90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-contact-icons a:hover {
    transform: translateY(-2px);
    border-color: rgba(228, 188, 86, 0.62);
    background: rgba(228, 188, 86, 0.2);
    color: #ffffff;
}

.about-story-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: stretch;
    max-width: 1120px;
    margin-inline: auto;
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.15), transparent 42%),
        linear-gradient(150deg, rgba(14, 17, 27, 0.94), rgba(9, 11, 18, 0.9));
}

.about-story-media {
    height: 100%;
}

.about-story-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 540px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
}

.about-story-content {
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 68ch;
}

.about-metric-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.about-metric {
    text-align: center;
    padding: 0.72rem 0.55rem;
    background: rgba(255, 255, 255, 0.03);
}

.about-metric strong {
    display: block;
    font-size: 1.3rem;
    color: #f7df90;
    line-height: 1.2;
}

.about-metric span {
    font-size: 0.8rem;
    color: #d1d6e2;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 0.9rem;
}

.about-value-card {
    padding: 1rem;
    background: rgba(8, 11, 17, 0.45);
    border-color: rgba(228, 188, 86, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(228, 188, 86, 0.44);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
}

.about-value-card h3 {
    margin: 0.55rem 0 0.35rem;
}

.about-value-card p {
    color: var(--muted);
}

.about-timeline {
    display: grid;
    gap: 0.72rem;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: start;
    gap: 0.9rem;
    padding: 0.9rem;
    background: rgba(8, 11, 17, 0.42);
    border-color: rgba(228, 188, 86, 0.2);
}

.about-timeline-year {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f7df90;
    border: 1px solid rgba(228, 188, 86, 0.36);
    border-radius: 999px;
    text-align: center;
    padding: 0.35rem 0.5rem;
    background: rgba(228, 188, 86, 0.08);
}

.about-timeline-item h3 {
    margin-bottom: 0.2rem;
}

.about-timeline-item p {
    color: var(--muted);
}

.about-cta {
    text-align: center;
    padding: clamp(1.2rem, 3vw, 1.9rem);
    background:
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.2), transparent 40%),
        linear-gradient(150deg, rgba(11, 14, 23, 0.92), rgba(8, 10, 16, 0.92));
    border-color: rgba(228, 188, 86, 0.3);
}

.about-cta h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.5rem);
    margin: 0.3rem 0 0.5rem;
}

.about-cta p {
    color: #d6dae6;
    max-width: 760px;
    margin: 0 auto 1rem;
}

.contact-hub {
    position: relative;
    overflow: hidden;
    padding: clamp(1.1rem, 2.4vw, 1.6rem);
    background-size: cover;
    background-position: center;
    border-color: rgba(212, 175, 55, 0.34);
}

.contact-hub::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.26), transparent 32%),
        linear-gradient(120deg, rgba(2, 4, 9, 0.86), rgba(7, 10, 16, 0.7));
    pointer-events: none;
}

.contact-hub-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 1rem;
    align-items: start;
}

.contact-hub-info h2 {
    max-width: 620px;
}

.contact-points {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.65rem;
}

.contact-point {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    background: rgba(6, 9, 15, 0.48);
    backdrop-filter: blur(8px);
}

.contact-point .material-symbols-outlined {
    color: #f7df90;
}

.contact-svg {
    width: 22px;
    height: 22px;
    display: inline-flex;
    color: #f7df90;
}

.contact-svg svg {
    width: 100%;
    height: 100%;
}

.contact-point strong {
    font-size: 0.9rem;
}

.contact-point p {
    color: #d7dbe5;
    font-size: 0.85rem;
    margin: 0;
}

.contact-hub-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(6, 8, 13, 0.62);
    backdrop-filter: blur(12px);
}

.contact-hub-form h3 {
    margin-bottom: 0.8rem;
    color: #f5f7fc;
    font-size: 1.05rem;
}

.contact-hub-form textarea {
    min-height: 132px;
}

.input-icon-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(7, 10, 16, 0.72);
    padding: 0.48rem 0.6rem;
}

.input-icon-row .material-symbols-outlined {
    color: #d1d5e2;
    font-size: 1.1rem;
}

.input-icon-row input,
.input-icon-row textarea {
    border: 0;
    background: transparent;
    padding: 0.2rem 0.1rem;
    color: #f5f7fc;
}

.input-icon-area {
    align-items: flex-start;
}

.review-marquee {
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.review-marquee::before,
.review-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.review-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.review-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.review-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    animation: reviewSlide 42s linear infinite;
}

.review-marquee:hover .review-track {
    animation-play-state: paused;
}

.review-card {
    width: 350px;
    padding: 1rem;
    background: linear-gradient(160deg, #111218, #0d0e13);
}

body.light-theme .review-card {
    background: linear-gradient(160deg, #ffffff, #f3f6fc);
}

body.light-theme .product-highlight-card.glass-card,
body.light-theme .why-shell.glass-card,
body.light-theme .why-card.glass-card,
body.light-theme .split-content.glass-card,
body.light-theme .review-card.glass-card,
body.light-theme .faq-item.glass-card,
body.light-theme .contact-hub.glass-card {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.9)),
        rgba(255, 255, 255, 0.86);
    border-color: rgba(15, 23, 42, 0.15);
}

body.light-theme .product-showcase {
    background:
        radial-gradient(circle at 92% 6%, rgba(15, 23, 42, 0.08), transparent 30%),
        transparent;
}

body.light-theme .products-sidebar {
    background: linear-gradient(160deg, #ffffff, #f4f7fd);
}

body.light-theme .products-category-list a {
    background: #ffffff;
    color: #334155;
    border-color: #dbe3f1;
}

body.light-theme .products-category-list a.active,
body.light-theme .products-category-list a:hover {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

body.light-theme .products-category-list a strong {
    color: #9b6e08;
}

body.light-theme .products-category-list {
    scrollbar-color: rgba(15, 23, 42, 0.62) rgba(15, 23, 42, 0.1);
}

body.light-theme .products-category-list::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.05));
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: inset 0 0 10px rgba(15, 23, 42, 0.1);
}

body.light-theme .products-category-list::-webkit-scrollbar-thumb {
    border-color: rgba(241, 244, 250, 0.86);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(31, 41, 55, 0.9));
    box-shadow:
        0 8px 16px rgba(15, 23, 42, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

body.light-theme .products-category-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.95), rgba(22, 31, 48, 0.95));
    box-shadow:
        0 12px 22px rgba(15, 23, 42, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

body.light-theme .product-modern-chip {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.2);
}

body.light-theme .product-card-price-chip {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.22);
}

body.light-theme .product-modern-card {
    background: linear-gradient(160deg, #ffffff, #f3f6fc);
    border-color: #dbe3f1;
}

body.light-theme .product-modern-glow {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 24%, rgba(15, 23, 42, 0.16) 100%),
        radial-gradient(circle at 86% 10%, rgba(15, 23, 42, 0.14), transparent 40%);
}

body.light-theme .page-pill.active,
body.light-theme .page-pill:hover {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}

body.light-theme .product-detail-media {
    background: #ffffff;
}

body.light-theme .product-trade-header {
    background: linear-gradient(165deg, #ffffff, #f6f8fd);
    border-color: #dbe3f1;
}

body.light-theme .product-trade-subtitle {
    color: #334155;
}

body.light-theme .product-trade-block {
    border-color: #dbe3f1;
}

body.light-theme .product-trade-block h3 {
    background: #f6f8fc;
    border-color: #dbe3f1;
}

body.light-theme .product-spec-grid > div {
    border-color: #dbe3f1;
}

body.light-theme .product-spec-grid .spec-label {
    background: #eef3fb;
    color: #334155;
}

body.light-theme .product-spec-grid .spec-value {
    background: #ffffff;
    color: #0f172a;
}

body.light-theme .product-trade-block p {
    color: #334155;
}

body.light-theme .product-table-row > div {
    border-color: #dbe3f1;
}

body.light-theme .product-table-grid .table-label {
    background: #eef3fb;
    color: #334155;
    border-color: #dbe3f1;
}

body.light-theme .product-table-grid .table-value {
    background: #ffffff;
    color: #0f172a;
    border-color: #dbe3f1;
}

body.light-theme .product-trade-card {
    background: linear-gradient(160deg, #ffffff, #f3f6fc);
    border-color: #dbe3f1;
}

body.light-theme .tier-price-item {
    border-color: rgba(15, 23, 42, 0.18);
    background: rgba(15, 23, 42, 0.05);
}

body.light-theme .tier-price-item small {
    color: #1e293b;
}

body.light-theme .tier-price-item strong {
    color: #0f172a;
}

body.light-theme .tier-price-item span {
    color: #475569;
}

body.light-theme .variation-row {
    border-color: #dbe3f1;
    background: #ffffff;
}

body.light-theme .variation-row span {
    color: #334155;
}

body.light-theme .variation-row strong {
    color: #0f172a;
}

body.light-theme .product-trade-meta p {
    color: #334155;
}

body.light-theme .product-thumb {
    border-color: #dbe3f1;
    background: #ffffff;
}

body.light-theme .product-main-nav {
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.2);
}

body.light-theme .product-main-nav:hover {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.35);
}

body.light-theme .btn-sample {
    color: #ffffff;
}

body.light-theme .whatsapp-btn {
    border-color: rgba(22, 163, 74, 0.66);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(22, 163, 74, 0.18)),
        rgba(255, 255, 255, 0.92);
    color: #064e3b;
}

body.light-theme .whatsapp-btn i {
    color: #15803d;
}

body.light-theme .product-trade-actions .btn,
body.light-theme .product-trade-actions .btn:hover {
    color: #ffffff;
}

body.light-theme .product-card {
    background: linear-gradient(160deg, #ffffff, #f3f6fc);
}

body.light-theme .product-hover-cta {
    border-color: #0f1218;
    background: #0f1218;
    color: #ffffff;
}

body.light-theme .product-hover-cta::before {
    background: #0f1218;
    width: 0;
}

body.light-theme .product-card-link:hover .product-hover-cta::before {
    background: #000000;
    width: 100%;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
}

.review-head img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.45);
}

.review-head h4 {
    font-size: 1rem;
}

.review-head p {
    font-size: 0.82rem;
    color: var(--muted);
}

.review-quote {
    color: #d4d4d8;
    font-size: 0.93rem;
    line-height: 1.6;
}

body.light-theme .review-quote {
    color: #2f3a52;
}

@keyframes reviewSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.faq-accordion {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    padding: 0.25rem;
}

.faq-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    text-align: left;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.faq-plus {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f5d67a;
}

.faq-answer {
    display: none;
    padding: 0 0.8rem 0.8rem;
}

.faq-answer p {
    color: var(--muted);
}

.hc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hc-tab {
    border: 1px solid var(--line);
    background: #111218;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.hc-tab .material-symbols-outlined {
    font-size: 1rem;
}

body.light-theme .hc-tab {
    background: #ffffff;
}

.hc-tab.active {
    border-color: rgba(212, 175, 55, 0.4);
    color: #f5d67a;
    background: rgba(212, 175, 55, 0.08);
}

.hc-pane {
    display: none;
}

.hc-pane.active {
    display: block;
}

.theme-toggle-btn {
    padding: 0.45rem 0.58rem;
}

.theme-toggle-btn .material-symbols-outlined {
    font-size: 1.1rem;
}

.hc-shell {
    padding: 1rem;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.09), transparent 42%),
        var(--surface);
}

.hc-header h3 {
    margin-bottom: 0.25rem;
}

.hc-form {
    margin-top: 1rem;
}

.hc-pane h4 {
    margin-bottom: 0.8rem;
}

.hc-pane-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.hc-rows {
    display: grid;
    gap: 0.8rem;
}

.hc-row-item {
    padding: 0.8rem;
}

.hc-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.hc-row-title {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #f5d67a;
    margin-bottom: 0.5rem;
}

body.light-theme .hc-row-title {
    color: #9b6e08;
}

.hc-save-bar {
    position: sticky;
    bottom: 0.6rem;
    margin-top: 1rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 16, 19, 0.86);
    backdrop-filter: blur(10px);
    z-index: 5;
}

body.light-theme .hc-save-bar {
    background: rgba(255, 255, 255, 0.88);
}

.switch-row {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
}

.switch-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-track {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: rgba(107, 114, 128, 0.5);
    border: 1px solid var(--line);
    position: relative;
    transition: background 0.2s ease;
}

.switch-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.2s ease;
}

.switch-row input:checked + .switch-track {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    border-color: rgba(228, 188, 86, 0.58);
}

.switch-row input:checked + .switch-track .switch-dot {
    transform: translateX(20px);
}

.switch-text {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.hc-pane h4 {
    margin-bottom: 0.8rem;
    margin-top: 0.2rem;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.8rem;
}

.upload-card {
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 0.78rem;
    background:
        linear-gradient(160deg, rgba(17, 18, 24, 0.94), rgba(10, 11, 16, 0.94)),
        radial-gradient(circle at top right, rgba(228, 188, 86, 0.1), transparent 48%);
    position: relative;
    overflow: hidden;
}

body.light-theme .upload-card {
    background: #ffffff;
    border-color: rgba(155, 110, 8, 0.35);
}

body.light-theme .upload-card img {
    background: #f5f7fc;
}

body.light-theme .upload-drop-hint {
    border-color: rgba(15, 23, 42, 0.22);
    background: rgba(15, 23, 42, 0.05);
    color: #111827;
}

body.light-theme .gallery-dropzone {
    border-color: rgba(15, 23, 42, 0.22);
    background: rgba(15, 23, 42, 0.04);
}

body.light-theme .gallery-upload-box {
    border-color: rgba(15, 23, 42, 0.22);
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

body.light-theme .image-remove-btn {
    background: rgba(255, 255, 255, 0.96);
    color: #b91c1c;
}

body.light-theme .gallery-remove-btn {
    background: rgba(255, 255, 255, 0.96);
    color: #b91c1c;
}

.upload-card p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
}

.upload-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #0b0c11;
    border-radius: 10px;
    margin-top: 0.5rem;
    border: 1px solid var(--line);
}

.image-remove-btn {
    position: absolute;
    right: 0.45rem;
    top: 0.45rem;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.55);
    background: rgba(20, 8, 9, 0.92);
    color: #fecdd3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.image-remove-btn:hover {
    transform: scale(1.06);
    border-color: rgba(248, 113, 113, 0.88);
}

.image-remove-btn .material-symbols-outlined {
    font-size: 0.82rem;
}

.upload-preview-shell {
    position: relative;
    margin-top: 0.5rem;
}

.upload-dropzone .js-image-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.upload-dropzone p {
    display: none;
}

.upload-drop-hint {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.2rem;
    padding: 0.72rem 0.55rem;
    border-radius: 10px;
    border: 1px dashed rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.08);
    color: #e4bf56;
}

.upload-drop-hint .material-symbols-outlined {
    font-size: 1.45rem;
}

.upload-drop-hint strong {
    font-size: 0.83rem;
}

.upload-drop-hint span {
    font-size: 0.75rem;
    color: var(--muted);
}

.upload-dropzone.drag-over {
    border-color: rgba(212, 175, 55, 0.72);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18) inset;
}

.gallery-dropzone {
    border: 1px dashed rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    padding: 0.72rem;
    display: grid;
    gap: 0.45rem;
    background: rgba(228, 188, 86, 0.04);
}

.gallery-dropzone.drag-over {
    border-color: rgba(212, 175, 55, 0.78);
    background: rgba(228, 188, 86, 0.09);
}

.gallery-upload-box {
    position: relative;
    border-radius: 10px;
    border: 1px dashed rgba(212, 175, 55, 0.42);
    background: rgba(212, 175, 55, 0.07);
    min-height: 86px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.2rem;
    color: #f1cf7a;
}

.gallery-upload-box .material-symbols-outlined {
    font-size: 1.5rem;
}

.gallery-upload-box strong {
    font-size: 0.83rem;
}

.gallery-upload-box span {
    font-size: 0.74rem;
    color: var(--muted);
}

.gallery-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 0.45rem;
}

.gallery-preview-grid img {
    width: 100%;
    height: 74px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.gallery-preview-item {
    position: relative;
}

.gallery-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.65);
    background: rgba(15, 7, 8, 0.9);
    color: #fecdd3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-remove-btn .material-symbols-outlined {
    font-size: 0.82rem;
}

.file-dropzone {
    position: relative;
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(18, 20, 27, 0.95), rgba(10, 11, 16, 0.95));
    min-height: 60px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 0.72rem;
    cursor: pointer;
}

.file-dropzone:hover {
    border-color: rgba(212, 175, 55, 0.78);
}

.file-dropzone.drag-over {
    border-color: rgba(212, 175, 55, 0.85);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18) inset;
}

.file-dropzone .material-symbols-outlined {
    color: #e7c571;
}

.file-dropzone-copy {
    display: grid;
    gap: 0.12rem;
}

.file-dropzone-copy strong {
    font-size: 0.8rem;
}

.file-dropzone-name {
    font-size: 0.74rem;
    color: var(--muted);
}

.file-dropzone-clear {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.65);
    background: rgba(20, 8, 9, 0.9);
    color: #fecdd3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.file-dropzone-clear .material-symbols-outlined {
    font-size: 0.78rem;
}

.js-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(4, 6, 10, 0.55);
    display: none;
    place-items: center;
    padding: 1rem;
}

.confirm-modal-overlay.is-open {
    display: grid;
}

.confirm-modal-card {
    width: min(94vw, 420px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, rgba(19, 21, 30, 0.98), rgba(11, 13, 20, 0.98));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
    padding: 1rem;
    display: grid;
    gap: 0.65rem;
}

.confirm-modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.13);
    border: 1px solid rgba(251, 191, 36, 0.32);
}

.confirm-modal-card h4 {
    margin: 0;
}

.confirm-modal-card p {
    margin: 0;
    color: var(--muted);
}

.confirm-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

body.modal-open {
    overflow: hidden;
}

body.light-theme .csv-dropzone,
body.light-theme .file-dropzone,
body.light-theme .confirm-modal-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.2);
}

body.light-theme .csv-dropzone-copy strong,
body.light-theme .file-dropzone-copy strong {
    color: #111827;
}

.ql-toolbar.ql-snow {
    border-color: var(--line) !important;
    background: #111218;
}

.ql-container.ql-snow {
    border-color: var(--line) !important;
    background: #0f1013;
    color: var(--text);
    min-height: 130px;
}

.ql-editor {
    color: var(--text);
}

body.light-theme .ql-toolbar.ql-snow {
    background: #ffffff;
}

body.light-theme .ql-container.ql-snow {
    background: #ffffff;
}

body.light-theme .hero-subtitle-rich {
    color: #f2f4fa;
}

body.light-theme .hero-cover h1,
body.light-theme .hero-kpi strong {
    color: #ffffff;
}

body.light-theme .hero-kpi span {
    color: #f3f4f6;
}

body.light-theme input,
body.light-theme select,
body.light-theme textarea {
    background: #ffffff;
    color: #131927;
}

body.light-theme .sidebar {
    background: #ffffff;
    border-right-color: #dde5f2;
}

body.light-theme .nav-item:hover,
body.light-theme .nav-item.active {
    background: #f2f6ff;
    color: #9b6e08;
}

body.light-theme .admin-main {
    background: transparent;
}

body.light-theme .hero-shell {
    background: linear-gradient(140deg, #ffffff 0%, #f6f8fc 100%);
}

body.light-theme .faq-plus {
    color: #0f172a;
    border-color: #0f172a;
    background: #ffffff;
}

body.light-theme .parallax-inner {
    background: linear-gradient(120deg, rgba(13, 18, 28, 0.9), rgba(9, 12, 18, 0.88));
    border-color: rgba(255, 255, 255, 0.12);
}

body.light-theme .parallax-metric {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

body.light-theme .parallax-bullet {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

body.light-theme .why-shell {
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 42%),
        linear-gradient(120deg, #ffffff 0%, #f7f9fd 100%);
}

body.light-theme .why-card {
    background: linear-gradient(160deg, #ffffff, #f3f6fc);
}

body.light-theme .contact-hub {
    border-color: rgba(15, 23, 42, 0.2);
}

body.light-theme .contact-hub::before {
    background:
        radial-gradient(circle at 88% 8%, rgba(15, 23, 42, 0.12), transparent 34%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 255, 0.76));
}

body.light-theme .contact-point {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

body.light-theme .contact-point .material-symbols-outlined {
    color: #0f172a;
}

body.light-theme .contact-svg {
    color: #0f172a;
}

body.light-theme .contact-hub-form {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.16);
}

body.light-theme .contact-hub-form h3 {
    color: #111827;
}

body.light-theme .input-icon-row {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.14);
}

body.light-theme .input-icon-row input,
body.light-theme .input-icon-row textarea {
    color: #111827;
}

body.light-theme .contact-point p {
    color: #334155;
}

body.light-theme .story-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.08), transparent 34%),
        transparent;
}

body.light-theme .split-content {
    background: linear-gradient(160deg, #ffffff 0%, #f4f7fd 100%);
}

body.light-theme .rich-copy p {
    color: #334155;
}

body.light-theme .story-points span {
    color: #334155;
}

body.light-theme .story-step {
    border-color: rgba(15, 23, 42, 0.22);
    color: #0f172a;
    background: rgba(15, 23, 42, 0.06);
}

body.light-theme .story-card .btn {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

body.light-theme .story-card .btn:hover {
    background: #000000;
}

body.light-theme .about-story-shell {
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 42%),
        linear-gradient(150deg, #ffffff, #f4f7fd);
}

body.light-theme .glass-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.86)),
        rgba(255, 255, 255, 0.86);
    border-color: rgba(15, 23, 42, 0.14);
}

body.light-theme .about-hero-inner h1 {
    color: #ffffff;
}

body.light-theme .about-hero-inner p {
    color: #f2f4fa;
}

body.light-theme .about-metric {
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .about-metric span {
    color: #334155;
}

body.light-theme .about-value-card,
body.light-theme .about-timeline-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .about-owner-shell,
body.light-theme .about-owner-shell--manager {
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.08), transparent 44%),
        #ffffff;
    border-color: rgba(15, 23, 42, 0.14);
}

body.light-theme .about-owner-content blockquote {
    color: #334155;
    border-left-color: rgba(15, 23, 42, 0.4);
}

body.light-theme .about-owner-sign strong,
body.light-theme .about-owner-shell--manager .about-owner-sign strong {
    color: #9b6e08;
}

body.light-theme .about-owner-sign span {
    color: #475569;
}

body.light-theme .about-contact-icons a {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body.light-theme .about-contact-icons a:hover {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

body.light-theme .about-timeline-year {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body.light-theme .about-cta {
    background:
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.1), transparent 40%),
        linear-gradient(150deg, #ffffff, #f4f7fd);
    border-color: rgba(15, 23, 42, 0.16);
}

body.light-theme .about-cta p {
    color: #334155;
}

body.light-theme .why-media img {
    filter: saturate(1.02) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .whatsapp-btn,
    .whatsapp-btn::after {
        animation: none !important;
    }
}

@media (max-width: 980px) {
    .top-nav .container {
        min-height: 58px;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hero-shell,
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .sidebar {
        position: static;
    }

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

    .value-grid,
    .industry-grid,
    .capability-grid,
    .timeline-grid,
    .testimonial-grid,
    .faq-grid,
    .hero-kpi-row,
    .visual-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-highlight-grid,
    .upload-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .products-sidebar {
        display: none;
    }

    .products-modern-grid {
        grid-template-columns: repeat(2, minmax(230px, 1fr));
    }

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

    .product-trade-side {
        position: static;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .about-owner-shell--manager {
        grid-template-columns: 1fr;
    }

    .about-owner-shell--manager .about-owner-media {
        order: 1;
    }

    .about-owner-shell--manager .about-owner-content {
        order: 2;
    }

    .about-story-media img,
    .about-owner-media img,
    .about-owner-shell--manager .about-owner-media img {
        min-height: 280px;
        max-height: none;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hub-main {
        grid-template-columns: 1fr;
    }

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

    .why-media img {
        min-height: 340px;
    }

    .results-band {
        grid-template-columns: 1fr;
    }

    .split-row,
    .split-row.reverse {
        grid-template-columns: 1fr;
    }

    .parallax-inner {
        grid-template-columns: 1fr;
    }

    .split-row.reverse .split-media,
    .split-row.reverse .split-content {
        order: initial;
    }
}

@media (max-width: 680px) {
    .container {
        width: calc(100% - 1.1rem);
    }

    .stats-row,
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .industry-grid,
    .capability-grid,
    .timeline-grid,
    .testimonial-grid,
    .faq-grid,
    .hero-kpi-row,
    .results-grid,
    .visual-showcase-grid {
        grid-template-columns: 1fr;
    }

    .product-highlight-grid,
    .upload-grid {
        grid-template-columns: 1fr;
    }

    .products-modern-grid {
        grid-template-columns: 1fr;
    }

    .products-pagination {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-media img {
        min-height: 260px;
    }

    .about-owner-shell--manager {
        grid-template-columns: 1fr;
    }

    .hc-pane-head {
        align-items: stretch;
    }

    .review-card {
        width: 300px;
    }

    .parallax-break {
        background-attachment: scroll;
        min-height: 300px;
    }

    .header-logo-img,
    .footer-logo-img {
        width: var(--logo-mobile, 112px);
    }

    .header-logo-img {
        width: auto;
        max-width: var(--logo-mobile, 112px);
        height: 36px;
    }

    .story-card-head {
        gap: 0.35rem;
    }

    .story-card-head .eyebrow,
    .story-step {
        font-size: 0.67rem;
        letter-spacing: 0.06em;
        padding-top: 0.24rem;
        padding-bottom: 0.24rem;
    }

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

    .footer-subscribe {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 0.85rem);
    }

    .page-section {
        padding: 3.2rem 0;
    }

    .section-title {
        font-size: clamp(1.45rem, 7.4vw, 1.9rem);
    }

    .hero-cover-content {
        padding: 2rem 0;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .products-modern-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
    }

    .about-metric-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .about-metric {
        width: 100%;
    }

    .about-timeline-year {
        margin-inline: auto;
        width: fit-content;
    }

    .about-owner-content,
    .about-story-content {
        max-width: 100%;
    }

    .products-hero-inner {
        padding: 2.2rem 0;
    }

    .product-detail-media img {
        min-height: 220px;
    }

    .repeat-row,
    .repeat-row-3 {
        grid-template-columns: 1fr;
    }

    .contact-hub {
        padding: 0.8rem;
    }

    .contact-point {
        padding: 0.58rem;
    }

    .faq-toggle {
        font-size: 0.93rem;
        padding: 0.7rem;
    }

    .story-card-head .eyebrow,
    .story-step {
        font-size: 0.62rem;
    }

    .mobile-nav-drawer {
        width: min(92vw, 320px);
        padding: 0.85rem 0.72rem;
    }
}

@media (max-width: 1100px) {
    .custom-order-cap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-order-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .custom-order-highlight-grid,
    .custom-order-factor-grid,
    .custom-order-cap-grid,
    .custom-order-process-grid {
        grid-template-columns: 1fr;
    }

    .custom-order-hero {
        min-height: 360px;
    }

    .custom-order-hero-minimal h1 {
        max-width: 100%;
    }

    .custom-order-hero-card-zone {
        margin-top: -1.35rem;
    }

    .contact-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap iframe {
        height: 320px;
    }

    .products-form-grid {
        grid-template-columns: 1fr;
    }

    .products-csv-form {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .products-csv-form .btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .custom-order-hero {
        min-height: 320px;
    }

    .custom-order-hero-minimal h1 {
        font-size: clamp(1.55rem, 8vw, 2.05rem);
    }

    .custom-order-hero-card-zone {
        margin-top: -0.9rem;
    }

    .custom-order-hero-brief {
        padding: 0.95rem;
        border-radius: 18px;
    }

    .custom-order-highlight {
        padding: 0.58rem 0.62rem;
    }

    .custom-order-cap-card,
    .custom-order-step {
        padding: 0.8rem;
    }

    .custom-order-factor {
        padding: 0.72rem;
    }

    .contact-hero {
        min-height: 300px;
    }

    .contact-hero-inner h1 {
        font-size: clamp(1.55rem, 8vw, 2.05rem);
    }

    .contact-map-wrap iframe {
        height: 280px;
    }

    .contact-form-shell,
    .contact-map-shell,
    .contact-detail-card {
        padding: 0.82rem;
    }

    .products-row-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .products-row-actions .btn,
    .products-row-actions form,
    .products-row-actions form .btn {
        width: 100%;
    }
}

/* ========================================
   Admin Redesign Overrides
   ======================================== */
.admin-body {
    --admin-ink: #060b15;
    --admin-panel: rgba(16, 12, 6, 0.92);
    --admin-panel-soft: rgba(28, 21, 11, 0.82);
    --admin-stroke: rgba(228, 188, 86, 0.24);
    --admin-text: #f7f1e2;
    --admin-muted: #c5b697;
    --admin-cyan: #e4bc56;
    --admin-blue: #d9ac47;
    --admin-violet: #f1d07f;
    --admin-teal: #c8941e;
    --admin-orange: #f2bc66;
    --admin-rose: #e3b55a;
    background:
        radial-gradient(circle at 8% 12%, rgba(228, 188, 86, 0.14), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(200, 148, 30, 0.16), transparent 36%),
        linear-gradient(140deg, #070503 0%, #120d08 56%, #161007 100%);
    color: var(--admin-text);
}

body.light-theme.admin-body {
    --admin-ink: #f3f7ff;
    --admin-panel: rgba(255, 255, 255, 0.9);
    --admin-panel-soft: rgba(247, 250, 255, 0.92);
    --admin-stroke: rgba(200, 148, 30, 0.22);
    --admin-text: #0f172a;
    --admin-muted: #665d48;
    background:
        radial-gradient(circle at 10% 8%, rgba(228, 188, 86, 0.12), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(200, 148, 30, 0.18), transparent 40%),
        linear-gradient(160deg, #f5f1e6, #f9f6ef 42%, #f4f0e8);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.1rem;
    padding: 1rem;
}

.admin-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 15, 0.56);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 79;
}

.admin-sidebar {
    position: sticky;
    top: 1rem;
    height: calc(100vh - 2rem);
    border: 1px solid var(--admin-stroke);
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 0%, rgba(228, 188, 86, 0.16), transparent 30%),
        linear-gradient(160deg, var(--admin-panel), var(--admin-panel-soft));
    backdrop-filter: blur(16px);
    padding: 0.9rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    box-shadow: 0 24px 40px rgba(3, 10, 22, 0.4);
}

.admin-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--admin-text);
    text-shadow: none;
}

.admin-brand strong {
    color: var(--brand);
}

.admin-brand-mark {
    width: 33px;
    height: 33px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(228, 188, 86, 0.24), rgba(200, 148, 30, 0.28));
    border: 1px solid rgba(228, 188, 86, 0.5);
    color: #fff2ce;
}

.admin-nav-close,
.admin-nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 188, 86, 0.35);
    background: rgba(25, 17, 7, 0.54);
    color: #fae8b7;
    display: none;
}

.admin-sidebar-scroll {
    margin-top: 0.9rem;
    overflow: auto;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(241, 205, 108, 0.72) rgba(255, 255, 255, 0.06);
    overscroll-behavior: contain;
}

.admin-sidebar-scroll::-webkit-scrollbar {
    width: 10px;
}

.admin-sidebar-scroll::-webkit-scrollbar-track {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(9, 14, 27, 0.42));
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-image: linear-gradient(180deg, rgba(252, 211, 122, 0.88), rgba(214, 148, 34, 0.78));
    box-shadow: inset 0 0 0 1px rgba(255, 236, 182, 0.34);
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(180deg, rgba(255, 221, 153, 0.96), rgba(230, 163, 36, 0.9));
}

.admin-nav-group + .admin-nav-group {
    margin-top: 0.9rem;
}

.admin-nav-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #bea877;
    margin: 0 0 0.4rem 0.32rem;
}

.admin-body .sidebar nav {
    margin-top: 0;
}

.admin-body .nav-item {
    border: 1px solid rgba(228, 188, 86, 0.14);
    background: rgba(30, 22, 10, 0.45);
    color: #edd9ab;
    border-radius: 13px;
    padding: 0.64rem 0.72rem;
    margin-bottom: 0.34rem;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    animation: adminSlideIn 0.48s ease both;
    animation-delay: var(--admin-stagger, 0ms);
}

.admin-body .nav-item .material-symbols-outlined {
    font-size: 1.12rem;
    color: #f0c96d;
}

.admin-body .nav-item:hover,
.admin-body .nav-item.active {
    transform: translateX(4px);
    border-color: rgba(228, 188, 86, 0.5);
    background: linear-gradient(135deg, rgba(228, 188, 86, 0.2), rgba(200, 148, 30, 0.2));
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(56, 36, 9, 0.35);
}

.admin-sidebar-foot {
    padding-top: 0.78rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.admin-sidebar-foot .nav-item {
    margin-bottom: 0.44rem;
}

.admin-sidebar-foot .nav-item-logout {
    border-color: rgba(251, 113, 133, 0.3);
}

.admin-main {
    padding: 0.2rem 0.2rem 1.2rem;
}

.admin-header {
    border: 1px solid var(--admin-stroke);
    border-radius: 20px;
    background:
        radial-gradient(circle at 84% 0%, rgba(228, 188, 86, 0.2), transparent 32%),
        linear-gradient(140deg, rgba(26, 18, 8, 0.84), rgba(33, 23, 10, 0.8));
    backdrop-filter: blur(12px);
    padding: 1rem 1.1rem;
    margin-bottom: 0.95rem;
    box-shadow: 0 16px 32px rgba(3, 10, 22, 0.3);
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.admin-header-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #f1cc78;
    margin-bottom: 0.15rem;
}

.admin-page-title {
    margin-bottom: 0.18rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.admin-date-pill {
    border: 1px solid rgba(228, 188, 86, 0.3);
    border-radius: 999px;
    background: rgba(7, 17, 34, 0.52);
    color: #f4e2b8;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    padding: 0.4rem 0.72rem;
    font-size: 0.8rem;
}

.admin-content {
    display: grid;
    gap: 0.95rem;
}

.admin-hero-card {
    border: 1px solid var(--admin-stroke);
    border-radius: 22px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0.9rem;
    background:
        radial-gradient(circle at 10% 5%, rgba(228, 188, 86, 0.2), transparent 34%),
        linear-gradient(160deg, rgba(26, 18, 8, 0.92), rgba(32, 22, 9, 0.86));
    box-shadow: 0 16px 32px rgba(38, 24, 6, 0.33);
}

.admin-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f0cb76;
    margin-bottom: 0.4rem;
}

.admin-hero-card h2 {
    font-size: clamp(1.22rem, 2.2vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0.42rem;
}

.admin-hero-card p {
    color: var(--admin-muted);
}

.admin-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-content: center;
}

.admin-hero-metrics > div {
    border: 1px solid rgba(228, 188, 86, 0.24);
    border-radius: 14px;
    background: rgba(29, 20, 8, 0.52);
    padding: 0.7rem;
}

.admin-hero-metrics strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
}

.admin-hero-metrics span {
    color: var(--admin-muted);
    font-size: 0.78rem;
}

.admin-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 0;
}

.admin-stat-card {
    border: 1px solid var(--admin-stroke);
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(24, 17, 8, 0.9), rgba(33, 24, 10, 0.8));
    box-shadow: 0 10px 22px rgba(31, 20, 6, 0.35);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(7, 18, 36, 0.36);
}

.admin-stat-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.admin-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(42, 29, 11, 0.65);
}

.admin-stat-card .value {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.tone-amber .admin-stat-icon {
    color: #fcd34d;
}

.tone-blue .admin-stat-icon {
    color: #f6d189;
}

.tone-violet .admin-stat-icon {
    color: #ffdca1;
}

.tone-teal .admin-stat-icon {
    color: #f6bf59;
}

.tone-orange .admin-stat-icon {
    color: #fdba74;
}

.tone-rose .admin-stat-icon {
    color: #f7ca73;
}

.admin-surface-card {
    padding: 1rem;
    border: 1px solid var(--admin-stroke);
    border-radius: 20px;
    background:
        linear-gradient(160deg, rgba(23, 16, 7, 0.9), rgba(28, 20, 8, 0.84));
    box-shadow: 0 14px 26px rgba(33, 21, 5, 0.32);
}

.admin-surface-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.72rem;
}

.admin-surface-head h3 {
    margin-bottom: 0.12rem;
}

.admin-surface-head p {
    color: var(--admin-muted);
    font-size: 0.88rem;
}

.admin-body .table-scroll {
    overflow: auto;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
}

.admin-body .admin-table thead th,
.admin-body table thead th {
    background: rgba(34, 24, 10, 0.94);
    color: #ceb27a;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    border-bottom-color: rgba(148, 163, 184, 0.24);
}

.admin-body .admin-table tbody td,
.admin-body table tbody td {
    border-bottom-color: rgba(148, 163, 184, 0.12);
    color: var(--admin-text);
}

.admin-body .admin-table tbody tr:hover,
.admin-body table tbody tr:hover {
    background: rgba(228, 188, 86, 0.08);
}

.admin-empty-cell {
    text-align: center;
    color: var(--admin-muted);
}

.admin-body .admin-card,
.admin-body .stat-card {
    border-color: var(--admin-stroke);
}

.admin-body input,
.admin-body select,
.admin-body textarea {
    border-color: rgba(228, 188, 86, 0.24);
    background: rgba(26, 18, 8, 0.8);
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
    border-color: rgba(228, 188, 86, 0.7);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(228, 188, 86, 0.14);
}

body.light-theme.admin-body .admin-sidebar,
body.light-theme.admin-body .admin-header,
body.light-theme.admin-body .admin-hero-card,
body.light-theme.admin-body .admin-surface-card,
body.light-theme.admin-body .admin-stat-card {
    box-shadow: 0 14px 28px rgba(46, 76, 125, 0.12);
}

body.light-theme.admin-body .admin-sidebar,
body.light-theme.admin-body .admin-header {
    background:
        radial-gradient(circle at 88% 0%, rgba(228, 188, 86, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(245, 250, 255, 0.94));
}

body.light-theme.admin-body .admin-brand,
body.light-theme.admin-body .nav-item,
body.light-theme.admin-body .admin-page-title,
body.light-theme.admin-body .admin-table tbody td {
    color: #0f172a;
}

body.light-theme.admin-body .admin-nav-label,
body.light-theme.admin-body .admin-hero-card p,
body.light-theme.admin-body .admin-date-pill,
body.light-theme.admin-body .admin-surface-head p {
    color: #746749;
}

body.light-theme.admin-body .nav-item {
    border-color: rgba(200, 148, 30, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

body.light-theme.admin-body .nav-item:hover,
body.light-theme.admin-body .nav-item.active {
    color: #6f4e10;
    background: linear-gradient(135deg, rgba(246, 227, 176, 0.64), rgba(245, 217, 145, 0.62));
    border-color: rgba(200, 148, 30, 0.32);
}

body.light-theme.admin-body .admin-sidebar-scroll {
    scrollbar-color: rgba(15, 23, 42, 0.44) rgba(15, 23, 42, 0.1);
}

body.light-theme.admin-body .admin-sidebar-scroll::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0.08));
}

body.light-theme.admin-body .admin-sidebar-scroll::-webkit-scrollbar-thumb {
    background-image: linear-gradient(180deg, rgba(71, 85, 105, 0.82), rgba(51, 65, 85, 0.78));
    box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.42);
}

body.light-theme.admin-body .admin-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.86));
}

body.light-theme.admin-body .admin-date-pill,
body.light-theme.admin-body .admin-hero-metrics > div {
    border-color: rgba(200, 148, 30, 0.24);
    background: rgba(255, 255, 255, 0.86);
}

body.light-theme.admin-body table thead th,
body.light-theme.admin-body .admin-table thead th {
    background: rgba(248, 241, 228, 0.95);
    color: #7c6533;
}

body.light-theme.admin-body input,
body.light-theme.admin-body select,
body.light-theme.admin-body textarea {
    background: #ffffff;
    border-color: rgba(200, 148, 30, 0.22);
}

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

@media (max-width: 1080px) {
    .admin-shell {
        grid-template-columns: 1fr;
        padding: 0.78rem;
    }

    .admin-sidebar {
        position: fixed;
        left: 0.78rem;
        top: 0.78rem;
        width: min(86vw, 320px);
        height: calc(100vh - 1.56rem);
        transform: translateX(-108%);
        transition: transform 0.28s ease;
        z-index: 80;
    }

    .admin-nav-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-nav-open .admin-nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .admin-nav-close,
    .admin-nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .admin-header {
        padding: 0.88rem 0.9rem;
    }

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

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

@media (max-width: 720px) {
    .admin-kpi-grid {
        grid-template-columns: 1fr;
    }

    .admin-header {
        align-items: flex-start;
    }

    .admin-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-date-pill {
        font-size: 0.74rem;
    }

    .admin-surface-head {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========================================
   Auth Page Professional Redesign
   ======================================== */
.auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 14%, rgba(228, 188, 86, 0.18), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(200, 148, 30, 0.18), transparent 34%),
        linear-gradient(145deg, #060503, #120d08 55%, #160f07);
}

.auth-shell {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.1rem;
    overflow: hidden;
}

.auth-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.auth-bg-orb-a {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -90px;
    background: radial-gradient(circle, rgba(228, 188, 86, 0.24), transparent 66%);
}

.auth-bg-orb-b {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(200, 148, 30, 0.22), transparent 68%);
}

.auth-grid {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    align-items: stretch;
}

.auth-panel {
    border: 1px solid rgba(228, 188, 86, 0.25);
    border-radius: 22px;
    padding: 1.35rem;
    background:
        radial-gradient(circle at 88% 0%, rgba(228, 188, 86, 0.16), transparent 32%),
        linear-gradient(165deg, rgba(15, 11, 6, 0.9), rgba(19, 13, 6, 0.82));
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.35);
}

.auth-brand {
    margin-bottom: 0.72rem;
}

.auth-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f1cb76;
    margin-bottom: 0.4rem;
}

.auth-panel h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 0.55rem;
}

.auth-copy {
    color: #d0b98b;
    margin-bottom: 0.9rem;
}

.auth-points {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.auth-points li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(228, 188, 86, 0.2);
    border-radius: 12px;
    background: rgba(27, 19, 9, 0.58);
    padding: 0.52rem 0.58rem;
    color: #f2dec0;
    font-size: 0.9rem;
}

.auth-points .material-symbols-outlined {
    color: #f3cf7f;
    font-size: 1.02rem;
}

.auth-card {
    border: 1px solid rgba(228, 188, 86, 0.3);
    border-radius: 22px;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(228, 188, 86, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(14, 10, 6, 0.92), rgba(17, 12, 6, 0.86));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.auth-form-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #eec76f;
    margin-bottom: 0.18rem;
}

.auth-card h2 {
    margin-bottom: 0.2rem;
}

.auth-card .section-copy {
    margin-bottom: 0.8rem;
}

.auth-error {
    border: 1px solid rgba(248, 113, 113, 0.4);
    border-radius: 11px;
    background: rgba(127, 29, 29, 0.2);
    color: #fecaca;
    padding: 0.52rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.34rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.auth-error .material-symbols-outlined {
    font-size: 1rem;
}

.auth-form {
    display: grid;
    gap: 0.72rem;
}

.auth-form input {
    background: rgba(29, 20, 9, 0.75);
    border-color: rgba(228, 188, 86, 0.25);
}

.auth-password-wrap {
    position: relative;
}

.auth-password-wrap input {
    padding-right: 2.9rem;
}

.password-toggle {
    position: absolute;
    right: 0.38rem;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(228, 188, 86, 0.3);
    background: rgba(48, 33, 13, 0.7);
    color: #f0c66b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.password-toggle .material-symbols-outlined {
    font-size: 1.02rem;
}

.password-toggle:hover,
.password-toggle:focus,
.password-toggle:active {
    transform: translateY(-50%) !important;
    background: rgba(48, 33, 13, 0.7);
    border-color: rgba(228, 188, 86, 0.3);
    color: #f0c66b;
    box-shadow: none;
}

.auth-form input:focus {
    border-color: rgba(228, 188, 86, 0.78);
    box-shadow: 0 0 0 2px rgba(228, 188, 86, 0.16);
    outline: 0;
}

.auth-submit {
    width: 100%;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }

    .auth-panel {
        padding: 1rem;
    }

    .auth-card {
        padding: 1rem;
    }
}

/* ========================================
   Admin Invoice Template
   ======================================== */
.admin-order-form .table-scroll {
    margin-top: 0.5rem;
}

.invoice-sheet-wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

.invoice-sheet {
    width: min(900px, 100%);
    min-height: 1080px;
    background: #ffffff;
    color: #111827;
    border: 2px solid #0d4a66;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
    padding: 1.1rem 1.1rem 0.95rem;
    font-family: 'Outfit', sans-serif;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.admin-body .invoice-sheet,
.admin-body .invoice-sheet p,
.admin-body .invoice-sheet td,
.admin-body .invoice-sheet th,
.admin-body .invoice-sheet strong,
.admin-body .invoice-sheet span,
.admin-body .invoice-sheet h1 {
    color: #111827 !important;
}

.invoice-ribbon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 22px;
}

.invoice-ribbon span:first-child {
    background: linear-gradient(130deg, #0d4a66 0%, #0d4a66 78%, transparent 78%);
}

.invoice-ribbon span:last-child {
    background: linear-gradient(130deg, transparent 0%, #f59d1a 16%, #f59d1a 100%);
}

.invoice-ribbon-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.invoice-ribbon-bottom {
    margin-top: 0.8rem;
    transform: rotate(180deg);
}

.invoice-head {
    padding-top: 0.9rem;
    text-align: center;
}

.invoice-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.65rem;
    text-align: left;
}

.invoice-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.2rem;
    background: #ffffff;
}

.invoice-brand h1 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 0.12rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.invoice-brand p {
    margin: 0;
    font-size: 0.84rem;
    color: #374151;
}

.invoice-pill {
    margin: 0.45rem auto 0.55rem;
    display: inline-block;
    background: #0d4a66;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
}

.invoice-meta {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.6rem;
    margin-bottom: 0.58rem;
}

.invoice-meta p {
    margin: 0.18rem 0;
    font-size: 0.92rem;
    color: #111827 !important;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.4rem;
    border: 2px solid #0b3f53;
    table-layout: fixed;
}

.invoice-table th,
.invoice-table td {
    border: 1.4px solid #0b3f53;
    padding: 0.38rem 0.45rem;
    font-size: 0.9rem;
    background: #ffffff;
    color: #111827 !important;
}

.invoice-table thead th {
    background: #0d4a66;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.invoice-table tbody tr td:nth-child(1),
.invoice-table tbody tr td:nth-child(3),
.invoice-table tbody tr td:nth-child(4),
.invoice-table tbody tr td:nth-child(5) {
    text-align: center;
}

.invoice-empty-space {
    min-height: 74px;
    background: #ffffff !important;
}

.invoice-total-row td {
    font-weight: 700;
    background: #f8fbff !important;
}

.invoice-filler-row td {
    height: 30px;
}

.invoice-inwords,
.invoice-note {
    margin-top: 0.55rem;
    font-size: 0.92rem;
}

.invoice-signs {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.invoice-signs > div {
    display: grid;
    gap: 0.18rem;
}

.invoice-signs > div:last-child {
    text-align: right;
}

.invoice-signs span {
    border-top: 1px solid #374151;
    width: fit-content;
    padding-top: 0.2rem;
}

.invoice-signs > div:last-child span {
    margin-left: auto;
}

.invoice-signs strong {
    font-weight: 600;
    color: #111827;
}

.orders-filter-wrap {
    border: 1px solid rgba(228, 188, 86, 0.24);
    border-radius: 14px;
    background: rgba(24, 17, 8, 0.42);
    padding: 0.72rem;
    margin-bottom: 0.8rem;
}

.orders-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.orders-status-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.82rem;
}

.orders-pill {
    text-decoration: none;
    border: 1px solid rgba(228, 188, 86, 0.28);
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    font-size: 0.82rem;
    background: rgba(35, 24, 9, 0.55);
    color: #f4dfb0;
}

.orders-pill.active {
    border-color: rgba(228, 188, 86, 0.58);
    background: linear-gradient(135deg, rgba(228, 188, 86, 0.24), rgba(200, 148, 30, 0.2));
    color: #ffffff;
}

.seo-pro-grid {
    gap: 1rem;
}

.seo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.seo-tab {
    border: 1px solid rgba(228, 188, 86, 0.3);
    border-radius: 999px;
    background: rgba(28, 20, 9, 0.52);
    color: #f0dab0;
    padding: 0.42rem 0.78rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.seo-tab.active {
    border-color: rgba(228, 188, 86, 0.58);
    background: linear-gradient(135deg, rgba(228, 188, 86, 0.24), rgba(200, 148, 30, 0.2));
    color: #ffffff;
}

.seo-tab-pane {
    display: none;
}

.seo-tab-pane.active {
    display: block;
}

.seo-pro-form .admin-card h4 {
    margin-bottom: 0.3rem;
}

.seo-pro-form label {
    font-size: 0.9rem;
}

.seo-pro-form input[type="checkbox"] {
    width: auto;
    margin-right: 0.4rem;
}

.seo-toggle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.seo-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(228, 188, 86, 0.26);
    border-radius: 12px;
    padding: 0.5rem 0.58rem;
    background: rgba(26, 18, 8, 0.45);
    cursor: pointer;
}

.seo-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.seo-toggle-ui {
    width: 46px;
    height: 24px;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.45);
    position: relative;
    transition: background 0.2s ease;
}

.seo-toggle-ui::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 3px;
    top: 3px;
    transition: transform 0.2s ease;
}

.seo-toggle input:checked + .seo-toggle-ui {
    background: linear-gradient(135deg, #e4bc56, #c8941e);
}

.seo-toggle input:checked + .seo-toggle-ui::after {
    transform: translateX(22px);
}

.seo-toggle-text {
    font-size: 0.86rem;
    color: #e8d8b8;
    font-weight: 600;
}

.seo-meta-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.seo-meta-cards .admin-card {
    border-color: rgba(228, 188, 86, 0.22);
    background: rgba(24, 17, 8, 0.35);
}

body.light-theme.admin-body .orders-filter-wrap {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(200, 148, 30, 0.22);
}

body.light-theme.admin-body .orders-pill {
    background: #fffdf8;
    color: #6a4e16;
    border-color: rgba(200, 148, 30, 0.28);
}

body.light-theme.admin-body .orders-pill.active {
    color: #5a3f0f;
    background: linear-gradient(135deg, rgba(246, 227, 176, 0.74), rgba(243, 214, 145, 0.66));
}

body.light-theme.admin-body .seo-meta-cards .admin-card {
    background: #fffdf8;
    border-color: rgba(200, 148, 30, 0.2);
}

body.light-theme.admin-body .seo-tab {
    background: #fffdf8;
    color: #6a4e16;
    border-color: rgba(200, 148, 30, 0.28);
}

body.light-theme.admin-body .seo-tab.active {
    color: #5a3f0f;
    background: linear-gradient(135deg, rgba(246, 227, 176, 0.74), rgba(243, 214, 145, 0.66));
}

body.light-theme.admin-body .seo-toggle {
    background: #fffdf8;
    border-color: rgba(200, 148, 30, 0.24);
}

body.light-theme.admin-body .seo-toggle-text {
    color: #5b4a26;
}

@media (max-width: 860px) {
    .invoice-meta {
        grid-template-columns: 1fr;
    }

    .invoice-brand {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .invoice-brand img {
        margin: 0 auto;
    }

    .invoice-signs {
        grid-template-columns: 1fr;
    }

    .invoice-signs > div:last-child {
        text-align: left;
    }

    .invoice-signs > div:last-child span {
        margin-left: 0;
    }

    .orders-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-meta-cards {
        grid-template-columns: 1fr;
    }

    .seo-toggle-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 8mm;
    }

    html,
    body {
        width: 210mm;
        background: #ffffff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .admin-shell > .sidebar,
    .admin-header,
    .no-print,
    .confirm-modal-overlay,
    #alert-container {
        display: none !important;
    }

    .admin-shell,
    .admin-main,
    .admin-content {
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .invoice-sheet-wrap {
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    .invoice-sheet {
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;
        border: 2px solid #0b3f53;
        box-shadow: none !important;
        page-break-inside: avoid;
        padding: 9mm !important;
    }

    .invoice-ribbon {
        height: 16px;
    }

    .invoice-table th,
    .invoice-table td {
        font-size: 10.6pt !important;
        border-color: #0b3f53 !important;
    }
}

/* ========================================
   Admin Buttons Professional Pass
   ======================================== */
.admin-body .btn,
.admin-body button,
.admin-body input[type="submit"],
.admin-body input[type="button"] {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.admin-body .admin-btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 188, 86, 0.35);
    background:
        linear-gradient(135deg, rgba(228, 188, 86, 0.16), rgba(200, 148, 30, 0.14)),
        rgba(24, 17, 7, 0.78);
    color: #f8ebcb;
}

.admin-body .admin-btn-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.45s ease;
}

.admin-body .admin-btn-pro:hover::before {
    transform: translateX(140%);
}

.admin-body .admin-btn-pro:hover {
    border-color: rgba(228, 188, 86, 0.58);
    background:
        linear-gradient(135deg, rgba(228, 188, 86, 0.24), rgba(200, 148, 30, 0.22)),
        rgba(28, 20, 9, 0.9);
    color: #ffffff;
}

.admin-body .admin-btn-icon {
    font-size: 1rem;
    line-height: 1;
}

.admin-body .btn.btn-primary.admin-btn-pro,
.admin-body button.btn-primary.admin-btn-pro {
    border-color: rgba(228, 188, 86, 0.54);
    background: linear-gradient(135deg, #e4bc56 0%, #c8941e 58%, #8a6111 100%);
    color: #ffffff;
}

.admin-body .btn.btn-danger.admin-btn-pro {
    border-color: rgba(248, 113, 113, 0.54);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.86), rgba(185, 28, 28, 0.88));
    color: #fff2f2;
}

.admin-body .btn-danger,
.admin-body .btn-danger-soft,
.admin-body button.btn-danger,
.admin-body button.btn-danger-soft,
.admin-body .btn.btn-danger.admin-btn-pro,
.admin-body .btn.btn-danger-soft.admin-btn-pro {
    border: 1px solid rgba(248, 113, 113, 0.62);
    background:
        linear-gradient(145deg, rgba(248, 113, 113, 0.26), rgba(220, 38, 38, 0.24)),
        rgba(60, 13, 20, 0.7);
    color: #ffe8ec;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 12px 22px rgba(127, 29, 29, 0.3);
    backdrop-filter: blur(6px);
}

.admin-body .btn-danger:hover,
.admin-body .btn-danger-soft:hover,
.admin-body button.btn-danger:hover,
.admin-body button.btn-danger-soft:hover,
.admin-body .btn.btn-danger.admin-btn-pro:hover,
.admin-body .btn.btn-danger-soft.admin-btn-pro:hover {
    background:
        linear-gradient(145deg, rgba(248, 113, 113, 0.36), rgba(220, 38, 38, 0.34)),
        rgba(72, 16, 24, 0.82);
    border-color: rgba(252, 165, 165, 0.8);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 16px 26px rgba(127, 29, 29, 0.38);
}

body.light-theme.admin-body .admin-btn-pro {
    border-color: rgba(200, 148, 30, 0.34);
    background:
        linear-gradient(135deg, rgba(246, 227, 176, 0.7), rgba(244, 214, 139, 0.64)),
        #ffffff;
    color: #6a4b0f;
}

body.light-theme.admin-body .admin-btn-pro:hover {
    border-color: rgba(200, 148, 30, 0.5);
    color: #5a3f0d;
}

/* ========================================
   Invoice V2 Custom Design
   ======================================== */
.invoice-sheet.invoice-sheet-v2 {
    position: relative;
    border: 2px solid #0b4962;
    background: #ffffff;
    padding: 1rem 1rem 1.1rem;
    min-height: auto;
    isolation: isolate;
}

.invoice-sheet-v2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 14px;
    background: linear-gradient(90deg, #0b4962 0%, #0b4962 42%, #f59d1a 58%, #f59d1a 100%);
}

.invoice-sheet-v2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    background: linear-gradient(90deg, #f59d1a 0%, #f59d1a 42%, #0b4962 58%, #0b4962 100%);
}

.invoice-v2-head {
    margin-top: 0.45rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0.8rem;
    align-items: start;
}

.invoice-v2-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.62rem;
    align-items: center;
}

.invoice-v2-logo-wrap {
    width: 78px;
    height: 78px;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.invoice-v2-logo-wrap img {
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
}

.invoice-v2-brand-copy h1 {
    margin: 0 0 0.2rem 0;
    font-size: 1.75rem;
    line-height: 1.08;
    color: #0f172a !important;
}

.invoice-v2-brand-copy p {
    margin: 0.1rem 0;
    font-size: 0.88rem;
    color: #1f2937 !important;
}

.invoice-v2-meta-box {
    border: 1.6px solid #0b4962;
    border-radius: 12px;
    padding: 0.55rem 0.62rem;
    background: #f8fbff;
}

.invoice-v2-meta-box h2 {
    margin: 0 0 0.35rem 0;
    font-size: 1.06rem;
    letter-spacing: 0.08em;
    color: #0b4962;
}

.invoice-v2-meta-box p {
    margin: 0.18rem 0;
    font-size: 0.86rem;
    color: #111827 !important;
}

.invoice-v2-watermark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 0;
}

.invoice-v2-watermark img {
    width: min(48%, 260px);
    max-height: 260px;
    object-fit: contain;
    opacity: 0.12;
    filter: grayscale(0%);
}

.invoice-v2-head,
.invoice-v2-customer,
.invoice-table.invoice-table-v2,
.invoice-inwords,
.invoice-note,
.invoice-signs.invoice-signs-v2 {
    position: relative;
    z-index: 1;
}

.invoice-v2-status {
    margin-top: 0.26rem;
    display: inline-flex;
    border-radius: 999px;
    padding: 0.18rem 0.5rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #0b4962;
}

.invoice-v2-status.badge-pending {
    background: rgba(245, 158, 11, 0.12);
    color: #9a5b00 !important;
}

.invoice-v2-status.badge-processing {
    background: rgba(59, 130, 246, 0.12);
    color: #1e3a8a !important;
}

.invoice-v2-status.badge-shipped {
    background: rgba(20, 184, 166, 0.12);
    color: #115e59 !important;
}

.invoice-v2-status.badge-delivered {
    background: rgba(16, 185, 129, 0.12);
    color: #065f46 !important;
}

.invoice-v2-status.badge-cancelled {
    background: rgba(239, 68, 68, 0.12);
    color: #991b1b !important;
}

.invoice-v2-customer {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.invoice-v2-customer-card {
    border: 1.3px solid #0b4962;
    border-radius: 10px;
    padding: 0.55rem 0.62rem;
}

.invoice-v2-customer-card h4 {
    margin: 0 0 0.25rem 0;
    color: #0b4962;
}

.invoice-v2-customer-card p {
    margin: 0.16rem 0;
    color: #111827 !important;
}

.invoice-v2-customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.7rem;
}

.invoice-v2-customer-grid p:last-child {
    grid-column: 1 / -1;
}

.invoice-v2-summary-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
}

.invoice-v2-summary-inline > div {
    border: 1.3px solid #0b4962;
    border-radius: 10px;
    background: #f8fbff;
    padding: 0.4rem 0.5rem;
    text-align: center;
}

.invoice-v2-summary-inline span {
    display: block;
    font-size: 0.75rem;
    color: #334155 !important;
}

.invoice-v2-summary-inline strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 1rem;
    color: #111827 !important;
}

.invoice-table.invoice-table-v2 {
    margin-top: 0.7rem;
    border: 2px solid #0b4962;
}

.invoice-table.invoice-table-v2 th,
.invoice-table.invoice-table-v2 td {
    border: 1.4px solid #0b4962;
    color: #111827 !important;
    font-size: 0.87rem;
}

.invoice-table.invoice-table-v2 thead th {
    background: #0b4962;
    color: #ffffff !important;
}

.invoice-table.invoice-table-v2 thead th:nth-child(4),
.invoice-table.invoice-table-v2 thead th:nth-child(5) {
    text-align: center;
}

.invoice-table.invoice-table-v2 .invoice-filler-row td {
    height: 28px;
}

.invoice-table.invoice-table-v2 .invoice-total-row-v2 td {
    background: #f8fbff !important;
    font-weight: 700;
}

.invoice-signs.invoice-signs-v2 {
    margin-top: 1rem;
    padding-bottom: 0.55rem;
}

.invoice-signs.invoice-signs-v2 span {
    border-top: 1.2px solid #1f2937;
}

@media (max-width: 860px) {
    .invoice-v2-head {
        grid-template-columns: 1fr;
    }

    .invoice-v2-brand {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .invoice-v2-logo-wrap {
        margin: 0 auto;
    }

    .invoice-v2-summary-inline {
        grid-template-columns: 1fr;
    }

    .invoice-v2-customer-grid {
        grid-template-columns: 1fr;
    }

    .invoice-v2-customer-grid p:last-child {
        grid-column: auto;
    }
}

@media print {
    .invoice-sheet.invoice-sheet-v2 {
        border: 2px solid #0b4962 !important;
        box-shadow: none !important;
        min-height: auto !important;
    }

    .invoice-sheet.invoice-sheet-v2::before,
    .invoice-sheet.invoice-sheet-v2::after {
        display: block !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .invoice-table.invoice-table-v2 th,
    .invoice-table.invoice-table-v2 td {
        border-color: #0b4962 !important;
        color: #111827 !important;
    }
}

/* Keep print output visually identical to preview and fit on one A4 page */
.invoice-sheet.invoice-sheet-v2 {
    width: min(190mm, 100%);
    margin: 0 auto;
}

@media print {
    @page {
        size: A4 portrait;
        margin: 8mm;
    }

    html,
    body {
        background: #fff !important;
        width: 210mm;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .invoice-sheet-wrap {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .invoice-sheet.invoice-sheet-v2 {
        width: 194mm !important;
        max-width: 194mm !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        padding: 7mm 7mm 8mm !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        overflow: hidden !important;
    }

    .invoice-sheet.invoice-sheet-v2::before,
    .invoice-sheet.invoice-sheet-v2::after {
        height: 10px !important;
    }

    .invoice-v2-watermark img {
        width: min(56%, 220px) !important;
    }

    .invoice-table.invoice-table-v2 th,
    .invoice-table.invoice-table-v2 td {
        font-size: 10pt !important;
        padding: 0.28rem 0.34rem !important;
    }

    .invoice-table.invoice-table-v2 .invoice-filler-row td {
        height: 18px !important;
    }

    .invoice-v2-head,
    .invoice-v2-customer,
    .invoice-signs.invoice-signs-v2,
    .invoice-inwords,
    .invoice-note {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }

    /* Print top section: left company block + right invoice meta box */
    .invoice-v2-head {
        grid-template-columns: 1.45fr 0.95fr !important;
        gap: 0.6rem !important;
        align-items: center !important;
        justify-items: stretch !important;
        text-align: left !important;
    }

    .invoice-v2-brand {
        grid-template-columns: auto 1fr !important;
        gap: 0.45rem !important;
        align-items: center !important;
        justify-items: start !important;
        text-align: left !important;
    }

    .invoice-v2-logo-wrap {
        margin: 0 !important;
        width: 66px !important;
        height: 66px !important;
    }

    .invoice-v2-logo-wrap img {
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .invoice-v2-brand-copy h1 {
        font-size: 21pt !important;
        line-height: 1.02 !important;
        margin: 0 0 0.14rem 0 !important;
    }

    .invoice-v2-brand-copy p {
        font-size: 12pt !important;
        margin: 0.08rem 0 !important;
    }

    .invoice-v2-meta-box {
        justify-self: end !important;
        width: 100% !important;
        max-width: 360px !important;
        border-width: 1.8px !important;
        border-radius: 12px !important;
        padding: 0.44rem 0.6rem !important;
    }

    .invoice-v2-meta-box h2 {
        font-size: 18pt !important;
        letter-spacing: 0.07em !important;
        margin-bottom: 0.2rem !important;
    }

    .invoice-v2-meta-box p {
        font-size: 11.5pt !important;
        margin: 0.12rem 0 !important;
    }

    .invoice-signs.invoice-signs-v2 {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        gap: 2.2rem !important;
    }

    .invoice-signs.invoice-signs-v2 > div {
        flex: 1 1 0 !important;
    }

    .invoice-signs.invoice-signs-v2 > div:last-child {
        text-align: right !important;
    }

    .invoice-signs.invoice-signs-v2 > div:last-child span {
        margin-left: auto !important;
    }
}
/* ========================================
   Admin Updates Pro Page
   ======================================== */
.update-page-shell {
    padding: 1rem;
}

.updates-tabs {
    margin: 1rem 0 0.85rem;
}

.update-health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.85rem;
}

.update-health-item {
    border: 1px solid rgba(228, 188, 86, 0.26);
    border-radius: 12px;
    background: rgba(24, 17, 8, 0.48);
    padding: 0.6rem 0.72rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

.update-health-item .material-symbols-outlined {
    font-size: 1.2rem;
    color: #e4bc56;
}

.update-health-item small {
    display: block;
    color: #ceb587;
    font-size: 0.74rem;
    line-height: 1.2;
}

.update-health-item strong {
    display: block;
    color: #f9e9c0;
    font-size: 0.9rem;
    line-height: 1.25;
    word-break: break-all;
}

.update-card {
    padding: 0.85rem;
    margin-bottom: 0.8rem;
}

.update-card h4 {
    margin-bottom: 0.3rem;
}

.updates-core-pills {
    margin-top: 0.7rem;
}

.updates-muted-row {
    text-align: center;
    color: var(--muted);
}

.updates-toggle-grid {
    margin: 0.55rem 0 0.7rem;
}

.update-result-box {
    border-color: rgba(228, 188, 86, 0.24);
    background: rgba(24, 17, 8, 0.36);
}

.update-result-content {
    margin-top: 0.45rem;
    border: 1px solid rgba(228, 188, 86, 0.24);
    border-radius: 12px;
    padding: 0.65rem;
    background: rgba(16, 12, 6, 0.45);
    color: #f5e7c8;
}

.updates-result-line {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.updates-result-list {
    margin: 0.2rem 0 0;
    padding-left: 1rem;
}

.update-live-logs {
    margin-top: 0.2rem;
}

.updates-log {
    margin-top: 0.45rem;
    border: 1px solid rgba(228, 188, 86, 0.24);
    border-radius: 10px;
    background: rgba(8, 9, 14, 0.88);
    color: #d6f3ff;
    min-height: 122px;
    max-height: 280px;
    overflow: auto;
    padding: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

[data-updates-submit].is-loading {
    opacity: 0.72;
    pointer-events: none;
}

body.light-theme.admin-body .update-health-item {
    background: #fffdf8;
    border-color: rgba(200, 148, 30, 0.2);
}

body.light-theme.admin-body .update-health-item .material-symbols-outlined {
    color: #bb8619;
}

body.light-theme.admin-body .update-health-item small {
    color: #7f6020;
}

body.light-theme.admin-body .update-health-item strong {
    color: #3f2e0c;
}

body.light-theme.admin-body .update-result-box {
    background: #fffdf8;
    border-color: rgba(200, 148, 30, 0.22);
}

body.light-theme.admin-body .update-result-content {
    background: #fffdf7;
    border-color: rgba(200, 148, 30, 0.2);
    color: #4a3811;
}

body.light-theme.admin-body .updates-log {
    background: #0f172a;
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.4);
}

@media (max-width: 860px) {
    .update-health-grid {
        grid-template-columns: 1fr;
    }
}
.update-confirm-overlay .confirm-modal-card {
    max-width: 460px;
}

.update-confirm-card .form-group {
    margin-top: 0.6rem;
    text-align: left;
}

.update-confirm-card input[type="text"] {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.update-confirm-card .btn[disabled] {
    opacity: 0.6;
    pointer-events: none;
}
/* ========================================
   Site Settings + Floating Action Icons
   ======================================== */
.settings-pro-grid {
    gap: 1rem;
}

.floating-icons-rows {
    display: grid;
    gap: 0.7rem;
}

.floating-icon-row {
    border: 1px solid rgba(228, 188, 86, 0.26);
    border-radius: 14px;
    padding: 0.7rem;
    background: rgba(24, 17, 8, 0.42);
}

.floating-icon-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}

.floating-action-stack {
    position: fixed;
    z-index: 85;
    bottom: clamp(16px, 2.8vw, 24px);
    display: flex;
    flex-direction: column;
    gap: var(--float-gap, 12px);
}

.floating-action-stack.floating-right {
    right: clamp(12px, 2.4vw, 22px);
}

.floating-action-stack.floating-left {
    left: clamp(12px, 2.4vw, 22px);
}

.floating-action-btn {
    width: var(--float-size-desktop, 56px);
    height: var(--float-size-desktop, 56px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--float-bg, #111827);
    color: var(--float-fg, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 14px 24px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.floating-action-btn i {
    font-size: calc(var(--float-size-desktop, 56px) * 0.44);
    line-height: 1;
}

.floating-action-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    filter: saturate(1.06);
}

.floating-animated .floating-action-btn {
    animation: floatPulse 2.8s ease-in-out infinite;
}

.floating-animated .floating-action-btn:nth-child(2n) {
    animation-delay: 0.25s;
}

.floating-animated .floating-action-btn:nth-child(3n) {
    animation-delay: 0.5s;
}

@keyframes floatPulse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

body.light-theme .floating-icon-row {
    background: #fffdf8;
    border-color: rgba(200, 148, 30, 0.2);
}

body.light-theme .floating-action-btn {
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 860px) {
    .floating-action-btn {
        width: var(--float-size-mobile, 50px);
        height: var(--float-size-mobile, 50px);
    }

    .floating-action-btn i {
        font-size: calc(var(--float-size-mobile, 50px) * 0.42);
    }
}
