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

:root {
    --store-bg: #f6f8fc;
    --store-surface: #ffffff;
    --store-surface-alt: #eef3fb;
    --store-text: #0f172a;
    --store-muted: #5f6b85;
    --store-border: rgba(15, 23, 42, 0.08);
    --store-primary: #6a1bce;
    --store-secondary: #1e88e5;
    --store-gradient: linear-gradient(90deg, #6a1bce 0%, #4a3bd1 50%, #1e88e5 100%);
    --store-shadow: 0 22px 60px rgba(40, 56, 97, 0.12);
}

* { box-sizing: border-box; }

body.store-body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(106, 27, 206, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(30, 136, 229, 0.12), transparent 26%),
        var(--store-bg);
    color: var(--store-text);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.store-shell {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 64px;
}

.store-mobile-topbar,
.store-mobile-bottom-nav,
.store-mobile-drawer,
.store-mobile-overlay {
    display: none;
}

.store-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.store-header-bar,
.store-category-bar,
.store-flash,
.store-errors,
.store-hero,
.store-subhero,
.store-category-card,
.store-product-card,
.store-product-media,
.store-product-summary,
.store-buy-box,
.store-order-summary,
.store-cart-item,
.store-form-panel,
.store-empty-state {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow);
}

.store-header-bar,
.store-category-bar,
.store-account-nav-bar {
    border-radius: 24px;
}

.store-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
}

.store-account-nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 12px;
    margin-top: 12px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow);
    position: relative;
    overflow: visible;
    z-index: 25;
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-brand img {
    width: 170px;
    height: 54px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
}

.store-brand strong {
    font-size: 1.05rem;
}

.store-brand span {
    display: block;
    color: var(--store-muted);
    margin-top: 4px;
}

.store-brand.is-mobile {
    display: none;
}

.store-utility-nav,
.store-category-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-utility-nav form {
    margin: 0;
}

.store-utility-nav a,
.store-category-bar a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--store-muted);
    transition: 0.2s ease;
}

.store-utility-button {
    padding: 10px 16px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--store-muted);
    font: inherit;
    cursor: pointer;
}

.store-utility-nav a:hover,
.store-utility-button:hover,
.store-category-bar a:hover,
.store-cart-link {
    background: var(--store-surface-alt);
    color: var(--store-text);
}

.store-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.store-language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(106, 27, 206, 0.08);
    color: var(--store-primary) !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-language-switch:hover {
    background: rgba(106, 27, 206, 0.14) !important;
    box-shadow: 0 12px 24px rgba(106, 27, 206, 0.14);
    transform: translateY(-1px);
}

.store-language-switch.compact {
    min-width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(17, 28, 56, 0.12);
}

.store-cart-link span {
    min-width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--store-gradient);
    color: #fff;
    font-size: 0.8rem;
}

.store-category-bar {
    margin-top: 12px;
    padding: 14px 18px;
    overflow-x: auto;
}

.store-account-nav-link,
.store-account-nav-item summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    color: var(--store-text);
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-account-nav-item summary::-webkit-details-marker {
    display: none;
}

.store-account-nav-link:hover,
.store-account-nav-item summary:hover,
.store-account-nav-item[open] summary {
    background: rgba(106, 27, 206, 0.08);
    color: var(--store-primary);
}

.store-account-nav-item {
    position: relative;
}

.store-account-nav-caret {
    width: 8px;
    height: 8px;
    border-inline-end: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.store-account-nav-item[open] .store-account-nav-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.store-account-dropdown {
    position: absolute;
    inset-inline-start: 0;
    top: calc(100% + 10px);
    min-width: 240px;
    display: grid;
    padding: 10px 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--store-border);
    box-shadow: 0 22px 48px rgba(24, 39, 75, 0.14);
    z-index: 30;
}

.store-account-dropdown a {
    padding: 14px 18px;
    color: var(--store-text);
    transition: background 0.2s ease, color 0.2s ease;
}

.store-account-dropdown a:hover {
    background: rgba(106, 27, 206, 0.06);
    color: var(--store-primary);
}

.store-main {
    display: grid;
    gap: 28px;
    margin-top: 32px;
    min-width: 0;
}

.store-footer {
    margin-top: 40px;
    padding: 34px 30px 24px;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top left, rgba(106, 27, 206, 0.09), transparent 30%),
        radial-gradient(circle at top right, rgba(30, 136, 229, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
    box-shadow: 0 20px 45px rgba(44, 62, 102, 0.12);
}

.store-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.store-footer-brand {
    display: grid;
    gap: 14px;
}

.store-footer-title {
    margin: 0;
    color: var(--store-ink);
    font-size: 1.05rem;
    font-weight: 800;
}

.store-footer-description {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.9;
}

.store-footer-links {
    display: grid;
    align-content: start;
    gap: 12px;
}

.store-footer-links h3 {
    margin: 0 0 4px;
    color: var(--store-ink);
    font-size: 1rem;
}

.store-footer-links a {
    color: var(--store-muted);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.store-footer-links a:hover {
    color: var(--store-primary);
    transform: translateX(-2px);
}

.store-footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--store-muted);
    font-size: 0.94rem;
}

.store-footer-bottom p,
.store-footer-bottom span {
    margin: 0;
}

.store-kicker {
    color: var(--store-secondary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-size: 0.84rem;
}

.store-hero,
.store-product-layout,
.store-cart-layout {
    display: grid;
    /*grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);*/
    gap: 24px;
    align-items: stretch;
    min-width: 0;
}

.store-payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
    min-width: 0;
}

.store-hero,
.store-subhero,
.store-product-media,
.store-product-summary,
.store-order-summary,
.store-payment-panel,
.store-payment-summary-card,
.store-payment-note-card,
.store-payment-result-card,
.store-form-panel,
.store-empty-state {
    padding: 28px;
    border-radius: 28px;
}

