﻿/* account + store promoted page styles */
/* account */
body.accountPageV2 {
    --account2-surface: rgba(255,255,255,.88);
    --account2-surface-strong: rgba(255,255,255,.96);
    --account2-surface-soft: rgba(245,247,250,.88);
    --account2-border: rgba(16,24,40,.12);
    --account2-border-strong: rgba(16,24,40,.18);
    --account2-shadow: 0 18px 42px rgba(16,24,40,.09);
    --account2-shadow-soft: 0 8px 20px rgba(16,24,40,.06);
    --account2-danger: #b42318;
}

html[data-theme="dark"] body.accountPageV2 {
    --account2-surface: rgba(16,27,42,.78);
    --account2-surface-strong: rgba(20,31,47,.96);
    --account2-surface-soft: rgba(255,247,235,.06);
    --account2-border: rgba(155,172,197,.16);
    --account2-border-strong: rgba(214,184,141,.24);
    --account2-shadow: 0 20px 48px rgba(0,0,0,.30);
    --account2-shadow-soft: 0 10px 24px rgba(0,0,0,.22);
    --account2-danger: #f5a197;
}

.account2Wrap {
    margin-top: 18px;
    padding-bottom: 56px;
}

.account2TopGrid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(480px, 1.35fr);
    gap: 28px;
    align-items: stretch;
    padding: 18px 4px 0;
}

.account2Intro {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.account2Header {
    max-width: 520px;
}

.account2Body {
    margin: 12px 0 0;
    line-height: 1.55;
}

.account2Meta {
    margin-top: 6px;
    font-size: 13px;
}

.account2ProfileCard {
    justify-self: stretch;
}

.account2ProfileSkeleton {
    min-height: 112px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent),
        rgba(255,255,255,.55);
    background-size: 220px 100%, 100% 100%;
    animation: account2Shimmer 1.2s linear infinite;
}

html[data-theme="dark"] .account2ProfileSkeleton {
    background:
        linear-gradient(90deg, transparent, rgba(255,247,235,.08), transparent),
        rgba(255,247,235,.04);
}

.account2ProfileInner {
    display: grid;
    grid-template-columns: minmax(210px, .9fr) minmax(300px, 1.1fr);
    gap: 18px;
    align-items: center;
}

.account2ProfileMain,
.account2ProfileControls {
    min-width: 0;
}

.account2ProfileMain {
    display: grid;
    gap: 12px;
}

.account2ProfileControls {
    display: grid;
    gap: 12px;
}

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

.account2Avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(135deg, seagreen, #2d6880);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.account2ProfileName,
.account2FeatureTitle,
.account2StatValue {
    margin-bottom: 4px;
}

.account2ProfileSubline {
    color: var(--muted);
    font-size: 13px;
}

.account2MembershipBlock {
    display: grid;
    gap: 4px;
    padding-top: 2px;
}

.account2MembershipTop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.account2MembershipLogo {
    width: auto;
    height: 22px;
}

.account2MembershipStatus {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-transform: lowercase;
}

.account2MembershipStatus--danger {
    color: var(--account2-danger);
}

.account2MembershipMeta {
    color: var(--muted);
    font-size: 12px;
}

.account2MembershipMeta--danger {
    color: var(--account2-danger);
}

.account2ProfileEmail {
    color: var(--muted);
    font-size: 13px;
}

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

.account2Stat {
    min-width: 0;
    padding: 12px 12px 10px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
}

.account2Stat strong,
.account2Stat span {
    display: block;
}

.account2Stat span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: lowercase;
}

.account2HeroActions,
.account2InlineActions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.account2HeroActions .btn,
.account2InlineActions .btn,
.account2SecondaryBtn {
    min-height: 42px;
}

.account2SecondaryBtn {
    background: rgba(16,24,40,.06);
    color: var(--text);
}

html[data-theme="dark"] .account2SecondaryBtn {
    background: rgba(155,172,197,.10);
    color: var(--text);
}

