@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --beige: #F5F5DC;
    --terracotta: #E2725B;
    --olive: #808000;
    --warm-black: #1A1A1A;
    --beige: #F8F5F0;
    --terracotta: #D97E69;
    --olive: #7D8461;
    --warm-black: #2C2C2C;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --accent-gradient: linear-gradient(135deg, #D97E69 0%, #B86552 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--beige);
    color: var(--warm-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--dark-slate);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #444;
}

.cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--zellige-blue);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--moroccan-ochre);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.2);
}

/* Product Feed */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    padding: 6rem 0;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-media {
    position: relative;
    height: 300px;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-ai {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--zellige-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vendor-name {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-try-ai {
    width: 100%;
    padding: 1rem;
    background: #f0f0f0;
    color: #888;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: not-allowed;
    transition: var(--transition);
}

.btn-try-ai.unlocked {
    background: var(--zellige-blue);
    color: white;
    cursor: pointer;
}

/* 360 Player Mock */
.modal-360 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 80%;
    max-width: 1000px;
    position: relative;
}

.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--zellige-blue);
    width: 0%;
    transition: width 0.1s linear;
}