:root {
    --primary: #c9a050; /* Gold/Ocre */
    --secondary: #d94e28; /* Burnt Orange */
    --accent: #f2e8d5; /* Off-white/Beige */
    --dark: #0f0f0f;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--accent);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(201, 160, 80, 0.15), transparent 70%),
                radial-gradient(circle at 80% 80%, rgba(217, 78, 40, 0.1), transparent 50%);
    z-index: -1;
}

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

/* Typography & General */
h1, h2, h3 {
    font-family: var(--font-heading);
}

.accent {
    color: var(--primary);
}

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

.fade-in { animation: fadeInUp 1s ease forwards; }
.fade-in-up { opacity: 0; animation: fadeInUp 1s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Hero */
.hero {
    padding: 120px 0 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(242, 232, 213, 0.7);
    margin-bottom: 40px;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item .icon {
    font-size: 1.5rem;
}

/* Main Content */
.highlight {
    padding: 80px 0;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.product-card {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-image {
    flex: 1;
    position: relative;
    height: 500px;
    background: #1a1a1a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff; /* White background for the product to stand out */
}

.product-info {
    flex: 1;
    padding: 60px;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.btn-buy {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(201, 160, 80, 0.3);
}

.btn-buy:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 78, 40, 0.4);
}

/* Info Grid */
.info-grid {
    padding: 80px 0 120px;
}

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

.info-card {
    padding: 40px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 160, 80, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-card a {
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.info-card a:hover {
    border-bottom-color: var(--secondary);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    opacity: 0.6;
    font-size: 0.9rem;
}

footer a {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
    }
    
    .product-image {
        height: 350px;
        width: 100%;
    }
    
    .product-info {
        padding: 40px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .event-details {
        flex-direction: column;
        gap: 20px;
    }
}
