@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Englebert&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --bg: #090b12;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.14);
    --line-strong: rgba(255, 255, 255, 0.24);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.76);
    --soft: rgba(255, 255, 255, 0.58);
    --cyan: #00d4ff;
    --magenta: #ff00ff;
    --green: #00ff88;
    --dark: rgba(0, 0, 0, 0.32);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

body.commerce-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(3, 7, 18, 0.84), rgba(3, 7, 18, 0.9)),
        url('../img/hero-bg.jpg') center top / cover fixed,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

body.commerce-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.10), rgba(255, 0, 255, 0.08) 48%, rgba(0, 255, 136, 0.08));
}

a {
    color: inherit;
}

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

.commerce-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.commerce-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.commerce-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.commerce-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.commerce-brand img {
    width: 136px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.commerce-brand-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.commerce-brand-text strong {
    font-size: 0.95rem;
    line-height: 1.1;
}

.commerce-brand-text span {
    color: var(--soft);
    font-size: 0.82rem;
    line-height: 1.2;
}

.commerce-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.commerce-nav a,
.commerce-nav button,
.ghost-link {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.commerce-nav a:hover,
.commerce-nav button:hover,
.ghost-link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.48);
    background: rgba(255, 255, 255, 0.13);
}

.commerce-nav .nav-cta,
.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.94), rgba(255, 0, 255, 0.9));
    box-shadow: 0 12px 34px rgba(0, 212, 255, 0.22);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.commerce-nav .nav-cta:hover,
.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(255, 0, 255, 0.28);
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.22s ease, background 0.22s ease;
}

.secondary-action:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}

.hidden {
    display: none !important;
}

.commerce-hero {
    padding: 54px 0 30px;
}

.commerce-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.commerce-hero-copy,
.commerce-panel,
.filter-panel,
.commerce-card,
.detail-panel,
.media-panel,
.status-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.commerce-hero-copy {
    padding: 36px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commerce-eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.commerce-hero h1,
.store-title,
.product-title,
.status-card h1 {
    margin: 0;
    font-family: 'Englebert', 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.05;
    color: transparent;
    background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 52%, #00ff88 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.commerce-hero h1 {
    max-width: 760px;
    font-size: 4rem;
}

.commerce-lead {
    margin: 18px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.75;
}

.commerce-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.commerce-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.commerce-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.86rem;
    font-weight: 700;
}

.commerce-panel {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.commerce-panel h2 {
    margin: 0;
    font-size: 1.35rem;
    color: #fff;
}

.commerce-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.commerce-flow {
    display: grid;
    gap: 10px;
}

.flow-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.flow-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 255, 136, 0.85));
    color: #06111d;
    font-weight: 900;
}

.flow-item strong {
    display: block;
    margin-bottom: 3px;
}

.flow-item span {
    color: var(--soft);
    line-height: 1.45;
}

.store-section {
    padding: 28px 0 74px;
}

.store-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.store-title {
    font-size: 3rem;
}

.store-intro {
    max-width: 740px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.sort-control {
    display: grid;
    gap: 8px;
    min-width: 230px;
}

.sort-control label,
.form-field span {
    color: var(--soft);
    font-weight: 800;
    font-size: 0.86rem;
}

.sort-control select,
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.32);
    color: #fff;
    padding: 11px 13px;
    font: inherit;
    outline: none;
}

.sort-control select:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.16);
}

.category-tabs,
.category-carousel {
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.category-tabs {
    display: flex;
}

.category-carousel {
    display: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
}

.category-chip,
.category-tab,
.sidebar-category-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    padding: 10px 15px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.category-chip:hover,
.category-tab:hover,
.sidebar-category-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.48);
}

.category-chip.is-active,
.category-tab.is-active,
.sidebar-category-item.is-active {
    color: #06111d;
    border-color: transparent;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(0, 255, 136, 0.9));
}

.shop-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.filter-panel {
    padding: 20px;
    position: sticky;
    top: 92px;
}

.filter-panel h3 {
    margin: 0 0 16px;
    font-size: 1.05rem;
}

.sidebar-categories {
    display: grid;
    gap: 8px;
}

.sidebar-category-item {
    width: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.quick-filters {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-clear {
    width: 100%;
    margin-top: 14px;
}

.quick-filters h4 {
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    color: var(--muted);
    font-weight: 700;
}

.filter-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--cyan);
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--muted);
}

.products-header strong {
    color: #fff;
}

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

