/* Enhanced Paywall and Access Page Styles */


/* Main container with better spacing and header integration */

.paywall-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 80px);
    /* Account for header */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    /* Increased for better header spacing */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}


/* Enhanced paywall content card */

.paywall-content {
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
    border: 1px solid var(--border-color);
}


/* Product header with gradient background */

.product-header {
    background: linear-gradient(135deg, var(--primary-bg), #1e293b);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.product-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}


/* Enhanced pricing section */

.pricing-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), #10b981);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-bg);
    margin: 0;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-description::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}


/* Enhanced purchase section */

.purchase-section {
    padding: 2rem;
    background: #f8fafc;
    margin: 0 2rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.purchase-form {
    max-width: 500px;
    margin: 0 auto;
}


/* CRITICAL FIX: Enhanced form styling for better readability */

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    /* Dark text for better contrast */
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    /* Darker border for better visibility */
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #ffffff;
    /* White background */
    color: #1e293b;
    /* Dark text */
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.form-group input::placeholder {
    color: #6b7280;
    /* Darker placeholder text */
    font-weight: 400;
    opacity: 0.8;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    /* Darker text for better readability */
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
}


/* Enhanced CTA button */

.cta-button {
    width: 100%;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-accent), #2563eb);
    color: var(--text-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.loading {
    background: var(--text-muted);
    cursor: not-allowed;
}

.cta-button.loading:hover {
    transform: none;
    box-shadow: var(--shadow);
}


/* Enhanced login section for access codes */

.login-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #10b981;
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem;
    text-align: center;
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.login-section h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
}


/* Enhanced access code display */

.access-code-display {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #10b981;
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.access-code-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.access-code-display h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.access-code-container {
    margin: 2rem 0;
}

.access-code-container label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #059669;
    font-size: 0.95rem;
}

.access-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    border: 2px solid #10b981;
    border-radius: var(--radius);
    padding: 1.25rem;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    letter-spacing: 0.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.access-code-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.copy-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.copy-btn:hover {
    background: #059669;
    transform: scale(1.05);
}


/* Enhanced help section */

.help-section {
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem;
    border: 1px solid var(--border-color);
}

.help-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.help-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-accent);
    transition: var(--transition);
}

.help-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.help-item i {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.help-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.help-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.help-item a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
}

.help-item a:hover {
    text-decoration: underline;
}


/* Enhanced guarantee section */

