/* Store Entry Page — matches landing mockup */

.html-store-entry-page .master-wrapper-content {
    background: #fff;
}

.store-entry-page {
    max-width: 420px;
    margin: 40px auto 60px;
    padding: 0 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.store-entry-header {
    margin-bottom: 28px;
}

.store-entry-welcome {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 400;
    color: #888;
    line-height: 1.3;
}

.store-entry-store-name {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.2;
}

.store-entry-divider-line {
    display: block;
    width: 100%;
    height: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.store-entry-actions {
    margin-bottom: 36px;
}

/* Primary CTA — Continue as Guest */
.store-entry-btn {
    display: block;
    box-sizing: border-box;
    text-decoration: none !important;
    border-radius: 4px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.store-entry-btn .btn-title {
    display: block;
    font-weight: 700;
    line-height: 1.3;
}

.store-entry-btn .btn-subtitle {
    display: block;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 4px;
}

.store-entry-btn-primary {
    width: 100%;
    padding: 16px 20px;
    background-color: #e31c23;
    border: none;
    color: #fff !important;
}

.store-entry-btn-primary:hover,
.store-entry-btn-primary:focus {
    background-color: #c4181e;
    color: #fff !important;
}

.store-entry-btn-primary .btn-title {
    font-size: 18px;
    color: #fff;
}

.store-entry-btn-primary .btn-subtitle {
    font-size: 13px;
    color: #fff;
    opacity: 0.95;
}

/* OR divider */
.store-entry-or {
    display: flex;
    align-items: center;
    margin: 22px 0;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.store-entry-or::before,
.store-entry-or::after {
    content: "";
    flex: 1;
    border-top: 1px solid #e0e0e0;
}

.store-entry-or span {
    padding: 0 14px;
}

/* Secondary buttons — Sign In / Create Account */
.store-entry-secondary {
    display: flex;
    gap: 12px;
}

.store-entry-btn-secondary {
    flex: 1;
    padding: 14px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #1a2744 !important;
}

.store-entry-btn-secondary:hover,
.store-entry-btn-secondary:focus {
    background-color: #ebebeb;
    border-color: #ccc;
    color: #1a2744 !important;
}

.store-entry-btn-secondary .btn-title {
    font-size: 15px;
    color: #1a2744;
}

.store-entry-btn-secondary .btn-subtitle {
    font-size: 12px;
    color: #888;
}

/* Contact footer */
.store-entry-contact {
    margin-top: 8px;
}

.store-entry-contact p {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.store-entry-contact a {
    color: #888 !important;
    text-decoration: underline !important;
}

.store-entry-contact a:hover {
    color: #555 !important;
}

/* Tablet / Mobile — stack secondary buttons */
@media (max-width: 480px) {
    .store-entry-page {
        margin: 24px auto 40px;
        padding: 0 16px;
    }

    .store-entry-store-name {
        font-size: 26px;
    }

    .store-entry-btn-primary {
        padding: 14px 16px;
    }

    .store-entry-btn-primary .btn-title {
        font-size: 16px;
    }

    .store-entry-secondary {
        flex-direction: column;
        gap: 10px;
    }

    .store-entry-btn-secondary {
        padding: 14px 16px;
    }

    .store-entry-contact p {
        font-size: 12px;
    }
}