.store-hero h1,
.store-subhero h1,
.store-product-summary h1 {
    margin: 0 0 14px;
    /*font-size: clamp(2rem, 5vw, 4rem);*/
    line-height: 1.05;
}

.store-hero p:not(.store-kicker),
.store-subhero p:not(.store-kicker),
.store-product-summary p {
    color: var(--store-muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

.store-hero-panel {
    display: grid;
    gap: 16px;
}

.store-hero-copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

.store-hero-copy p {
    margin: 0;
}

.store-domain-hero-panel {
    gap: 18px;
}

.store-domain-search-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(106, 27, 206, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(29, 36, 68, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 30px 70px rgba(24, 31, 61, 0.28);
}

.store-domain-search-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -60px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.3), transparent 72%);
    pointer-events: none;
}

.store-domain-search-label {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.store-domain-search-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1.2fr) minmax(110px, 0.4fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.store-domain-search-prefix,
.store-domain-search-input span {
    color: rgba(255, 255, 255, 0.66);
}

.store-domain-search-prefix {
    font-weight: 700;
    font-size: 0.98rem;
}

.store-domain-search-input {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    padding: 0 6px;
}

.store-domain-search-input strong {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1;
    white-space: nowrap;
}

.store-domain-search-input span {
    font-size: 1rem;
    white-space: nowrap;
}

.store-domain-search-form {
    display: grid;
    gap: 16px;
}

.store-domain-search-field,
.store-domain-search-select {
    min-width: 0;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    padding: 0 18px;
    outline: none;
}

.store-domain-search-field::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.store-domain-search-select {
    cursor: pointer;
}

.store-domain-search-select option {
    color: var(--store-text);
}

.store-domain-search-field:focus,
.store-domain-search-select:focus {
    border-color: rgba(96, 165, 250, 0.54);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.store-domain-result--hero {
    margin-top: 0;
}

.store-domain-result--hero .store-domain-result-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96));
}

.store-domain-tld-list,
.store-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-domain-tld-list {
    margin-top: 16px;
}

.store-domain-tld-list span,
.store-hero-trust span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
}

.store-domain-tld-list span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.store-hero-trust span {
    background: rgba(74, 59, 209, 0.08);
    border: 1px solid rgba(74, 59, 209, 0.12);
    color: var(--store-text);
}

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

.store-domain-highlight {
    display: grid;
    gap: 8px;
    min-height: 122px;
    padding: 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.92));
    border: 1px solid rgba(74, 59, 209, 0.1);
    box-shadow: 0 18px 40px rgba(46, 64, 108, 0.12);
}

.store-domain-highlight strong {
    font-size: 1rem;
}

.store-domain-highlight span {
    color: var(--store-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.store-hero-stat {
    background: linear-gradient(135deg, rgba(106, 27, 206, 0.08), rgba(30, 136, 229, 0.08));
    border: 1px solid rgba(74, 59, 209, 0.12);
    border-radius: 24px;
    padding: 22px;
}

.store-hero-stat strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.store-hero-actions,
.store-section-head,
.store-product-foot,
.store-summary-line,
.store-summary-total,
.store-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.store-button,
.store-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button:hover,
.store-inline-link:hover {
    transform: translateY(-2px);
}

.store-button.primary {
    background: var(--store-gradient);
    color: #fff;
    box-shadow: 0 14px 30px rgba(74, 59, 209, 0.25);
}

.store-button.secondary,
.store-inline-link {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 251, 0.98));
    color: #20304f;
    border: 1px solid rgba(106, 27, 206, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 10px 24px rgba(56, 73, 110, 0.08);
}

.store-button.secondary:hover,
.store-inline-link:hover {
    color: var(--store-primary);
    border-color: rgba(106, 27, 206, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 16px 30px rgba(74, 59, 209, 0.12);
}

.store-section {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.store-payment-panel,
.store-payment-summary-card,
.store-payment-note-card,
.store-payment-result-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow);
}

.store-payment-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.store-payment-head small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.09);
    color: var(--store-secondary);
    font-weight: 700;
}

.store-payment-head h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.store-payment-head p,
.store-payment-result-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.9;
}

.store-payment-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-payment-brands span {
    padding: 10px 14px;
    border-radius: 14px;
    background: #f3f6fd;
    border: 1px solid rgba(15, 23, 42, 0.07);
    font-weight: 700;
}

.store-payment-form-shell {
    padding: 20px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(106, 27, 206, 0.08), transparent 26%),
        linear-gradient(180deg, #fcfdff, #f4f7fd);
    border: 1px solid rgba(74, 59, 209, 0.08);
}

.store-payment-summary,
.store-payment-lines {
    display: grid;
    gap: 18px;
}

.store-payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    margin-top: 18px;
    border-radius: 20px;
    background: #f4f7fd;
}

.store-payment-total span {
    color: var(--store-muted);
}

.store-payment-total strong {
    font-size: 1.35rem;
}

.store-payment-note-card h3 {
    margin: 0 0 14px;
}

.store-payment-note-list {
    margin: 0;
    padding-inline-start: 18px;
    color: var(--store-muted);
    line-height: 2;
}

.store-payment-result {
    display: grid;
    place-items: center;
}

.store-payment-result-card {
    width: min(760px, 100%);
    text-align: center;
}

.store-payment-result-icon {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: var(--store-gradient);
}

.store-payment-result.is-failed .store-payment-result-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.store-table-wrap {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--store-border);
    border-radius: 28px;
    box-shadow: var(--store-shadow);
}