.account2Workbench {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.account2TabRailWrap {
    justify-content: flex-start;
    margin-top: 0;
    padding: 0;
}

.account2TabRail {
    display: inline-flex;
    flex: 0 0 auto;
    justify-self: start;
    justify-content: center;
    width: fit-content;
    margin-left: 0;
}

.account2Tab {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: transparent;
    font: inherit;
    white-space: nowrap;
}

.account2Panel {
    display: none;
}

.account2Panel.isActive {
    display: block;
}

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

.account2PanelGrid--iq {
    grid-template-columns: 1fr;
}

.account2FeatureCard {
    min-width: 0;
}

.account2FeatureCard > .cardInner {
    display: grid;
    gap: 16px;
    align-content: start;
    height: 100%;
}

.account2FeatureCard--wide {
    grid-column: 1 / -1;
}

.account2FeatureHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.account2FeatureTitleWrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.account2IqWordmark {
    width: auto;
    height: 28px;
}

.account2MiniLabel {
    margin: 0 0 8px;
    color: #4d70a1;
    transform: none;
}

.account2Badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid var(--account2-border);
    border-radius: 999px;
    background: rgba(16,24,40,.05);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.account2Badge--success {
    border-color: rgba(2,122,72,.18);
    background: rgba(2,122,72,.08);
    color: #027a48;
}

.account2Badge--pending {
    border-color: rgba(181,132,36,.20);
    background: rgba(181,132,36,.10);
    color: #8a5c07;
}

.account2Badge--danger {
    border-color: rgba(180,35,24,.18);
    background: rgba(180,35,24,.08);
    color: var(--account2-danger);
}

html[data-theme="dark"] .account2Badge {
    background: rgba(255,247,235,.06);
}

html[data-theme="dark"] .account2Badge--success {
    border-color: rgba(140,202,168,.28);
    background: rgba(140,202,168,.12);
    color: #b9ebcf;
}

html[data-theme="dark"] .account2Badge--pending {
    border-color: rgba(216,199,100,.26);
    background: rgba(216,199,100,.12);
    color: #f2eab2;
}

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

.account2Checklist li {
    position: relative;
    min-height: 28px;
    padding: 9px 10px 9px 34px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
    font-size: 13px;
    line-height: 1.35;
}

.account2Checklist li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 14px;
    width: 8px;
    height: 5px;
    border-left: 2px solid seagreen;
    border-bottom: 2px solid seagreen;
    transform: rotate(-45deg);
}

.account2IqOverview {
    display: grid;
    gap: 18px;
}

.account2IqIntro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(212,223,95,.18), transparent 32%),
        radial-gradient(circle at bottom left, rgba(77,112,161,.16), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,249,252,.92));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.78),
        0 10px 24px rgba(16,24,40,.06);
}

html[data-theme="dark"] .account2IqIntro {
    border-color: rgba(255,247,235,.10);
    background:
        radial-gradient(circle at top right, rgba(212,223,95,.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(77,112,161,.16), transparent 30%),
        linear-gradient(180deg, rgba(20,28,40,.92), rgba(14,20,31,.92));
    box-shadow:
        inset 0 1px 0 rgba(255,247,235,.06),
        0 14px 28px rgba(0,0,0,.20);
}

.account2IqIntroTitle {
    margin: 0;
    font-size: 30px;
    line-height: 1.05;
}

.account2IqIntroText {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    max-width: 760px;
}

.account2IqIntroBadgeWrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.account2IqIntroBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(16,24,40,.08);
    background: linear-gradient(90deg, rgba(77,112,161,.14), rgba(212,223,95,.24));
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.account2IqIntroBtn {
    min-height: 42px;
    white-space: nowrap;
}

.account2IqModuleGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.account2IqModule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,250,252,.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.72),
        0 12px 26px rgba(16,24,40,.06);
}

html[data-theme="dark"] .account2IqModule {
    border-color: rgba(255,247,235,.10);
    background:
        linear-gradient(180deg, rgba(18,24,36,.96), rgba(12,18,28,.96));
    box-shadow:
        inset 0 1px 0 rgba(255,247,235,.05),
        0 14px 30px rgba(0,0,0,.24);
}

