:root {
    --primary-gold: #C5A059;
    --deep-brown: #3E2723;
    --soft-cream: #FFFDF9;
    --accent-red: #8D021F;
}

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.navbar {
    background: white;
    border-bottom: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding: 8px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

/* CART BADGE */
.cart-badge {
    background: var(--accent-red);
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* =========================
   PRODUCT CARD SYSTEM
========================= */
.product-card {
    border: none;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

/* IMAGE */
.card-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .card-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover img {
    transform: scale(1.1);
}

/* WISHLIST BUTTON */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}

    .wishlist-btn:hover {
        transform: scale(1.1);
    }

    .wishlist-btn i {
        color: var(--accent-red);
    }

/* OVERLAY ACTIONS */
.overlay {
    position: absolute;
    bottom: -120px;
    width: 100%;
    padding: 12px;
    transition: all 0.4s ease;
}

.product-card:hover .overlay {
    bottom: 0;
}

/* BUTTON */
.btn-gold {
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-gold:hover {
        background: var(--deep-brown);
    }

/* =========================
   FLOATING CART
========================= */
.floating-cart {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: var(--primary-gold);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .floating-cart:hover {
        transform: scale(1.1);
    }

    .floating-cart span {
        position: absolute;
        top: -6px;
        right: -6px;
        background: var(--accent-red);
        font-size: 12px;
        padding: 4px 6px;
        border-radius: 50%;
    }

/* =========================
   CART DRAWER
========================= */
.cart-drawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 360px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

    .cart-drawer.open {
        right: 0;
    }

.cart-header, .cart-footer {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-footer {
    margin-top: auto;
}

/* =========================
   SCROLL ANIMATION
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================
   EXTRA MICRO ANIMATIONS
========================= */

/* Smooth section spacing */
section {
    position: relative;
}

/* Hover text feel */
h2, h3 {
    transition: 0.3s;
}

    h2:hover, h3:hover {
        letter-spacing: 1px;
    }

/* Smooth image rounding */
img {
    border-radius: 8px;
}
/* =========================
   AUTH WRAPPER
========================= */
.auth-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
}

/* MAIN CONTAINER */
.auth-container {
    position: relative;
    width: 900px;
    max-width: 95%;
    height: 520px;
    background: #fff;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   PANELS
========================= */
.auth-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    padding: 50px;
    top: 0;
    transition: 0.65s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
}

/* SIGN IN DEFAULT */
.sign-in {
    left: 0;
    opacity: 1;
    pointer-events: all;
    z-index: 5;
}

/* SIGN UP DEFAULT */
.sign-up {
    left: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* =========================
   FORM
========================= */
.auth-form {
    width: 100%;
}

    .auth-form h2 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .auth-form p {
        margin-bottom: 20px;
    }

    /* INPUTS */
    .auth-form .form-control {
        padding: 10px 12px;
        border-radius: 8px;
    }

/* =========================
   OVERLAY
========================= */
.auth-overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: 0.65s ease-in-out;
}

.auth-overlay {
    background: linear-gradient(135deg, #C5A059, #3E2723);
    color: white;
    position: relative;
    left: -100%;
    width: 200%;
    height: 100%;
    display: flex;
    transition: 0.65s ease-in-out;
}

.overlay-panel {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

/* =========================
   ACTIVE STATE (SWITCH)
========================= */
.auth-container.right-panel-active .sign-in {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.auth-container.right-panel-active .sign-up {
    transform: translateX(-100%);
    opacity: 1;
    pointer-events: all;
    z-index: 10;
}

/* overlay shift */
.auth-container.right-panel-active .auth-overlay-container {
    transform: translateX(-100%);
}

.auth-container.right-panel-active .auth-overlay {
    transform: translateX(50%);
}

/* =========================
   BUTTON STYLE (reuse your theme)
========================= */
.btn-gold {
    background: #C5A059;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}

    .btn-gold:hover {
        background: #3E2723;
    }