.store-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.store-table th,
.store-table td {
    padding: 18px 20px;
    text-align: start;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    vertical-align: middle;
    white-space: nowrap;
}

.store-table th {
    color: var(--store-muted);
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(238, 243, 251, 0.72);
}

.store-table tbody tr:last-child td {
    border-bottom: 0;
}

.store-table tbody tr:hover {
    background: rgba(106, 27, 206, 0.03);
}

.store-table td .store-button {
    min-width: 140px;
}

.store-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.store-card-actions .store-button {
    min-width: 180px;
}

.store-section-head h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.store-category-grid,
.store-product-grid,
.store-feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.store-category-card,
.store-product-card {
    border-radius: 24px;
    overflow: hidden;
}

.store-category-card {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.store-category-card span,
.store-product-copy span {
    color: var(--store-secondary);
    font-size: 0.85rem;
    font-weight: 700;
}

.store-category-card strong,
.store-product-copy h3 {
    font-size: 1.2rem;
    margin: 0;
}

.store-category-card p,
.store-product-copy p {
    color: var(--store-muted);
    line-height: 1.75;
    margin: 0;
}

.store-product-media-card,
.store-product-media {
    background: linear-gradient(180deg, #f7faff, #edf3fb);
}

.store-product-media-card {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    padding: 18px;
}

.store-product-copy {
    display: grid;
    gap: 10px;
    padding: 20px;
    min-width: 0;
}

.store-product-flags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.store-product-flags small {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef3fb;
    color: var(--store-muted);
}

.store-product-copy p,
.store-category-card p,
.store-product-meta span,
.store-feature-list article,
.store-cart-copy strong,
.store-cart-copy p,
.store-summary-line span {
    overflow-wrap: anywhere;
}

.store-product-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(106, 27, 206, 0.12), rgba(30, 136, 229, 0.12));
    border-radius: 22px;
    color: var(--store-text);
    font-weight: 700;
    padding: 24px;
    text-align: center;
}

.store-product-media {
    min-height: 460px;
    display: grid;
    place-items: center;
    min-width: 0;
}

.store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-product-summary,
.store-buy-box,
.store-order-summary,
.store-cart-item,
.store-form-panel {
    display: grid;
    gap: 18px;
    min-width: 0;
    align-content: start;
}

.store-product-meta,
.store-feature-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-product-meta span,
.store-feature-list article {
    padding: 10px 14px;
    border-radius: 18px;
    background: #f1f5fb;
    color: var(--store-muted);
}

.store-buy-box label,
.store-checkout-form label,
.store-cart-copy label {
    display: grid;
    gap: 8px;
}

.store-buy-box input,
.store-buy-box select,
.store-buy-box textarea,
.store-checkout-form input,
.store-checkout-form select,
.store-checkout-form textarea,
.store-cart-copy input,
.store-cart-copy select,
.store-cart-copy textarea {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--store-border);
    background: #fff;
    padding: 12px 14px;
    font: inherit;
    color: var(--store-text);
}

.store-buy-box select,
.store-checkout-form select,
.store-cart-copy select {
    appearance: none;
    cursor: pointer;
    padding-inline-end: 50px;
    background-image:
        linear-gradient(45deg, transparent 50%, #5f6b85 50%),
        linear-gradient(135deg, #5f6b85 50%, transparent 50%),
        linear-gradient(180deg, #ffffff, #f6f8fc);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px),
        0 0;
    background-size:
        6px 6px,
        6px 6px,
        100% 100%;
    background-repeat: no-repeat;
    font-weight: 600;
}

.store-account-view-form input[readonly] {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-color: rgba(110, 128, 164, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 26px rgba(65, 84, 122, 0.05);
    color: #182544;
    font-weight: 600;
}

.store-account-view-grid label span {
    color: #24406b;
    font-weight: 700;
}

.store-buy-box textarea,
.store-checkout-form textarea,
.store-cart-copy textarea {
    min-height: 110px;
    resize: vertical;
}

.store-cart-item {
    grid-template-columns: 160px minmax(0, 1fr) 180px;
    padding: 20px;
    border-radius: 24px;
    align-items: start;
}

.store-cart-thumb {
    border-radius: 18px;
    overflow: hidden;
    background: #edf3fb;
    min-height: 140px;
    display: grid;
    place-items: center;
}

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

.store-cart-thumb div {
    padding: 16px;
    text-align: center;
}

.store-cart-copy strong {
    font-size: 1.2rem;
}

.store-cart-copy p,
.store-summary-line span {
    color: var(--store-muted);
}

.store-cart-actions {
    flex-direction: column;
    align-items: stretch;
}

.store-checkout-form {
    display: grid;
    gap: 18px;
    min-width: 0;
    align-content: start;
}

.store-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.store-form-grid .span-2 {
    grid-column: span 2;
}

.store-form-grid label {
    display: grid;
    gap: 8px;
    color: var(--store-text);
    font-weight: 700;
    font-size: 0.96rem;
}

.store-form-grid input,
.store-form-grid select,
.store-form-grid textarea {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    color: var(--store-text);
    padding: 0 16px;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-form-grid textarea {
    padding: 14px 16px;
    min-height: 180px;
    resize: vertical;
}

.store-form-grid input:focus,
.store-form-grid select:focus,
.store-form-grid textarea:focus {
    border-color: rgba(106, 27, 206, 0.52);
    box-shadow: 0 0 0 4px rgba(106, 27, 206, 0.12);
    outline: none;
}

.store-form-grid input[readonly] {
    background: rgba(241, 245, 255, 0.9);
    color: #475569;
}

.store-ticket-form {
    align-items: start;
}

.store-summary-total {
    padding-top: 14px;
    border-top: 1px solid var(--store-border);
}

.store-flash,
.store-errors {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
}

.store-flash {
    color: #0f5132;
    background: #eaf8ef;
}

.store-errors {
    color: #842029;
    background: #fff0f1;
}

.store-errors p {
    margin: 0;
}

.store-mobile-menu-toggle,
.store-mobile-close {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.store-mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef3fb;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.store-mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #1d2a45;
    border-radius: 99px;
}

.store-mobile-cart {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--store-gradient);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(74, 59, 209, 0.24);
}

.store-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: min(88vw, 360px);
    height: 100vh;
    background: #ffffff;
    z-index: 70;
    padding: 22px 18px 28px;
    box-shadow: 0 30px 80px rgba(17, 28, 56, 0.22);
    transform: translate3d(-110%, 0, 0);
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    visibility: hidden;
}

[dir="rtl"] .store-mobile-drawer {
    left: auto;
    right: 0;
    transform: translate3d(110%, 0, 0);
}

.store-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 19, 39, 0.34);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.store-menu-open .store-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
}

.store-menu-open .store-mobile-drawer {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.store-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.store-mobile-drawer-head strong {
    display: block;
    font-size: 1.15rem;
}

.store-mobile-drawer-head span {
    color: var(--store-muted);
    font-size: 0.92rem;
}

.store-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eef3fb;
    color: #1d2a45;
    font-size: 1.6rem;
    line-height: 1;
}

.store-mobile-drawer-links,
.store-mobile-drawer-cats {
    display: grid;
    gap: 10px;
}

.store-mobile-drawer-links {
    margin-bottom: 22px;
}

.store-mobile-drawer-links a,
.store-mobile-drawer-cats a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    background: #f4f7fd;
    color: #1d2a45;
    font-weight: 600;
}