.account2IqModuleVisual {
    position: relative;
    min-height: 0;
    padding: 0;
    height: clamp(96px, 8vw, 132px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(16,24,40,.08);
    background: rgba(255,255,255,.65);
}

html[data-theme="dark"] .account2IqModuleVisual {
    border-color: rgba(255,247,235,.10);
    background: rgba(255,247,235,.04);
}

.account2IqModuleVisual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.account2IqModuleBody {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    width: 100%;
}

.account2IqModuleTitle {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.1;
}

.account2Checklist--compact {
    gap: 4px;
}

.account2Checklist--compact li {
    display: flex;
    align-items: flex-start;
    min-height: 0;
    padding-top: 4px;
    padding-bottom: 4px;
}

.account2Checklist--compact li::before {
    top: 9px;
}

.account2IqModuleFooter {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--account2-border);
}

.account2IqModuleMeta {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.account2IqSectionActions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.account2BillingMetric {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
}

.account2BillingMetricLabel {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.account2BillingMetricValue {
    margin-top: 4px;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}

.account2BillingMetricDetail {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.account2BillingList {
    display: grid;
    gap: 10px;
}

.account2BillingItem {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
}

.account2BillingItemMain,
.account2BillingItemSide {
    min-width: 0;
}

.account2BillingItemTitle {
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.account2BillingItemMeta,
.account2BillingItemLink {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.account2BillingItemLink a {
    color: inherit;
}

.account2BillingItemSide {
    display: grid;
    gap: 6px;
    justify-items: end;
    text-align: right;
}

.account2BillingItemAmount {
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 1320px) {
    .account2IqModuleGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .account2IqIntro {
        grid-template-columns: 1fr;
    }

    .account2IqIntroBadgeWrap {
        justify-content: flex-start;
    }

    .account2IqIntroTitle {
        font-size: 24px;
    }

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

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

    .account2IqSectionActions {
        flex-direction: column;
    }

    .account2BillingItem {
        flex-direction: column;
    }

    .account2BillingItemSide {
        width: 100%;
        justify-items: start;
        text-align: left;
    }
}

.account2FieldLabel,
.account2StatusNote,
.account2FeatureBody {
    color: var(--muted);
}

.account2FeatureBody,
.account2StatusNote {
    margin: 0;
}

.account2StatusNote[data-tone="error"] {
    color: var(--account2-danger);
}

.account2StatusNote[data-tone="success"] {
    color: #027a48;
}

html[data-theme="dark"] .account2StatusNote[data-tone="success"] {
    color: #b9ebcf;
}

.account2FieldLabel {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

.account2Select {
    max-width: 320px;
}

.account2SkinGrid {
    margin-top: -4px;
}

.themeSettingsControls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.themeSegmentedControl {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(96px, 1fr));
    gap: 3px;
    width: min(100%, 260px);
    padding: 3px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
}

.themeSegmentButton {
    min-height: 34px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.themeSegmentButton:hover:not(:disabled) {
    background: rgba(16,24,40,.06);
    color: var(--text);
}

.themeSegmentButton.isActive {
    border-color: var(--account2-border);
    background: var(--card);
    color: var(--text);
    box-shadow: none;
    cursor: default;
}

.themeSegmentButton:disabled:not(.isActive) {
    cursor: not-allowed;
    opacity: .5;
}

.themeFlatToggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.themeFlatToggle input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #2f6f64;
}

.themeFlatToggle:has(input:disabled) {
    cursor: not-allowed;
    opacity: .58;
}

html[data-theme="dark"] .themeSegmentButton:hover:not(:disabled) {
    background: rgba(255,255,255,.08);
}

html[data-theme="dark"] .themeSegmentButton.isActive {
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.10);
}

html[data-theme="dark"] .themeFlatToggle input {
    accent-color: #d2d662;
}

.account2UserCardShell .card {
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.account2UserCardShell .cardInner {
    padding: 0;
}

.account2OrdersList {
    display: grid;
    gap: 12px;
}

.account2OrdersList .card {
    margin: 0;
    border: 1px solid var(--account2-border);
    border-radius: 8px;
    background: var(--account2-surface-soft);
    box-shadow: none;
}

.account2OrdersList .cardInner {
    padding: 14px 16px;
}

.account2Empty {
    padding: 22px;
    border: 1px dashed var(--account2-border-strong);
    border-radius: 8px;
    background: var(--account2-surface-soft);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.account2Error {
    color: var(--account2-danger);
}

.account2Tab:focus-visible,
.account2Select:focus-visible,
.account2SecondaryBtn:focus-visible,
.account2HeroActions .btn:focus-visible,
.account2InlineActions .btn:focus-visible {
    outline: 3px solid rgba(77,112,161,.22);
    outline-offset: 2px;
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes account2Shimmer {
    from {
        background-position: -220px 0, 0 0;
    }
    to {
        background-position: calc(100% + 220px) 0, 0 0;
    }
}

@media (max-width: 980px) {
    .account2TopGrid,
    .account2ProfileInner,
    .account2PanelGrid,
    .account2PanelGrid--iq {
        grid-template-columns: 1fr;
    }

    .account2TabRailWrap {
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    .account2Wrap {
        margin-top: 8px;
        padding-inline: 14px;
    }

    .account2Header {
        padding-top: 12px;
    }

    .account2TabRail {
        justify-self: stretch;
        overflow-x: auto;
        max-width: 100%;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .account2TabRailWrap {
        justify-content: center;
    }

    .account2FeatureHead,
    .account2ProfileTop {
        flex-direction: column;
        align-items: flex-start;
    }

    .account2HeroActions,
    .account2InlineActions {
        flex-direction: column;
    }

    .account2HeroActions .btn,
    .account2InlineActions .btn,
    .account2SecondaryBtn,
    .account2Select {
        width: 100%;
        max-width: none;
    }
}

/* store */
body.storePageV2 {
    color: var(--text);
}

.commerceNotice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(181,132,36,.22);
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(212,223,95,.22), transparent 34%),
        linear-gradient(180deg, rgba(255,251,235,.86), rgba(255,255,255,.70));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.70),
        0 10px 22px rgba(16,24,40,.06);
}

.commerceNoticeBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(181,132,36,.14);
    color: #8a5c07;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.commerceNoticeCopy {
    display: grid;
    gap: 3px;
    min-width: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.commerceNoticeCopy strong {
    color: var(--text);
    font-size: 14px;
}

html[data-theme="dark"] .commerceNotice {
    border-color: rgba(216,199,100,.24);
    background:
        radial-gradient(circle at top right, rgba(212,223,95,.13), transparent 34%),
        linear-gradient(180deg, rgba(37,34,20,.70), rgba(18,24,36,.72));
    box-shadow:
        inset 0 1px 0 rgba(255,247,235,.06),
        0 12px 24px rgba(0,0,0,.20);
}

html[data-theme="dark"] .commerceNoticeBadge {
    background: rgba(216,199,100,.14);
    color: #f2eab2;
}

.store2Wrap {
    margin-top: 18px;
    padding-bottom: 56px;
}

.store2Hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 18px 0 22px;
}

.store2HeroCopy {
    min-width: 0;
}

.store2Lead {
    max-width: 720px;
    margin-bottom: 0;
}

.store2HeroMeta,
.store2ProductDescription,
.store2PriceNote {
    color: var(--muted);
}

.store2HeroMeta {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.store2FilterPills {
    align-self: end;
    flex: 0 0 auto;
    justify-self: end;
    margin-left: 0;
    max-width: 100%;
}

.store2FilterPills .navPill {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.store2ProductGrid {
    display: grid;
    gap: 16px;
}

.store2ProductCard {
    min-width: 0;
}

.store2ProductInner {
    display: grid;
    grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-height: 100%;
}

.store2ProductHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.store2ProductMedia {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(16,24,40,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.50);
}

html[data-theme="dark"] .store2ProductMedia {
    border-color: rgba(255,247,235,.12);
    background: rgba(255,247,235,.05);
}

.store2ProductMedia img,
.store2ProductMediaFallback {
    display: block;
    width: 100%;
    aspect-ratio: 691 / 479;
    border-radius: 12px;
}

.store2ProductMedia img {
    height: auto;
    object-fit: contain;
    background: rgba(255,255,255,.38);
}

html[data-theme="dark"] .store2ProductMedia img {
    background: rgba(10,16,26,.22);
}

.store2ProductMediaFallback {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 14px;
}

.store2ProductBody {
    display: grid;
    align-content: start;
    gap: 10px;
}

.store2ProductContent {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
}

.store2ProductTitle {
    margin-bottom: 0;
    color: var(--text);
}

.store2ProductTitle--iq {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.store2ProductTitleIqWordmark {
    display: block;
    width: auto;
    height: 28px;
}

.store2ProductDescription {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

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

.store2FeatureList li {
    position: relative;
    min-height: 24px;
    padding: 2px 0 2px 28px;
    font-size: 13px;
    line-height: 1.45;
}

.store2FeatureList li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 5px;
    border-left: 2px solid seagreen;
    border-bottom: 2px solid seagreen;
    transform: rotate(-45deg);
}

.store2PendingNote {
    margin: 0;
    padding: 9px 10px;
    border: 1px solid rgba(217,119,6,.22);
    border-radius: 12px;
    background: rgba(217,119,6,.08);
    color: #b54708;
    font-size: 12px;
    line-height: 1.45;
}

.store2PurchaseBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(16,24,40,.12);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.72),
        0 8px 18px rgba(16,24,40,.06);
}

html[data-theme="dark"] .store2PurchaseBox {
    border-color: rgba(255,247,235,.14);
    background:
        linear-gradient(180deg, rgba(255,247,235,.08), rgba(255,247,235,.04));
    box-shadow:
        inset 0 1px 0 rgba(255,247,235,.08),
        0 8px 18px rgba(0,0,0,.18);
}

.store2PurchaseTopline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.store2PurchaseTopline > .statusPill {
    flex: 0 0 auto;
}

.store2PriceBlock {
    display: inline-grid;
    min-width: 0;
}

.store2Price {
    display: inline-block;
}

.store2PriceNote {
    margin-top: 5px;
    font-size: 12px;
    text-transform: lowercase;
}

.store2ActionGroup {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.store2EmptyState,
.store2LoadError {
    padding: 22px;
    border: 1px dashed rgba(16,24,40,.16);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

html[data-theme="dark"] .store2EmptyState,
html[data-theme="dark"] .store2LoadError {
    border-color: rgba(255,247,235,.16);
}

.store2Skeleton {
    min-height: 520px;
    border: 1px solid rgba(16,24,40,.10);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent),
        rgba(255,255,255,.55);
    background-size: 220px 100%, 100% 100%;
    animation: store2Shimmer 1.2s linear infinite;
}

html[data-theme="dark"] .store2Skeleton {
    border-color: rgba(255,247,235,.12);
    background:
        linear-gradient(90deg, transparent, rgba(255,247,235,.08), transparent),
        rgba(255,247,235,.04);
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes store2Shimmer {
    from {
        background-position: -220px 0, 0 0;
    }
    to {
        background-position: calc(100% + 220px) 0, 0 0;
    }
}

@media (max-width: 1080px) {
    .store2Hero {
        grid-template-columns: 1fr;
    }

    .store2FilterPills {
        justify-self: start;
    }

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

@media (max-width: 720px) {
    .store2Wrap {
        margin-top: 8px;
    }

    .store2Hero {
        padding-top: 12px;
    }

    .store2FilterPills {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .store2FilterPills .navPill {
        justify-content: center;
    }

    .store2ActionGroup,
    .store2ProductAction,
    .store2ManageLink {
        width: 100%;
    }

    .store2PurchaseBox {
        align-items: stretch;
        flex-direction: column;
    }

    .store2PurchaseTopline {
        justify-content: space-between;
        width: 100%;
    }

    .commerceNotice {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .commerceNoticeBadge {
        width: fit-content;
    }
}

@media (max-width: 420px) {
    .store2ProductTitleIqWordmark {
        height: 25px;
    }
}
