:root {
    --primary: #FC743E;
    --brand-yellow: #FCD160;
    --brand-blue: #98E3FA;
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    --text-main: #2D3436;
    --text-light: #545C5F;
    --success: #27AE60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    font-family: 'Noto Sans Arabic', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 40px 0;
    background: var(--bg-white);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
    .container {
        margin: 40px auto;
        border-radius: 20px;
        min-height: auto;
        overflow: hidden;
    }
}

/* Minimal Header Section */
.header-minimal {
    text-align: center;
    padding: 30px 20px 20px;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.sub-logo {
    height: 70px;
    width: auto;
}

.intro-minimal {
    margin-bottom: 20px;
}

.intro-minimal h2 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 800;
}

.intro-minimal p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tagline-small {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0.8;
}

.intro-store-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.intro-store-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f3f5;
    color: var(--text-main);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
    border: 1px solid #e1e4e8;
}

.intro-store-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.intro-store-btn i {
    font-size: 1rem;
}

/* Pricing Card */
.pricing-card {
    margin: 0 20px 30px;
    padding: 30px;
    border: 2px solid var(--brand-yellow);
    border-radius: 20px;
    background: linear-gradient(180deg, #FFFCF0 0%, #FFFFFF 100%);
    position: relative;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-yellow);
    color: var(--text-main);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 5px 0;
}

/* Billing Toggle Styles */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 10px;
}

.toggle-label {
    font-size: 0.95rem;
    color: #636e72;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--primary);
}

.save-badge {
    background: #E8F8F0;
    color: #27AE60;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 4px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dfe6e9;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    right: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(-22px);
}

.slider.round:before {
    border-radius: 50%;
}

.card-header .price span {
    font-size: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 600;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li i {
    color: var(--success);
    margin-top: 5px;
}

.features-list li span {
    font-size: 0.95rem;
}

.features-list li strong {
    color: var(--text-main);
}

/* Payment Section */
.payment-section {
    padding: 0 20px;
}

.payment-section h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-right: 5px;
}

.payment-option {
    border: 1px solid #E1E4E8;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.option-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Copy Box styling */
.copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 10px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #2d3436;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-box:hover {
    background: #f1f3f5;
    border-color: #ced4da;
}

.copy-box i {
    color: #636e72;
    font-size: 0.9rem;
}

.success-message {
    margin-top: 15px;
    color: #27ae60;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

.option-header span {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.option-header i.fa-wallet,
.option-header i.fa-credit-card,
.option-header i.fa-apple-pay,
.option-header i.fa-apple,
.option-header i.fa-google-play,
.option-header i.fa-key {
    margin-left: 10px;
    font-size: 1.8rem;
    /* Changed from 1.2rem */
}

.payment-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-left: 12px;
    border-radius: 6px;
}

.option-header span i {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
    margin-left: 12px;
}

.option-header i.fa-apple {
    color: var(--text-main);
}

.option-header i.fa-google-play {
    color: #34A853;
}

.option-header i.fa-chevron-down {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: #CCC;
}

.payment-option.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.steps {
    display: none;
    padding: 0 20px 20px;
    background: #FAFBFD;
}

.payment-option.active .steps {
    display: block;
}

.steps ol {
    margin: 15px 20px 20px 0;
}

.steps li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.btn-action {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Utils */
.hidden {
    display: none !important;
}

.btn-back {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    margin: 30px auto;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-back i {
    margin: 0 8px;
}

.btn-back:hover {
    color: var(--primary);
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 116, 62, 0.1);
}