.store-mobile-drawer-menu {
    display: grid;
    gap: 8px;
}

.store-mobile-drawer-menu summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    background: #f4f7fd;
    color: #1d2a45;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.store-mobile-drawer-menu summary::-webkit-details-marker {
    display: none;
}

.store-mobile-drawer-submenu {
    display: grid;
    gap: 8px;
    padding-inline-start: 14px;
}

.store-mobile-drawer-cats p {
    margin: 0 0 6px;
    color: var(--store-muted);
    font-weight: 700;
}

.store-mobile-logout {
    width: 100%;
    margin-top: 22px;
}

.store-mobile-bottom-nav {
    position: fixed;
    inset-inline: 12px;
    bottom: 12px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(17, 28, 56, 0.16);
    border-radius: 18px;
    padding: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.store-mobile-bottom-nav a,
.store-mobile-bottom-nav button {
    min-height: 46px;
    border-radius: 14px;
    border: 0;
    background: transparent;
    color: #1d2a45;
    font: inherit;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.store-mobile-bottom-nav span {
    width: 24px;
    height: 24px;
    border-radius: 99px;
    background: var(--store-gradient);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 0.78rem;
}

.store-auth-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 220px);
}

.store-auth-panel {
    width: min(100%, 560px);
    padding: 34px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow);
}

.store-auth-header {
    text-align: center;
    margin-bottom: 18px;
}

.store-auth-top-actions {
    display: flex;
    justify-content: flex-start;
    margin: -4px 0 8px;
}

.store-auth-panel h1 {
    margin: 0 0 10px;
    /*font-size: clamp(1.85rem, 4vw, 2.5rem);*/
    line-height: 1.2;
    font-weight: 700;
}

.store-auth-panel p:not(.store-kicker) {
    color: var(--store-muted);
    line-height: 1.8;
    margin: 0;
}

.store-auth-form-panel {
    display: grid;
    gap: 16px;
}

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

.store-auth-form label {
    display: grid;
    gap: 8px;
}

.store-auth-form label span {
    font-size: 0.94rem;
    font-weight: 700;
    color: #22304f;
}

.store-auth-form input,
.store-auth-form textarea,
.store-auth-form select {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(110, 128, 164, 0.22);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
    padding: 0 18px;
    font: inherit;
    color: var(--store-text);
    outline: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 24px rgba(65, 84, 122, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.store-auth-form textarea {
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
}

.store-auth-form input:focus,
.store-auth-form textarea:focus,
.store-auth-form select:focus {
    border-color: rgba(74, 59, 209, 0.45);
    box-shadow:
        0 0 0 4px rgba(106, 27, 206, 0.08),
        0 16px 36px rgba(74, 59, 209, 0.14);
    transform: translateY(-1px);
}

.store-auth-form input::placeholder,
.store-auth-form textarea::placeholder {
    color: #9aa6bf;
}

.store-auth-form.alt {
    margin-top: -4px;
}

.store-text-action {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--store-primary);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    justify-self: flex-start;
}

.store-text-action:hover {
    color: var(--store-secondary);
}

.store-auth-otp-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: #eef3fb;
    color: var(--store-text);
    font-weight: 600;
    line-height: 1.8;
}

.store-auth-resend {
    display: grid;
    gap: 12px;
}

.store-auth-resend-text {
    margin: 0;
    color: var(--store-muted);
    text-align: center;
}

.store-auth-resend-text strong {
    color: var(--store-primary);
    margin-inline-start: 6px;
}

.store-auth-resend.is-ready .store-auth-resend-text strong {
    color: #0f8a4b;
}

