/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.15);
}

.nav {
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.logo-text {
    background: linear-gradient(45deg, #ffffff, #f0f4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 8px;
    z-index: 1001;
}


/* Typography System - Font Combination 2 */
h1, .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2, .section-title, .hero-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.75rem;
}

p, .hero-description, .hero-sub-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-slogans {
    margin-bottom: 1.5rem;
}

.hero-slogan {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slogan:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-slogan:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-sub-description {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-image {
    text-align: center;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 1.4s;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-image {
    margin-bottom: 1rem;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-details {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.product-title {
    font-size: 36px;
    margin-bottom: 1rem;
    color: #1e293b;
}

.product-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 2rem;
}

.product-description p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing-section {
    margin: 2rem 0;
}

.pricing-section h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-option:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.pricing-option:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.pricing-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.pricing-option.best-value {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: visible;
}

.pricing-option.best-value::before {
    content: "🌟 EN İYİ FİYAT";
    position: absolute;
    top: -15px;
    right: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.pricing-option.best-value:hover {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

/* Radio buttons removed - pricing options are now directly clickable */

.pack-info {
    display: flex;
    flex-direction: column;
}

.pack-size {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.pack-count {
    color: #64748b;
    font-size: 14px;
}

.pack-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.pack-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pack-savings {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

/* Buy button removed - pricing options are now directly clickable */

.secure-checkout-note {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 1rem;
}

.product-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    font-style: italic;
}

/* Ingredients Section */
.ingredients-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.ingredients-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.ingredients-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 18px;
}

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

.ingredient-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ingredient-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.ingredient-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.ingredient-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
}

.ingredient-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 1rem;
}

.ingredients-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #667eea;
}

.ingredients-info p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.ingredients-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    transition: all 0.3s ease;
}

.ingredients-info a:hover {
    color: #5a6fd8;
    border-bottom-color: #5a6fd8;
}

.ingredients-note {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Usage Section */
.usage-section {
    padding: 4rem 0;
    background: white;
}

.usage-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.usage-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    font-size: 18px;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.usage-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
}

.usage-conclusion p {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.usage-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.usage-note p {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 24px;
    margin-bottom: 1rem;
}

.review-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
}

.reviewer {
    color: #667eea;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    cursor: pointer;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 20px;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-logo {
    margin-top: 1rem;
    text-align: center;
}

.paytr-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.paytr-logo:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-slogan {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
        padding: 8px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        line-height: 32px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .ingredient-card {
        padding: 1.5rem;
    }
}

/* Payment Result Styles */
.payment-result {
    text-align: center;
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.payment-result .success-icon,
.payment-result .error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.payment-result h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.payment-result p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.order-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.order-details h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.order-details p {
    margin-bottom: 10px;
    color: #333;
}

.check-status-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.check-status-btn:hover {
    background: #0056b3;
    color: white;
}

.retry-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.retry-btn:hover {
    background: #c82333;
}

/* ===== MODERN SUCCESS MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 24px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-button:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

/* Success Header */
.success-header {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #1f2937;
    padding: 40px 30px;
    text-align: center;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.success-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.success-icon-container {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.success-checkmark {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.checkmark-circle {
    width: 60px;
    height: 60px;
    position: relative;
}

.checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    animation: checkmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 3;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1f2937;
    position: relative;
    z-index: 2;
}

.order-number {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Card Styles */
.order-details-card,
.shipping-card,
.benefits-section,
.next-steps {
    margin: 20px 30px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-details-card:hover,
.shipping-card:hover,
.benefits-section:hover,
.next-steps:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
}

.card-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    color: #6b7280;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

/* Order Details */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.item-package {
    color: #64748b;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
}

/* Shipping Info */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #8b5cf6;
}

.shipping-label {
    font-weight: 500;
    color: #374151;
}

.shipping-value {
    font-weight: 600;
    color: #1f2937;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #10b981;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(4px);
}

.benefit-check {
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #1f2937;
    font-weight: 500;
}

/* Contact Line */
.contact-line {
    text-align: center;
    padding: 16px 20px;
    color: #6b7280;
    font-size: 14px;
    border-top: 1px solid #e5e7eb;
}

/* Error Modal Styles */
.error-content {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border: 2px solid #fecaca;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.error-header {
    text-align: center;
    margin-bottom: 30px;
}

.error-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

.error-title {
    color: #dc2626;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}

.error-message {
    color: #7f1d1d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Action Buttons */
.modal-actions {
    padding: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
    background: #f9fafb;
    border-radius: 0 0 24px 24px;
    border-top: 1px solid #e5e7eb;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmark-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .success-header {
        padding: 30px 20px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .order-details-card,
    .shipping-card,
    .benefits-section,
    .next-steps {
        margin: 15px 20px;
        padding: 20px;
    }
    
    .modal-actions {
        padding: 20px;
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .order-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .item-price {
        font-size: 1.2rem;
    }
}

/* Information Boxes Section */
.info-boxes-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-box h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.info-box p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.why-choose-item {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.why-choose-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.why-choose-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-choose-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.cta-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #5a6fd8;
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.final-cta-button:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Pricing Section Updates */
.pricing-description {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-sub-description {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Natural Treatment Section */
.natural-treatment-section {
    padding: 80px 0;
    background: white;
}

.treatment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.treatment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.treatment-image {
    text-align: center;
}

.treatment-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Conclusion Section */
.conclusion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.conclusion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
}

.conclusion-cta {
    margin-top: 40px;
}

.conclusion-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Enhanced Pricing Options */
.pricing-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pack-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.pack-description p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.pricing-note p {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Why Choose Icons */
.why-choose-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .treatment-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-box {
        padding: 25px 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-item {
        padding: 25px 20px;
    }
    
    .final-cta-button {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    .pricing-description {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .treatment-text p {
        font-size: 1rem;
    }
    
    .conclusion-content p {
        font-size: 1.1rem;
    }
    
    .conclusion-cta p {
        font-size: 1.2rem;
    }
}

/* Natural Methods Section */
.natural-methods-section {
    padding: 80px 0;
    background: #f8fafc;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.method-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.method-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.methods-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.methods-note p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.solution-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.benefit-item .benefit-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-text h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.solution-cta {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px solid #667eea;
}

.solution-cta p {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.solution-image {
    text-align: center;
}

.solution-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-conclusion {
    margin-top: 50px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.solution-conclusion p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.why-choose-conclusion {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-conclusion p {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 25px 20px;
    }
    
    .solution-text p {
        font-size: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-item .benefit-icon {
        margin-right: 0;
    }
    
    .solution-cta {
        padding: 20px;
    }
    
    .solution-cta p {
        font-size: 1rem;
    }
}
