/* 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;
}

.hero-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: 1rem;
    color: #1e293b;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.experiences .section-lead {
    color: rgba(255, 255, 255, 0.88);
}

.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: 160px;
    object-fit: cover;
}

.product-info {
    padding: 1rem 1.15rem 1.15rem;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #1e293b;
    line-height: 1.25;
}

.description {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.65rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.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: 1rem;
    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: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.experience-image-wrap {
    position: relative;
    height: 140px;
    background: #e2e8f0;
}

.experience-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-card-inner {
    padding: 1.15rem 1.25rem 1.25rem;
    padding-top: 1rem;
}

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

.experience-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.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.2rem;
    margin-bottom: 0.45rem;
    color: #1e293b;
    line-height: 1.25;
}

.experience-card .description {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.features li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.35;
}

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

.experience-card .price {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

.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);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.modal-content {
    background-color: white;
    margin: 5vh auto;
    padding: 2rem;
    border-radius: 12px;
    width: min(500px, 100%);
    max-width: 500px;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-sizing: border-box;
}

.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: 0.85rem;
    margin: 2rem auto;
    max-width: 520px;
}

.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;
}

.bitcoin {
    color: #F7931A;
}

.ethereum {
    color: #627eea;
}

.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) {
    html {
        scroll-padding-top: min(160px, 28vw);
    }

    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .nav-brand {
        text-align: center;
        width: 100%;
    }

    .nav-brand h1 {
        font-size: clamp(1.15rem, 4.5vw, 1.5rem);
        line-height: 1.25;
        word-break: break-word;
    }

    .nav-brand .subtitle {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.85rem;
        width: 100%;
        row-gap: 0.4rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.35rem 0.15rem;
    }

    .hero {
        margin-top: 0;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: 3rem;
        padding-top: max(clamp(7.25rem, 26vw, 10.5rem), calc(env(safe-area-inset-top) + 6.5rem));
    }

    .hero-content h2 {
        font-size: clamp(1.45rem, 6vw, 2rem);
        padding: 0 4px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 8px;
    }

    .hero-photo {
        width: min(180px, 50vw);
        height: min(180px, 50vw);
    }

    .shop h2,
    .experiences h2,
    .about h2,
    .contact h2 {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .contact h2 {
        margin-bottom: 1.5rem;
    }

    .section-lead {
        font-size: 0.95rem;
        padding: 0 6px;
        margin-bottom: 1.75rem;
    }

    .product-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .stats {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .stat p {
        font-size: 1.35rem;
    }

    .payment-options {
        grid-template-columns: 1fr;
        margin: 1.25rem 0;
    }

    .payment-btn {
        min-height: 52px;
        flex-direction: row;
        justify-content: center;
        padding: 1rem 1.25rem;
    }

    .order-btn,
    .experience-card .order-btn {
        min-height: 48px;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .modal-content {
        margin: 0.75rem auto;
        width: calc(100% - 24px);
        max-width: none;
        padding: 1.35rem 1.1rem;
    }

    #confirmationModal .modal-content {
        width: calc(100% - 20px);
        max-width: 400px;
        margin: 0.5rem auto;
    }

    #confirmationModal.modal-cashapp .modal-content {
        max-width: min(300px, calc(100% - 24px));
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    #confirmationModal .modal-actions {
        flex-direction: column;
    }

    #confirmationModal .modal-actions .proceed-btn,
    #confirmationModal .modal-actions .cancel-btn {
        width: 100%;
        min-height: 48px;
    }

    .shop,
    .experiences,
    .about,
    .contact {
        padding: 48px max(16px, env(safe-area-inset-left)) 48px max(16px, env(safe-area-inset-right));
    }

    .footer {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .experience-image-wrap {
        height: min(130px, 36vw);
        min-height: 110px;
    }

    .product-image img {
        height: 150px;
    }

}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 150px;
    }

    .nav-menu {
        gap: 0.35rem 0.65rem;
    }

    .nav-menu a {
        font-size: 0.82rem;
    }

    .cta-button {
        display: block;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        box-sizing: border-box;
    }

    #confirmationModal .modal-content {
        width: calc(100% - 16px);
        padding: 1rem 0.85rem 1.1rem;
    }

    #confirmationModal #confirmationContent {
        font-size: 0.85rem;
    }

}

/* Smooth Scrolling — offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

/* 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 — compact */
#confirmationModal .modal-content {
    max-width: 380px;
    width: 92%;
    margin: 6vh auto;
    padding: 1.15rem 1.25rem 1.25rem;
}