.store-auth-resend .store-button[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

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

.store-auth-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #eef4ff, #e7eefb);
    border: 1px solid rgba(112, 132, 170, 0.18);
    color: #162544;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.store-phone-field {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 0;
    border: 1px solid rgba(110, 128, 164, 0.22);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 24px rgba(65, 84, 122, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.store-country-picker,
.store-phone-input-wrap {
    margin: 0;
}

.store-country-picker {
    position: relative;
    border-inline-end: 1px solid rgba(110, 128, 164, 0.18);
}

.store-country-picker select,
.store-phone-input-wrap input {
    width: 100%;
    min-height: 56px;
    border: 0;
    background: transparent;
    padding: 0 16px;
    font: inherit;
    color: var(--store-text);
    outline: none;
}

.store-country-picker select {
    appearance: none;
    cursor: pointer;
    font-weight: 600;
    padding-inline-end: 36px;
    background-image:
        linear-gradient(45deg, transparent 50%, #5f6b85 50%),
        linear-gradient(135deg, #5f6b85 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 25px,
        calc(100% - 12px) 25px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.store-phone-input-wrap input::placeholder {
    color: #a0aac0;
}

.store-phone-field:focus-within {
    border-color: rgba(74, 59, 209, 0.45);
    box-shadow:
        0 0 0 4px rgba(106, 27, 206, 0.08),
        0 16px 36px rgba(74, 59, 209, 0.14);
    transform: translateY(-1px);
}

.store-auth-form .store-button.primary {
    width: 100%;
    min-height: 56px;
    border-radius: 12px;
}

.store-auth-form .store-button.secondary {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    background: #edf2fb;
    border: 1px solid rgba(110, 128, 164, 0.16);
}

.store-dashboard-hero,
.store-dashboard-grid {
    display: grid;
    gap: 20px;
}

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

.store-dashboard-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: stretch;
}

.store-dashboard-hero > div,
.store-dashboard-profile-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--store-shadow);
    border-radius: 28px;
    padding: 28px;
}

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

.store-dashboard-sidebar {
    position: sticky;
    top: 102px;
}

.store-dashboard-sidebar-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--store-shadow);
    border-radius: 24px;
    overflow: hidden;
}

.store-dashboard-sidebar-head {
    padding: 18px 22px;
    font-weight: 800;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.store-dashboard-nav {
    display: grid;
}

.store-dashboard-nav a,
.store-dashboard-nav button {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--store-text);
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    border-inline: 0;
    border-top: 0;
    text-align: start;
    font: inherit;
    cursor: pointer;
}

.store-domain-form {
    display: grid;
    gap: 20px;
}

.store-domain-form-domain,
.store-domain-form label {
    display: grid;
    gap: 10px;
}

.store-domain-form-domain span,
.store-domain-form label span {
    font-weight: 700;
    color: #24304c;
}

.store-domain-form input,
.store-domain-form select,
.store-domain-form textarea {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(112, 130, 168, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 34px rgba(74, 59, 209, 0.06);
    padding: 0 18px;
    font: inherit;
    color: var(--store-text);
    outline: none;
}

.store-domain-form textarea {
    min-height: 130px;
    padding: 16px 18px;
}

.store-domain-form input:focus,
.store-domain-form select:focus,
.store-domain-form textarea:focus {
    border-color: rgba(74, 59, 209, 0.35);
    box-shadow: 0 0 0 4px rgba(106, 27, 206, 0.08), 0 18px 34px rgba(74, 59, 209, 0.12);
}

.store-domain-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.store-check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(241, 245, 255, 0.8);
    border: 1px solid rgba(112, 130, 168, 0.18);
    font-weight: 700;
}

.store-check-item input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    box-shadow: none;
    padding: 0;
}

.store-domain-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.store-domain-form-grid.is-disabled {
    opacity: 0.48;
}

.store-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.store-form-actions .store-button {
    min-height: 52px;
}

.store-domain-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-domain-tab {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(112, 130, 168, 0.18);
    background: rgba(244, 247, 255, 0.9);
    color: var(--store-muted);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.store-domain-tab.is-active {
    background: var(--store-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(74, 59, 209, 0.18);
}

.store-domain-tab-panel.is-hidden {
    display: none;
}

.store-domain-renew-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 26px;
    align-items: start;
}

.store-domain-renew-card,
.store-domain-security-card,
.store-summary-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 130, 168, 0.14);
    border-radius: 26px;
    box-shadow: var(--store-shadow);
    padding: 24px;
}

.store-domain-renew-header,
.store-domain-security-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.store-domain-renew-header strong,
.store-domain-security-head h2,
.store-summary-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.2;
}

.store-domain-renew-header p,
.store-domain-security-card p,
.store-summary-card span {
    margin: 8px 0 0;
    color: var(--store-muted);
}

.store-domain-renew-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(42, 187, 118, 0.12);
    color: #1e8c56;
    font-weight: 800;
}

.store-summary-card {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}

.store-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(112, 130, 168, 0.14);
}

.store-summary-highlight {
    padding: 22px;
    border-radius: 22px;
    background: var(--store-gradient);
    color: #fff;
    display: grid;
    gap: 8px;
}

.store-domain-security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 920px) {
    .store-domain-form-grid,
    .store-domain-security-grid,
    .store-domain-renew-layout {
        grid-template-columns: 1fr;
    }

    .store-summary-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .store-check-item,
    .store-form-actions .store-button,
    .store-domain-tab {
        width: 100%;
        justify-content: center;
    }
}

.store-dashboard-nav a:last-child,
.store-dashboard-nav button:last-child {
    border-bottom: 0;
}

.store-dashboard-nav a:hover,
.store-dashboard-nav button:hover,
.store-dashboard-nav .is-active {
    background: var(--store-surface-alt);
    color: var(--store-primary);
}

.store-dashboard-content,
.store-dashboard-section,
.store-dashboard-info-grid,
.store-summary-stack {
    display: grid;
    gap: 20px;
}

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

.store-summary-stack {
    gap: 12px;
}

.store-dashboard-section[hidden] {
    display: none;
}

.store-email-modal[hidden] {
    display: none;
}