.commerce-card {
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.commerce-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.44);
    box-shadow: 0 26px 70px rgba(0, 212, 255, 0.16);
}

.commerce-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.32);
}

.commerce-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.commerce-card:hover .commerce-card-media img {
    transform: scale(1.045);
}

.commerce-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 60%);
}

.card-badges {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 900;
    color: #06111d;
    background: rgba(0, 255, 136, 0.92);
}

.card-badge.is-muted {
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
}

.commerce-card-body {
    padding: 18px;
}

.card-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    min-height: 28px;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.1);
    font-weight: 900;
    font-size: 0.78rem;
}

.commerce-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.22;
}

.commerce-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.58;
}

.card-tagline {
    min-height: 90px;
}

.card-bullet-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.card-bullet-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.42;
}

.card-bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.commerce-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.card-price-stack,
.price-stack {
    display: grid;
    gap: 3px;
}

.card-price-stack strong,
.card-price,
.product-price {
    color: var(--green);
    font-weight: 900;
    font-size: 1.3rem;
    white-space: nowrap;
}

.card-price-stack small,
.product-usd-price {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    font-weight: 800;
    margin: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #06111d;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(0, 255, 136, 0.9));
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

.empty-state {
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    color: var(--muted);
}

.detail-section,
.status-section {
    padding: 54px 0 74px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.media-panel,
.detail-panel,
.status-card {
    padding: 24px;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.thumbnail-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.thumbnail-card.is-active {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.16);
}

.thumbnail-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-summary {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.summary-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 136, 0.22);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 0, 0, 0.28));
}

.summary-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-card strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.55;
}

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

.summary-grid span {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.35;
}

.detail-panel {
    display: grid;
    gap: 18px;
}

.product-title {
    font-size: 3rem;
}

.product-description {
    color: var(--muted);
    line-height: 1.72;
    font-size: 1.04rem;
}

.sales-letter {
    display: grid;
    gap: 14px;
}

.sales-block {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.72);
}

.sales-block h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.05rem;
}

.sales-block p,
.sales-block small {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.sales-block small {
    display: block;
    margin-top: 10px;
    color: var(--soft);
}

.sales-block ul,
.sales-block ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.52;
}

.sales-highlight {
    border-color: rgba(0, 255, 136, 0.28);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.13), rgba(0, 212, 255, 0.08));
}

.sales-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sales-outcome {
    border-color: rgba(255, 0, 255, 0.24);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.11), rgba(0, 0, 0, 0.22));
}

.payment-note {
    border-color: rgba(0, 212, 255, 0.24);
}

.purchase-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.purchase-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-weight: 700;
}

.detail-actions {
    display: grid;
    gap: 12px;
}

.detail-actions-top {
    grid-template-columns: 1fr 1fr;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(14px);
}

.modal-panel {
    width: min(720px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 24px;
    border-radius: 22px;
    background: rgba(12, 16, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
}

.modal-header p {
    margin: 6px 0 0;
    color: var(--muted);
}

.icon-button {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 1.4rem;
}

.checkout-form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 7px;
}

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

.status-card {
    width: min(720px, 100%);
    margin: 0 auto;
    text-align: center;
}

.status-card-wide {
    width: min(920px, 100%);
}

.status-card h1 {
    font-size: 2.8rem;
}

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

.spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--cyan);
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-mark {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #06111d;
    background: var(--green);
    font-size: 1.7rem;
    font-weight: 900;
}

.status-mark.is-declined {
    color: #fff;
    background: #ef4444;
}

.status-mark.is-pending {
    background: var(--cyan);
}

.status-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.confirmation-summary {
    margin: 26px 0;
    text-align: left;
}

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

.summary-item,
.next-steps-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
}

.summary-item span,
.next-steps-panel h2 {
    display: block;
    color: var(--soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.summary-item strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    word-break: break-word;
}

.next-steps-panel {
    text-align: left;
    margin: 22px 0 10px;
    background: rgba(0, 212, 255, 0.09);
}

.next-steps-panel h2 {
    margin-top: 0;
    color: var(--cyan);
}

.next-steps-panel ol {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.75;
}

.reference-text {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88) !important;
}

.checkout-legal-note {
    color: var(--soft);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 12px 0 0;
}

.checkout-legal-note a {
    color: var(--cyan);
    font-weight: 800;
}

.legal-section {
    padding: 54px 0 74px;
}

