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

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

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    color: #4C1D95;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-brand .subtitle {
    display: block;
    font-size: 0.8rem;
    color: #7C3AED;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4C1D95;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #059669 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-image {
    margin-bottom: 2rem;
}

.jj-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #4C1D95;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Shop Section */
.shop {
    padding: 80px 0;
    background: #f8fafc;
}

.shop h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.description {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 1rem;
}

.order-btn {
    width: 100%;
    background: #4C1D95;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #3730A3;
}

/* Experiences Section */
.experiences {
    padding: 80px 0;
    background: #1e293b;
    color: white;
}

.experiences h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.experience-card {
    background: white;
    color: #333;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.premium .experience-badge {
    background: #059669;
}

.luxury .experience-badge {
    background: #DC2626;
}

.ultimate .experience-badge {
    background: #7C3AED;
}

.special .experience-badge {
    background: #EA580C;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.experience-card .description {
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.features li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    margin-right: 10px;
}

.premium-btn {
    background: #059669;
}

.luxury-btn {
    background: #DC2626;
}

.ultimate-btn {
    background: #7C3AED;
}

.special-btn {
    background: #EA580C;
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #64748b;
}

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

.stat {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat h3 {
    color: #4C1D95;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #4C1D95;
}

.contact-form button {
    background: #4C1D95;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #3730A3;
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover {
    color: #000;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    border-color: #4C1D95;
    background: #f8fafc;
}

.payment-btn i {
    font-size: 2rem;
}

.cashapp {
    color: #00D632;
}

.credit {
    color: #1e293b;
}

.bitcoin {
    color: #F7931A;
}

.selected-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
        margin-top: 120px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .product-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .shop,
    .experiences,
    .about,
    .contact {
        padding: 60px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.product-card,
.experience-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(2),
.experience-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3),
.experience-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4),
.experience-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Confirmation Modal */
#confirmationModal .modal-content {
    max-width: 600px;
}

#confirmationContent {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

#confirmationContent h3 {
    color: #4C1D95;
    margin-bottom: 1rem;
}

#confirmationContent p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.proceed-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.proceed-btn:hover {
    background: #047857;
}

.cancel-btn {
    background: #DC2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cancel-btn:hover {
    background: #B91C1C;
}

/* Credit Card Modal */
#creditCardModal .modal-content {
    max-width: 500px;
}

.credit-form {
    margin-top: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4C1D95;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.pay-btn {
    background: #4C1D95;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pay-btn:hover {
    background: #3730A3;
}

/* Close buttons for new modals */
.close-confirmation,
.close-credit {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-confirmation:hover,
.close-credit:hover {
    color: #000;
}

/* Loading Modal */
.loading-content {
    text-align: center;
    padding: 3rem 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4C1D95;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

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

.loading-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8fafc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    background: #e0f2fe;
    opacity: 1;
    border-left: 4px solid #4C1D95;
}

.step.completed {
    background: #dcfce7;
    opacity: 1;
    border-left: 4px solid #059669;
}

.step i {
    font-size: 1.2rem;
    color: #4C1D95;
}

.step.completed i {
    color: #059669;
}

/* Bank Authentication Modal */
.bank-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.bank-header i {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.bank-header h2 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.bank-header p {
    color: #64748b;
}

.bank-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1e40af;
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.bank-form .form-group {
    margin-bottom: 1rem;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #059669;
}

.security-notice i {
    color: #059669;
    font-size: 1.2rem;
}

.security-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.verify-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.verify-btn:hover {
    background: #1d4ed8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loading-steps {
        max-width: 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Verification Code Modal */
.verification-info {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.verification-info p {
    margin-bottom: 0.5rem;
    color: #374151;
}

#countdown {
    font-weight: 600;
    color: #dc2626;
}

.resend-notice {
    text-align: center;
    margin-bottom: 1.5rem;
}

.link-btn {
    background: none;
    border: none;
    color: #1e40af;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.link-btn:hover {
    color: #1d4ed8;
}

#verificationCode {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
} 