:root {
    /* Colors */
    --primary-purple: #5b005d;
    --dark-bg: #121927;
     --light-bg: #ffffff;
    --text-light: #ffffff;
    --bg-muted: #f7f6f6;
    --accent-gold: #FDCC0D;
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.toteme-hero {
    width: 100%;
    height: 90vh;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* Left Side */
.hero-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-left img {
    height: 85vh;
    object-fit: contain;
}

/* Right Side */
.hero-right {
    width: 50%;
    padding-right: 120px;
}

/* NEW small text */
.hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    
    color: #444;
}

/* Main Heading */
.hero-right h1 {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #444;
}

/* Description */
.hero-right p {
    font-size: 15px;
    color: #444;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Shop Link */
.hero-right a {
    font-size: 14px;
    text-decoration: underline;
    color: black;
    letter-spacing: 1px;
}

.hero-right a:hover {
    opacity: 0.6;
}




/* ========================= */
/* Section Background */
.lux-brand-section {
    background: #ffffff;
    padding: 60px 40px;
}

/* Grid Container */
.lux-brand-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Each Item */
.lux-brand-item {
    text-align: center;
}

/* Image Styling */
.lux-brand-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Brand Name */
.lux-brand-name {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 1px;
    color: black;
    text-decoration: underline;
    transition: 0.3s;
}

.lux-brand-name:hover {
    opacity: 0.6;
}




/* ============================= */
.lux-modal{
    display:none;
    position:fixed;
    inset:0;

    justify-content:center;
    align-items:center;

    z-index:9999;

    backdrop-filter: blur(8px); /* ⭐ Blur background */
    -webkit-backdrop-filter: blur(8px);

    background:rgba(0,0,0,0.5); /* Dark overlay */

    padding:20px;
}

/* Modal box */
.lux-modal-content{
    background:white;
    width:100%;
    max-width:300px; /* ⭐ smaller modal */
    padding:20px;
    border-radius:14px;

    position:relative;

    box-shadow:0 10px 35px rgba(0,0,0,.3);

    animation: modalZoom .3s ease;
}
.lux-modal-hdg{
    color: var(--dark-bg);
}
/* Inputs */
.lux-modal-content input,
.lux-modal-content select{
    width:100%;
    padding:10px;
    margin:8px 0;
    border-radius:6px;
    border:1px solid #ccc;
    color:black;
}

/* Button */
.lux-modal-content button{
    width:100%;
    padding:12px;
    background:black;
    color:white;
    border:none;
    border-radius:8px;
    margin-top:10px;
    cursor:pointer;
}

/* Close button */
.close-modal{
    position:absolute;
    right:12px;
    top:6px;
    font-size:22px;
    cursor:pointer;
    color:black;
}




.lux-outline-btn{
    display:block;
    width:160px;
    margin:30px auto; /* ⭐ center button */
    text-align:center;

    padding:12px;
    border:2px solid var(--dark-bg);
    color:var(--dark-bg);
    text-decoration:none;
    border-radius:8px;

    transition:.3s;
    background:transparent;
}

.lux-outline-btn:hover{
    background: var(--primary-purple);
    color:white;
    border:2px solid var(--primary-purple);
}










@keyframes modalZoom{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}












/* ===============================
   RESPONSIVE - TOTEME HERO
================================ */

/* Tablets */
@media (max-width: 992px) {

    .toteme-hero {
        flex-direction: column;
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }

     .lux-brand-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-left {
        width: 100%;
        padding-left: 0;
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-left img {
        height: 60vh;
    }

    .hero-right {
        width: 100%;
        padding-right: 0;
    }

    .hero-right h1 {
        font-size: 38px;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .toteme-hero {
        padding: 60px 20px;
    }

    .hero-left img {
        height: 50vh;
    }

    .hero-right h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-right p {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-tag {
        font-size: 10px;
    }
 .lux-brand-container {
        grid-template-columns: 1fr;
    }


}