.store-email-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.store-email-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
}

.store-email-modal-dialog {
    position: relative;
    width: min(760px, calc(100% - 28px));
    margin: 6vh auto 0;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
    padding: 28px;
    z-index: 1;
}

.store-email-modal-close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--store-surface-alt);
    color: var(--store-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.store-email-modal-body {
    max-height: 55vh;
    overflow: auto;
    line-height: 1.9;
    color: var(--store-muted);
    white-space: pre-wrap;
}

.store-manage-users-block,
.store-manage-users-invite {
    display: grid;
    gap: 18px;
}

.store-manage-users-head,
.store-manage-users-note {
    color: var(--store-muted);
}

.store-manage-user-primary {
    display: grid;
    gap: 8px;
}

.store-manage-user-primary strong {
    font-size: 1rem;
}

.store-permission-mode {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.store-permission-mode label,
.store-permission-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--store-text);
}

.store-permission-mode input[type="radio"],
.store-permission-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--store-secondary);
    flex: 0 0 18px;
}

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

.store-permission-item {
    line-height: 1.75;
}

.store-permission-item input[disabled] + span {
    opacity: 0.8;
}

.store-product-media-card.is-static {
    display: block;
    cursor: default;
}

.store-hosting-package-card {
    height: 100%;
}

.store-hosting-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--store-muted);
}

.store-hosting-feature-list li {
    position: relative;
    padding-inline-start: 18px;
}

.store-hosting-feature-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--store-primary), var(--store-secondary));
}

.store-hosting-package-form {
    display: grid;
    gap: 14px;
}

.store-domain-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.store-domain-option-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(246, 249, 255, 0.9);
    cursor: pointer;
}

.store-domain-option-card input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--store-secondary);
}

.store-domain-option-card strong {
    display: block;
    margin-bottom: 6px;
}

.store-domain-option-card span {
    color: var(--store-muted);
    line-height: 1.7;
}

.store-domain-service-form {
    display: grid;
    gap: 20px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94));
    box-shadow: 0 24px 48px rgba(44, 62, 102, 0.1);
}

.store-domain-service-switcher {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-domain-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.store-domain-service-grid label,
.store-hosting-package-form label {
    display: grid;
    gap: 8px;
}

.store-domain-service-grid label span,
.store-hosting-package-form label span {
    font-size: 0.95rem;
    color: var(--store-muted);
}

.store-domain-service-grid input,
.store-domain-service-grid select,
.store-hosting-package-form textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.96);
    color: var(--store-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.store-domain-service-grid select,
.store-form-grid select {
    appearance: none;
    cursor: pointer;
    padding-inline-end: 52px;
    background-image:
        linear-gradient(45deg, transparent 50%, #5f6b85 50%),
        linear-gradient(135deg, #5f6b85 50%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px),
        0 0;
    background-size:
        6px 6px,
        6px 6px,
        100% 100%;
    background-repeat: no-repeat;
    font-weight: 600;
}

.store-hosting-package-form textarea {
    min-height: 104px;
    padding: 14px 16px;
    resize: vertical;
}

.store-domain-transfer-code {
    grid-column: 1 / -1;
}

.store-domain-transfer-code[hidden] {
    display: none !important;
}

.store-domain-check-actions {
    margin-top: 18px;
}

.store-domain-result {
    margin-top: 22px;
}

.store-domain-result-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(248, 250, 255, 0.96), rgba(239, 245, 255, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 38px rgba(44, 62, 102, 0.1);
}

.store-domain-result[data-state="available"] .store-domain-result-card {
    border-color: rgba(22, 163, 74, 0.2);
    background:
        linear-gradient(180deg, rgba(243, 253, 247, 0.98), rgba(232, 249, 238, 0.96));
    box-shadow: 0 20px 42px rgba(22, 163, 74, 0.12);
}

.store-domain-result[data-state="unavailable"] .store-domain-result-card,
.store-domain-result[data-state="error"] .store-domain-result-card {
    border-color: rgba(220, 38, 38, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 246, 246, 0.98), rgba(255, 238, 238, 0.96));
    box-shadow: 0 20px 42px rgba(220, 38, 38, 0.1);
}

.store-domain-result[data-state="available"] [data-storefront-domain-status] {
    color: #15803d;
}

.store-domain-result[data-state="available"] [data-storefront-domain-message] {
    color: #166534;
}

.store-domain-result[data-state="available"] [data-storefront-domain-price] {
    color: #166534;
}

.store-domain-result[data-state="unavailable"] [data-storefront-domain-status],
.store-domain-result[data-state="error"] [data-storefront-domain-status] {
    color: #dc2626;
}

.store-domain-result[data-state="unavailable"] [data-storefront-domain-message],
.store-domain-result[data-state="error"] [data-storefront-domain-message] {
    color: #b91c1c;
}

.store-domain-result[data-state="unavailable"] [data-storefront-domain-price],
.store-domain-result[data-state="error"] [data-storefront-domain-price] {
    color: #991b1b;
}

.store-domain-result-card h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.store-domain-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-domain-result-meta strong {
    font-size: 1.8rem;
}

.store-domain-result-meta span {
    color: var(--store-muted);
}

.store-domain-result-actions {
    display: flex;
    justify-content: flex-start;
}

.store-domain-suggestions {
    display: grid;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.store-domain-suggestions-title {
    font-size: 1rem;
}

.store-domain-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.store-domain-suggestion-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--store-text);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.store-domain-suggestion-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 136, 229, 0.22);
    box-shadow: 0 14px 28px rgba(33, 54, 102, 0.12);
}

.store-domain-suggestion-chip span {
    color: var(--store-muted);
    overflow-wrap: anywhere;
    text-align: start;
}

