/* style.css */
:root {
    --bg-dark: #07050f; /* Deep rich midnight */
    --bg-glow: #1f0b2e; /* Ambient purple glow */
    --text-main: #ffffff;
    --text-muted: #b4b4cb;
    --purr-pink: #ff007f;
    --purr-cyan: #00f0ff;
    --glass: rgba(25, 20, 40, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body, html {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    /* High-ROI Depth Gradient */
    background: radial-gradient(circle at 50% 0%, var(--bg-glow) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
}

/* 3D Background - Lowered opacity so it doesn't overpower the products */
#vanta-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    opacity: 0.6; 
}

/* Navigation */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(7, 5, 15, 0.7);
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--purr-cyan), var(--purr-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--purr-pink); }

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--purr-cyan);
    color: var(--purr-cyan);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}
.cart-btn:hover { background: var(--purr-cyan); color: #000; box-shadow: 0 0 15px rgba(0,240,255,0.4); }

@media (max-width: 768px) {
    nav { padding: 1rem 5%; flex-direction: column; gap: 1rem; }
    .nav-links { width: 100%; justify-content: center; gap: 1rem; flex-wrap: wrap; }
}

/* Base Sections */
section {
    min-height: 100vh;
    padding: 140px 5% 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* High-Converting Buttons */
.btn-glow {
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.btn-glow:hover { border-color: var(--purr-cyan); color: var(--purr-cyan); }

.btn-primary {
    background: linear-gradient(45deg, var(--purr-pink), #ff5e00);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.3);
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 127, 0.5);
    color: white;
}

/* Product Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: 0 20px 40px rgba(255, 0, 127, 0.15);
}

.product-img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.product-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--purr-cyan); margin-bottom: 1.5rem; display: block; }

/* Item Detail Page */
.item-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
@media (max-width: 768px) {
    .item-detail { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
}