#confirmationModal .modal-content > h2 {
    font-size: 1.2rem;
    margin: 0 0 0.35rem 0;
    padding-right: 1.75rem;
    line-height: 1.3;
}

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

#confirmationModal #confirmationContent {
    padding: 0.85rem 1rem;
    margin: 0.65rem 0;
    font-size: 0.9rem;
}

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

#confirmationModal #confirmationContent h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

#confirmationModal #confirmationContent p {
    margin-bottom: 0.35rem;
    line-height: 1.45;
}

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

#confirmationModal .modal-actions {
    gap: 0.65rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

#confirmationModal .modal-actions .proceed-btn,
#confirmationModal .modal-actions .cancel-btn {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
}

#confirmationModal .close-confirmation {
    color: #aaa;
    float: right;
    font-size: 1.35rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    line-height: 1;
}

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

/* Cash App confirmation — minimal height */
#confirmationModal.modal-cashapp .modal-content {
    max-width: 300px;
    padding: 0.85rem 1rem 1rem;
    margin: 8vh auto;
}

#confirmationModal.modal-cashapp .modal-content > h2 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

#confirmationModal.modal-cashapp #confirmationContent {
    padding: 0.4rem 0.45rem;
    margin: 0.35rem 0;
    font-size: 0.8rem;
    line-height: 1.35;
    background: #f1f5f9;
}

#confirmationModal.modal-cashapp .cc-summary {
    margin: 0 0 0.3rem;
    color: #1e293b;
}

#confirmationModal.modal-cashapp .cc-ref {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    color: #475569;
}

#confirmationModal.modal-cashapp .cc-tag-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    margin-bottom: 0.4rem;
}

#confirmationModal.modal-cashapp .cc-cashtag {
    flex: 1;
    min-width: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0369a1;
    word-break: break-all;
    line-height: 1.25;
}

#confirmationModal.modal-cashapp .copy-cashapp-btn {
    flex-shrink: 0;
    background: #0369a1;
    color: #fff;
    border: none;
    padding: 0.38rem 0.65rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
}

#confirmationModal.modal-cashapp .copy-cashapp-btn:hover {
    background: #075985;
}

#confirmationModal.modal-cashapp .cc-micro {
    margin: 0;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.35;
}

#confirmationModal.modal-cashapp .modal-actions {
    margin-top: 0.55rem;
}

/* Bitcoin confirmation box */
#confirmationContent .btc-pay-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    margin: 0.75rem 0;
}

#confirmationContent .btc-pay-box > p:first-child {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
}

#confirmationContent .btc-address {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78rem;
    word-break: break-all;
    line-height: 1.35;
    margin: 0 0 0.5rem;
    color: #92400e;
}

#confirmationContent .copy-btc-btn {
    display: inline-block;
    background: #d97706;
    color: #fff;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

#confirmationContent .copy-btc-btn:hover {
    background: #b45309;
}

#confirmationContent .btc-pay-box > p:last-child {
    margin: 0;
    font-size: 0.82rem;
}

/* Ethereum confirmation box */
#confirmationContent .eth-pay-box {
    background: #eef2ff;
    border: 1px solid #a5b4fc;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    margin: 0.75rem 0;
}

#confirmationContent .eth-pay-box > p:first-child {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
}

#confirmationContent .eth-network {
    font-weight: 500;
    color: #4338ca;
    font-size: 0.78rem;
}

#confirmationContent .eth-address {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    word-break: break-all;
    line-height: 1.35;
    margin: 0 0 0.5rem;
    color: #3730a3;
}

#confirmationContent .copy-eth-btn {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    margin-bottom: 0.45rem;
}

#confirmationContent .copy-eth-btn:hover {
    background: #4338ca;
}

#confirmationContent .eth-ref {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    color: #1e1b4b;
}

#confirmationContent .eth-pay-box > p:last-child {
    margin: 0;
    font-size: 0.82rem;
}

.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;
}
