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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: #8A8A8A;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
    animation: fadeIn 1s ease-in;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #C9A84C;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Products Section */
.products {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #141414;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-elite {
    border: 1px solid #C9A84C;
}

.elite-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C9A84C;
    color: #0A0A0A;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-thumbnail {
    margin-bottom: 20px;
}

.product-thumbnail img {
    max-width: 200px;
    height: auto;
}

.product-title {
    margin-bottom: 10px;
}

.product-price {
    font-size: 2rem;
    color: #C9A84C;
    margin-bottom: 10px;
}

.product-description {
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    background: none;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #FFFFFF;
    color: #0A0A0A;
}

.cta-elite {
    background-color: #C9A84C;
    border-color: #C9A84C;
    color: #0A0A0A;
}

.cta-elite:hover {
    background-color: #FFFFFF;
    color: #0A0A0A;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #141414;
    margin: 10% auto;
    padding: 40px;
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

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

.close:hover {
    color: #FFFFFF;
}

.modal h2 {
    margin-bottom: 20px;
    text-align: center;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal input {
    padding: 15px;
    background-color: #0A0A0A;
    border: 1px solid #8A8A8A;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 1rem;
}

.modal input:focus {
    outline: none;
    border-color: #C9A84C;
}

.modal-submit {
    background-color: #C9A84C;
    border: none;
    color: #0A0A0A;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.modal-submit:hover {
    background-color: #FFFFFF;
}

/* Checkout Modal Layout */
.modal-checkout {
    max-width: 800px;
}

.checkout-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.order-summary, .payment-form {
    flex: 1;
    min-width: 300px;
}

.order-summary h3, .payment-form h3 {
    margin-bottom: 20px;
    color: #C9A84C;
}

.summary-item {
    margin-bottom: 10px;
}

.summary-price {
    font-size: 1.5rem;
    color: #C9A84C;
    margin-bottom: 15px;
}

.summary-desc {
    color: #8A8A8A;
}

/* Confirmation Page */
.confirmation {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

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

.confirmation-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.confirmation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.confirmation-accent {
    color: #C9A84C;
    font-size: 1rem;
}

.divider {
    border: none;
    height: 1px;
    background-color: #C9A84C;
    margin: 40px 0 20px;
}

.upsell-text {
    margin-bottom: 20px;
}

.upsell-button {
    background-color: #C9A84C;
    color: #0A0A0A;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.upsell-button:hover {
    background-color: #FFFFFF;
}

.wordmark {
    position: absolute;
    bottom: 20px;
    font-size: 1.2rem;
    color: #8A8A8A;
    font-weight: 600;
}

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

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .products {
        padding: 50px 20px;
        gap: 40px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .checkout-layout {
        flex-direction: column;
    }

    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
    }

    .confirmation-title {
        font-size: 2rem;
    }
}