.store-domain-alert {
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(254, 243, 199, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.24);
    color: #92400e;
    box-shadow: 0 18px 40px rgba(146, 64, 14, 0.08);
}

.store-domain-actions-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.store-domain-action-dropdown {
    position: relative;
}

.store-domain-action-dropdown .store-account-dropdown {
    inset-inline-end: 0;
    inset-inline-start: auto;
    min-width: 220px;
}

.store-domain-details-grid,
.store-domain-owner-grid,
.store-domain-status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.store-domain-info-card,
.store-domain-owner-card,
.store-domain-status-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(40, 56, 97, 0.1);
    display: grid;
    gap: 8px;
}

.store-domain-info-card span,
.store-domain-owner-card span,
.store-domain-status-card span {
    color: var(--store-muted);
    font-size: 0.92rem;
}

.store-domain-info-card strong,
.store-domain-owner-card strong,
.store-domain-status-card strong {
    font-size: 1.15rem;
}

.store-domain-info-card p,
.store-domain-owner-card p,
.store-domain-status-card p {
    margin: 0;
    color: var(--store-muted);
}

.store-domain-panel {
    display: grid;
    gap: 20px;
}

.store-empty-state.is-error {
    border-color: rgba(220, 38, 38, 0.16);
    background: rgba(254, 242, 242, 0.92);
    color: #991b1b;
}

.store-ticket-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.store-ticket-filter {
    display: grid;
    gap: 8px;
    min-width: 200px;
}

.store-ticket-filter label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--store-muted);
}

.store-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid transparent;
    white-space: nowrap;
}

.store-status-chip.is-success {
    color: #166534;
    border-color: rgba(22, 101, 52, 0.2);
    background: rgba(220, 252, 231, 0.95);
}

.store-status-chip.is-danger {
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.2);
    background: rgba(254, 226, 226, 0.95);
}

.store-status-chip.is-neutral {
    color: #334155;
    border-color: rgba(51, 65, 85, 0.2);
    background: rgba(226, 232, 240, 0.95);
}

.store-ticket-thread {
    display: grid;
    gap: 14px;
}

.store-ticket-message {
    border-radius: 18px;
    border: 1px solid var(--store-border);
    padding: 16px 18px;
}

.store-ticket-message.is-client {
    background: #ffffff;
}

.store-ticket-message.is-staff {
    background: rgba(106, 27, 206, 0.06);
    border-color: rgba(106, 27, 206, 0.16);
}

.store-ticket-message header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.store-ticket-message header strong {
    font-size: 0.95rem;
}

.store-ticket-message header span {
    font-size: 0.8rem;
    color: var(--store-muted);
}

.store-ticket-message p {
    margin: 0;
    line-height: 1.85;
    white-space: pre-wrap;
    word-break: break-word;
}

.store-dashboard-profile-card {
    display: grid;
    gap: 10px;
    align-content: start;
}

.store-dashboard-profile-card strong {
    font-size: 1.35rem;
}

.store-dashboard-profile-card span {
    color: var(--store-muted);
    overflow-wrap: anywhere;
}

.store-dashboard-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.store-dashboard-badges small {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef3fb;
    color: #1d2a45;
    font-weight: 700;
}

.store-dashboard-badges small.is-verified {
    background: rgba(40, 167, 69, 0.12);
    color: #0b6a2b;
}

.store-dashboard-map-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-dashboard-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
    align-self: start;
}

.store-dashboard-form-actions .store-button {
    min-width: 190px;
    min-height: 50px;
    padding-inline: 24px;
    border-radius: 16px;
    flex: 0 0 auto;
}

.store-dashboard-form-actions.is-account-view {
    justify-content: center;
    padding-top: 10px;
}

.store-payment-method-editor {
    margin-top: 24px;
}

.store-payment-method-panel {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top right, rgba(106, 27, 206, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
    box-shadow: 0 22px 48px rgba(55, 77, 126, 0.12);
}

.store-payment-method-fields {
    display: grid;
    gap: 18px;
}

.store-payment-method-note {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.8;
}

.store-field-error {
    color: #b42318;
    font-size: 0.86rem;
    font-weight: 700;
}

.store-payment-method-billing-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(244, 248, 255, 0.95);
}

.store-payment-method-billing-card strong {
    display: block;
    margin-bottom: 8px;
}

.store-payment-method-billing-card p {
    margin: 0;
    color: var(--store-muted);
    overflow-wrap: anywhere;
}

.store-payment-method-default {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--store-text);
    font-weight: 700;
}

.store-payment-method-default input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--store-secondary);
}

.store-payment-method-cell {
    display: grid;
    gap: 6px;
}

.store-payment-method-cell strong {
    font-size: 0.98rem;
}

.store-payment-method-cell span {
    color: var(--store-muted);
    overflow-wrap: anywhere;
}

.store-dashboard-map-block {
    display: grid;
    gap: 16px;
}