.legal-card {
    max-width: 920px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    padding: 34px;
    color: var(--muted);
    line-height: 1.75;
}

.legal-card h1,
.legal-card h2 {
    color: #fff;
}

.legal-card h1 {
    font-family: 'Englebert', 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin: 0 0 16px;
}

.legal-card h2 {
    margin-top: 30px;
    color: var(--cyan);
}

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

.auth-section,
.account-section {
    padding: 54px 0 74px;
}

.auth-shell {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
    gap: 24px;
    align-items: stretch;
}

.auth-copy,
.auth-card,
.account-card,
.account-order-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.auth-copy,
.auth-card,
.account-card {
    padding: 26px;
}

.auth-copy h1,
.account-heading h1 {
    margin: 0;
    font-family: 'Englebert', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.05;
    color: transparent;
    background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 52%, #00ff88 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.auth-copy p,
.account-heading p,
.account-card p,
.account-order-card p,
.form-help {
    color: var(--muted);
    line-height: 1.65;
}

.auth-benefits {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.auth-benefits li {
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 700;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-tab {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.auth-tab.is-active {
    color: #06111d;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(0, 255, 136, 0.9));
}

.auth-form {
    display: grid;
    gap: 14px;
}

.form-alert {
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    color: #fff;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.36);
    font-weight: 700;
}

.form-alert.is-visible {
    display: block;
}

.form-alert.is-success {
    background: rgba(0, 255, 136, 0.14);
    border-color: rgba(0, 255, 136, 0.32);
}

.session-note,
.account-note {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.18);
    font-weight: 700;
}

.account-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.account-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.account-card {
    display: grid;
    gap: 16px;
}

.account-email {
    color: #fff;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.account-stats {
    display: grid;
    gap: 10px;
}

.account-stat {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
}

.account-stat span {
    display: block;
    color: var(--soft);
    font-size: 0.82rem;
    font-weight: 800;
}

.account-stat strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 1.25rem;
}

.account-orders {
    display: grid;
    gap: 14px;
}

.account-order-card {
    padding: 18px;
}

.order-card-head,
.order-card-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.order-card-head h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 1.18rem;
}

.order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.order-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.82rem;
    font-weight: 800;
}

.order-price {
    color: var(--green);
    font-size: 1.35rem;
    font-weight: 900;
    white-space: nowrap;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #06111d;
    background: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
}

.status-pill.is-paid {
    background: var(--green);
}

.status-pill.is-declined {
    color: #fff;
    background: #ef4444;
}

.status-pill.is-process {
    background: #a78bfa;
}

.status-pill.is-muted {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.loading-inline {
    padding: 24px;
    text-align: center;
    color: var(--muted);
}

.commerce-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 38px 0;
    color: var(--soft);
    background: rgba(0, 0, 0, 0.22);
}

.commerce-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.commerce-footer strong {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 980px) {
    .commerce-hero-grid,
    .shop-shell,
    .detail-grid,
    .auth-shell,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
    }

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

    .commerce-hero h1,
    .store-title,
    .product-title,
    .auth-copy h1,
    .account-heading h1 {
        font-size: 3rem;
    }
}

@media (max-width: 720px) {
    .commerce-container {
        width: min(100% - 24px, 1180px);
    }

    .commerce-header {
        position: relative;
    }

    .commerce-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .commerce-brand img {
        width: 118px;
    }

    .commerce-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .commerce-nav a,
    .commerce-nav button {
        flex: 0 0 auto;
        font-size: 0.86rem;
    }

    .commerce-hero {
        padding-top: 28px;
    }

    .commerce-hero-copy,
    .commerce-panel,
    .filter-panel,
    .media-panel,
    .detail-panel,
    .status-card,
    .auth-copy,
    .auth-card,
    .account-card,
    .account-order-card {
        padding: 20px;
        border-radius: 18px;
    }

    .commerce-hero h1,
    .store-title,
    .product-title,
    .status-card h1,
    .auth-copy h1,
    .account-heading h1 {
        font-size: 2.35rem;
    }

    .commerce-lead {
        font-size: 1rem;
    }

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

    .sort-control {
        min-width: 0;
    }

    .category-tabs {
        display: none;
    }

    .category-carousel {
        display: flex;
    }

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

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

    .products-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-heading,
    .order-card-head,
    .order-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .summary-grid,
    .detail-actions-top {
        grid-template-columns: 1fr;
    }

    .card-link,
    .primary-action,
    .secondary-action {
        width: 100%;
    }

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

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