/* =========================
   STORE PAGE
========================= */

.page-hero .store-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 820px;
    margin: 40px auto 0;
    padding: 36px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.store-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
    text-align: center;
}

.store-stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 42px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
    line-height: 1;
}

.store-stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gray-600);
}

.store-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.store-card {
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.store-card .status {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.store-card h2 {
    font-family: 'Noto Sans Myanmar', 'Inter', sans-serif;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 16px;
}

.store-card .desc {
    font-family: 'Noto Sans Myanmar', 'Inter', sans-serif;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 520px;
}

.store-card .checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-card .checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Sans Myanmar', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.store-card .checklist .check {
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.store-card .card-action {
    text-align: center;
    min-width: 280px;
    max-width: 320px;
}

.store-card .profile-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
}

.store-card .profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card .btn-advisor {
    width: 100%;
    margin-bottom: 16px;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.store-card .buy-price-line {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* MHC pre-launch offer panel */
.store-card .card-action.mhc-offer {
    min-width: 300px;
    max-width: 340px;
    padding: 28px 24px 22px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    background: var(--white);
}

.mhc-offer-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.mhc-offer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.mhc-offer-icon svg {
    width: 28px;
    height: 28px;
}

.mhc-offer-product {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mhc-offer-old {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.mhc-offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
}

.mhc-offer-save-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mhc-offer-save-row::before,
.mhc-offer-save-row::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.mhc-offer-save {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    white-space: nowrap;
}

.mhc-offer-limited {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 18px;
}

.mhc-offer .btn-advisor {
    margin-bottom: 20px;
}

.mhc-offer-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.mhc-offer-footer-divider {
    width: 1px;
    align-self: stretch;
    background: var(--gray-200);
}

.mhc-offer-perk {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mhc-offer-perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mhc-offer-perk-icon svg {
    width: 14px;
    height: 14px;
}

.mhc-offer-perk strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}

.mhc-offer-perk span:last-child {
    font-size: 10px;
    color: var(--gray-500);
    line-height: 1.35;
}

.store-card .card-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 16px;
    position: relative;
}

.store-card .card-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 3px;
    background: #f5f0e8;
    border-radius: 2px;
}

.store-card .icon-circle {
    width: 120px;
    height: 120px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    background: var(--gray-100);
}

.store-card .card-action .note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 0;
}

.store-card .card-action .note-icon {
    font-size: 14px;
    line-height: 1;
}

.waitlist-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.waitlist-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--black);
}

.waitlist-form .btn-muted {
    width: 100%;
    cursor: not-allowed;
    border: none;
    font-family: 'Inter', sans-serif;
    opacity: 0.7;
}

.waitlist-form .btn-muted.ready {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    cursor: pointer;
    opacity: 1;
}

.waitlist-form .btn-muted.ready:hover {
    background: #333;
}

.waitlist-success {
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .page-hero .store-stats {
        margin-top: 32px;
        padding: 24px 0;
    }

    .store-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .store-card .card-action {
        min-width: auto;
        max-width: none;
        margin: 0 auto;
    }

    .store-card .card-action.mhc-offer {
        max-width: 340px;
        width: 100%;
    }
}
