/* --- Variables & Resets --- */
:root {
    --primary-font: 'Lato', sans-serif;
    --heading-font: 'Cinzel', serif;
    /* Midnight & Rose Gold Theme */
    --color-bg: #09090b;         
    --color-surface: #121214;    
    --color-text: #f5f5f5;       
    --color-accent: #e0a96d;     
    --color-glass: rgba(9, 9, 11, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none; 
}

h1, h2, h3, .logo {
    font-family: var(--heading-font);
}

/* --- Custom Cursor --- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(224, 169, 109, 0.5);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}
a:hover ~ .cursor-outline, button:hover ~ .cursor-outline, .cart-icon:hover ~ .cursor-outline, .product-card:hover ~ .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(224, 169, 109, 0.1);
}

/* --- Header --- */
.glass-header {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px;
    background: var(--color-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 26px;
    letter-spacing: 3px;
    color: var(--color-accent);
}

.trade-name {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-top: 2px;
}

.nav-links a {
    text-decoration: none; color: var(--color-text);
    margin: 0 20px; font-size: 13px; text-transform: uppercase;
    letter-spacing: 2px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-accent); }

.cart-icon {
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--color-accent); cursor: none;
}

/* --- Hero Section --- */
.hero-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #2a2a35 0%, #09090b 100%);
    transform: scale(1.1);
    animation: slowZoom 10s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 2;
}

.slide-content { position: relative; z-index: 3; }

.reveal-text {
    font-size: 4.5rem; letter-spacing: 4px; color: var(--color-text);
    animation: fadeUp 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.reveal-subtext {
    font-size: 1.2rem; margin-top: 15px; color: var(--color-accent);
    letter-spacing: 2px; opacity: 0;
    animation: fadeUp 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Collection Grid --- */
.collection-section { padding: 100px 50px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--color-text); letter-spacing: 2px; }

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px;
}

.product-card {
    background: var(--color-surface);
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
}

.img-container { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.img-container::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}

.product-card:hover .img-container img { transform: scale(1.08); }
.product-card:hover .img-container::after { opacity: 1; }

.quick-add-btn {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    background: var(--color-accent); color: #000; border: none;
    padding: 12px 25px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
    font-size: 11px; transition: all 0.4s ease; opacity: 0; width: 80%; z-index: 10; cursor: none;
}
.product-card:hover .quick-add-btn { bottom: 25px; opacity: 1; }
.quick-add-btn:hover { background: #fff; }

.product-info { padding: 20px; text-align: center; }
.product-info h3 { font-family: var(--heading-font); font-size: 16px; margin-bottom: 8px; letter-spacing: 1px; }
.product-info p { font-size: 14px; color: var(--color-accent); }

/* --- Scroll Animations --- */
.scroll-reveal { opacity: 0; transition: all 1s cubic-bezier(0.5, 0, 0, 1); }
.fade-up { transform: translateY(50px); }
.blur-in { filter: blur(10px); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* --- Footer --- */
.luxury-footer {
    background: #050506; padding: 70px 50px 30px; text-align: center;
    border-top: 1px solid rgba(224, 169, 109, 0.1);
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.brand-info h3 { color: var(--color-accent); font-size: 1.8rem; letter-spacing: 3px; }
.brand-info p { font-size: 12px; letter-spacing: 3px; color: #888; text-transform: uppercase; margin-top: 5px; }

.contact-info p { font-size: 14px; margin: 5px 0; color: #bbb; letter-spacing: 1px; }
.contact-info strong { color: var(--color-accent); font-weight: 400; }

.trust-badges span { margin: 0 15px; font-size: 13px; color: #fff; letter-spacing: 1px; }
.copyright { margin-top: 50px; font-size: 12px; color: #555; }

/* --- Modals & Toast --- */
.toast {
    position: fixed; bottom: 30px; right: 30px; background: var(--color-accent);
    color: #000; padding: 15px 25px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    font-size: 12px; transform: translateY(100px); opacity: 0; transition: all 0.4s ease; z-index: 2000;
}
.toast.show { transform: translateY(0); opacity: 1; }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    z-index: 3000; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--color-surface); padding: 40px; width: 90%; max-width: 450px;
    position: relative; text-align: center; transform: translateY(-30px);
    transition: all 0.4s ease; border: 1px solid rgba(224, 169, 109, 0.2);
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.close-modal {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    font-size: 24px; color: var(--color-text); cursor: none;
}

#checkout-form input, #checkout-form textarea {
    width: 100%; padding: 12px; margin: 8px 0; border: 1px solid rgba(255,255,255,0.1);
    background: transparent; color: #fff; font-family: var(--primary-font); outline: none;
}
#checkout-form input:focus, #checkout-form textarea:focus { border-color: var(--color-accent); }

.btn-primary, .btn-secondary {
    width: 100%; padding: 15px; background: var(--color-accent); color: #000;
    border: none; margin-top: 15px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: none; transition: background 0.3s;
}
.btn-primary:hover, .btn-secondary:hover { background: #fff; }

.order-id { margin: 25px 0; font-size: 1.2rem; color: #fff; }
.order-id strong { color: var(--color-accent); letter-spacing: 2px; }