.store-dashboard-map-canvas {
    width: 100%;
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(40, 56, 97, 0.1);
    background:
        radial-gradient(circle at top left, rgba(106, 27, 206, 0.14), transparent 30%),
        linear-gradient(180deg, #f8fbff, #edf3fb);
}

.store-dashboard-map-block .store-checkout-form label,
.store-dashboard-map-block label {
    margin: 0;
}

.store-dashboard-map-block input[type="text"] {
    min-height: 54px;
}

.store-dashboard-otp-form {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 1100px) {
    .store-shell {
        width: min(100% - 28px, 100%);
    }

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

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

    .store-dashboard-sidebar {
        position: static;
    }

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

    .store-header-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .store-brand {
        justify-content: center;
        text-align: center;
    }

    .store-utility-nav {
        justify-content: center;
    }

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

    .store-hero,
    .store-product-layout,
    .store-cart-layout,
    .store-payment-layout,
    .store-dashboard-hero,
    .store-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .store-product-media {
        min-height: 380px;
    }
}

@media (max-width: 920px) {
    .store-header {
        position: static;
    }

    .store-hero {
        padding: 24px;
    }

    .store-domain-search-shell {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .store-domain-search-prefix {
        display: none;
    }

    .store-domain-search-input {
        justify-content: center;
        text-align: center;
        padding: 6px 0 2px;
    }

    .store-domain-search-field,
    .store-domain-search-select,
    .store-domain-search-shell .store-button {
        width: 100%;
    }

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

    .store-domain-actions-bar,
    .store-domain-details-grid,
    .store-domain-owner-grid,
    .store-domain-status-grid {
        grid-template-columns: 1fr;
    }

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

    .store-account-nav-bar {
        display: none;
    }

    .store-hero-actions,
    .store-section-head,
    .store-product-foot,
    .store-summary-line,
    .store-summary-total,
    .store-payment-head,
    .store-payment-total {
        flex-wrap: wrap;
    }

    .store-cart-item {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .store-cart-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .store-shell {
        width: min(100% - 20px, 100%);
        padding: 10px 0 100px;
    }

    .store-footer {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }

    .store-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .store-header {
        position: static;
    }

    .store-header-bar,
    .store-category-bar {
        display: none;
    }

    .store-mobile-topbar,
    .store-mobile-bottom-nav,
    .store-mobile-drawer,
    .store-mobile-overlay,
    .store-brand.is-mobile {
        display: grid;
    }

    .store-mobile-topbar {
        grid-template-columns: 46px minmax(0, 1fr) 46px 46px;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 16px 38px rgba(17, 28, 56, 0.12);
    }

    .store-brand.is-mobile {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
    }

    .store-brand.is-mobile img {
        width: 42px;
        height: 42px;
        padding: 6px;
    }

    .store-brand.is-mobile strong,
    .store-brand.is-mobile span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .store-section-head,
    .store-product-foot,
    .store-summary-line,
    .store-summary-total {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-category-grid,
    .store-product-grid,
    .store-account-grid,
    .store-form-grid,
    .store-domain-highlights {
        grid-template-columns: 1fr;
    }

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

    .store-table {
        min-width: 720px;
    }

    .store-table th,
    .store-table td {
        padding: 16px 14px;
    }

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

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

    .store-product-summary,
    .store-product-media,
    .store-order-summary,
    .store-payment-panel,
    .store-payment-summary-card,
    .store-payment-note-card,
    .store-payment-result-card,
    .store-form-panel,
    .store-subhero,
    .store-empty-state,
    .store-dashboard-hero > div,
    .store-dashboard-profile-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .store-product-media {
        min-height: 300px;
    }

    .store-product-placeholder {
        min-height: 180px;
        font-size: 0.95rem;
    }

    .store-cart-item {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .store-cart-thumb {
        min-height: 200px;
    }

    .store-cart-actions {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
    }

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

    .store-country-picker {
        border-inline-end: 0;
        border-bottom: 1px solid var(--store-border);
    }

    .store-form-grid .span-2 {
        grid-column: auto;
    }

    .store-auth-panel {
        padding: 26px 18px;
        width: 100%;
    }

    .store-dashboard-map-actions {
        flex-direction: column;
    }

    .store-dashboard-form-actions {
        justify-content: stretch;
    }

    .store-dashboard-form-actions .store-button {
        width: 100%;
    }

    .store-payment-method-billing-card {
        align-items: flex-start;
        padding: 18px;
    }

    .store-dashboard-map-canvas {
        min-height: 300px;
        border-radius: 18px;
    }

    .store-auth-form .store-button.primary,
    .store-auth-form .store-button.secondary {
        min-height: 52px;
    }

    .store-domain-search-card {
        padding: 20px 18px;
    }
}

@media (max-width: 480px) {
    .store-shell {
        width: min(100% - 14px, 100%);
    }

    .store-footer-bottom {
        flex-direction: column;
    }

    .store-mobile-topbar,
    .store-hero,
    .store-product-summary,
    .store-product-media,
    .store-order-summary,
    .store-form-panel,
    .store-subhero,
    .store-empty-state,
    .store-auth-panel {
        border-radius: 18px;
    }

    .store-mobile-topbar {
        padding: 10px 12px;
        gap: 10px;
    }

    .store-hero h1,
    .store-subhero h1,
    .store-product-summary h1 {
        /*font-size: clamp(1.55rem, 9vw, 2.2rem);*/
        line-height: 1.15;
    }

    .store-section-head h2 {
        font-size: 1.25rem;
    }

    .store-domain-search-input {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .store-domain-search-input strong {
        font-size: 1.35rem;
    }

    .store-domain-tld-list span,
    .store-hero-trust span {
        width: 100%;
    }

    .store-product-copy,
    .store-category-card {
        padding: 16px;
    }

    .store-product-copy h3,
    .store-category-card strong {
        font-size: 1.05rem;
    }

    .store-product-meta span,
    .store-feature-list article {
        width: 100%;
        justify-content: center;
    }

    .store-cart-thumb {
        min-height: 160px;
    }

    .store-auth-panel h1 {
        font-size: 1.65rem;
    }

    .store-country-picker select,
    .store-phone-input-wrap input,
    .store-checkout-form input,
    .store-checkout-form textarea,
    .store-checkout-form select,
    .store-auth-form input,
    .store-auth-form textarea,
    .store-auth-form select {
        min-height: 52px;
        padding-inline: 14px;
    }
    .store-domain-tld-list {display: none;}
}

@media (max-width: 375px) {
        .store-domain-tld-list {display: none;}
}