.guarantee {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee i {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guarantee p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}


/* Enhanced access actions */

.access-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.email-note {
    margin-top: 1.5rem;
    color: #059669;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.email-note i {
    font-size: 1.1rem;
}


/* Responsive Design */

@media (max-width: 768px) {
    .paywall-container {
        padding: 1rem;
        padding-top: 100px;
    }
    .product-header {
        padding: 2rem 1rem;
    }
    .product-header h1 {
        font-size: 2rem;
    }
    .product-header p {
        font-size: 1rem;
    }
    .pricing-section,
    .purchase-section,
    .login-section,
    .access-code-display,
    .help-section,
    .guarantee {
        margin: 1rem;
        padding: 1.5rem;
    }
    .price {
        font-size: 3rem;
    }
    .help-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .access-code-box {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 1.25rem;
        letter-spacing: 0.15rem;
        padding: 1rem;
    }
    .access-actions {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-header h1 {
        font-size: 1.75rem;
    }
    .price {
        font-size: 2.5rem;
    }
    .product-icon {
        width: 60px;
        height: 60px;
    }
    .product-icon i {
        font-size: 1.5rem;
    }
    .help-item {
        padding: 1rem;
    }
    .help-item i {
        font-size: 1.25rem;
    }
    .guarantee-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .guarantee i {
        font-size: 1.5rem;
    }
}


/* Bundle Access Page Styles */

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.access-content {
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    position: relative;
    border: 1px solid var(--border-color);
}

.success-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bounce 1s ease-in-out;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.success-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.success-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.access-code-display {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.access-code-display h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.access-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 0 auto;
    max-width: 400px;
}

.access-code span {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

.copy-btn {
    background: #3b82f6;
    border: 1px solid #2563eb;
    border-radius: 8px;
    padding: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.copy-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.access-code-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    font-style: italic;
}

.bundle-contents {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
}

.bundle-contents h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-card .product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.access-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.access-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.bonus-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.bonus-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bonus-item i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.bonus-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bonus-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.next-steps {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.support-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.support-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.support-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.support-btn.secondary {
    background: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-btn.secondary:hover {
    background: #374151;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* Responsive Design for Bundle Access */

@media (max-width: 768px) {
    .access-container {
        padding: 1rem;
        padding-top: 100px;
    }
    .success-header h1 {
        font-size: 2rem;
    }
    .success-header p {
        font-size: 1rem;
    }
    .bundle-contents,
    .bonus-section,
    .next-steps,
    .support-section {
        padding: 2rem 1rem;
    }
    .products-grid,
    .bonus-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .support-actions {
        flex-direction: column;
        align-items: center;
    }
    .support-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* Enhanced Trust Elements for Paywall */


/* Trust Strip */

.trust-strip {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.trust-badge i {
    color: #ffd700;
    font-size: 1rem;
}


/* Security Badges */

.security-badges {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.security-badge i {
    font-size: 1.2rem;
    color: #4caf50;
}

.security-badge .fab.fa-stripe {
    color: #6772e5;
}


/* CRITICAL FIX: Enhanced Form Accessibility for Paywall */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    /* Dark text for better contrast */
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    /* Darker border for better visibility */
    border-radius: 8px;
    background: #ffffff;
    /* White background */
    color: #1e293b;
    /* Dark text */
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    background: #ffffff;
}

.form-group input::placeholder {
    color: #6b7280;
    /* Darker placeholder text */
    font-weight: 400;
    opacity: 0.8;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    /* Darker text for better readability */
    line-height: 1.4;
    font-weight: 500;
}


/* Enhanced Guarantee Section */

.guarantee {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
}

.guarantee-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-content i {
    font-size: 1.5rem;
    color: #4caf50;
    margin-top: 0.25rem;
}

.guarantee-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    /* Dark text for better contrast */
    font-size: 1.1rem;
    font-weight: 600;
}

.guarantee-content p {
    color: #374151;
    /* Darker text for better readability */
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}


/* Enhanced Login Section */

.login-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-section h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    /* Dark text for better contrast */
    font-size: 1.2rem;
    font-weight: 600;
}


/* Enhanced Access Code Display */

.access-code-display {
    text-align: center;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.access-code-display h3 {
    color: #1e293b;
    /* Dark text for better contrast */
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.access-code-display p {
    color: #374151;
    /* Darker text for better readability */
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.access-code-container {
    margin: 1.5rem 0;
}

.access-code-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    /* Dark text for better contrast */
    font-weight: 600;
    font-size: 0.95rem;
}

.access-code-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.access-code-box span {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 2px;
    flex: 1;
}

.copy-btn {
    background: #2196f3;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #1976d2;
    transform: translateY(-1px);
}

.copy-btn:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}

.access-actions {
    margin-top: 1.5rem;
}

.email-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #374151;
    /* Darker text for better readability */
    font-weight: 500;
}

.email-note i {
    margin-right: 0.5rem;
    color: #ffd700;
}


/* Mobile Responsiveness */

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    .badge-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    .access-code-box {
        flex-direction: column;
        gap: 0.5rem;
    }
    .copy-btn {
        width: 100%;
    }
}


/* Enhanced Focus States */

.cta-button:focus,
.copy-btn:focus,
.form-group input:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}


/* Loading States */

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2196f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Print Styles */

@media print {
    .trust-strip,
    .security-badges,
    .login-section {
        display: none !important;
    }
    .paywall-content {
        background: #ffffff !important;
        color: #000000 !important;
    }
    .product-header h1,
    .product-header p {
        color: #000000 !important;
    }
}