:root {
    --bg: #050505;
    --text: #ffffff;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-serif);
}

span {
    color: var(--gold);
}

/* Nav */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.cart-trigger {
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.5)), 
                url('assets/aurum_hero_necklace_1776251573854.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--gold);
    color: var(--bg);
}

.btn.primary:hover {
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-5px);
}

.btn.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn.secondary:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-5px);
}

/* Collections */
.collections {
    padding: 8vw 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: 0.4s;
}

.product-card:hover {
    border-color: var(--gold);
}

.p-img-box {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.add-to-cart {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--gold);
    color: var(--bg);
    padding: 1rem;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.product-card:hover .add-to-cart {
    bottom: 0;
}

.p-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-info h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 400;
}

.price {
    color: var(--gold);
    font-weight: 600;
}

/* Story Section */
.story {
    padding: 10vw 5%;
    border-top: 1px solid var(--glass-border);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
}

.story-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.story-img {
    height: 600px;
    background: url('assets/aurum_model_shot_1_1776251614157.png');
    background-size: cover;
    background-position: center;
}

/* Cart Panel */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: absolute;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background: var(--bg);
    border-left: 1px solid var(--gold);
    padding: 2rem;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.cart-overlay.active .cart-panel {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.ci-img {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
}

.ci-details h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.ci-price {
    color: var(--gold);
    font-size: 0.85rem;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--bg);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.modal h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal p {
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 5vw;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 4rem;
    letter-spacing: 15px;
    opacity: 0.1;
    margin-bottom: 2rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
}

.social-links i {
    cursor: pointer;
    transition: 0.3s;
}

.social-links i:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Reveal Helpers */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in {
    opacity: 0;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}
