/*
Theme Name: La Chica
Author: Marouane
Version: 1.0
Description: Thème WordPress personnalisé LA CHICA
*/
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f0f0f;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 3px;
    color: black;
    position: relative;
    cursor: pointer;
     text-decoration: none;
     text-shadow:
        0 0 5px #c8ff00,
        0 0 10px #c8ff00,
        0 0 20px #9cff00,
        0 0 50px rgba(156, 255, 0, 0.6);

    animation: neonPulse 2s infinite alternate;
}
/* ANIMATION GLOW */
@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 5px #c8ff00,
            0 0 10px #c8ff00,
            0 0 20px #9cff00,
            0 0 70px rgba(156, 255, 0, 0.4);
    }

    100% {
        text-shadow:
            0 0 10px #c8ff00,
            0 0 20px #c8ff00,
            0 0 40px #9cff00,
            0 0 70px rgba(156, 255, 0, 0.8);
    }
}


.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c8ff00;
}
.nav-links .active {
    color: #c8ff00;
}

.icons a {
    font-size: 20px;
    text-decoration: none;
}

/* BURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #111;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s;
    z-index: 999;
}

.side-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    left: 0;
}

/* CART */
.icons a {
    font-size: 22px;
    text-decoration: none;
}

/* SHOP SECTION */
.shop-lux {
    padding: 60px 40px;
    text-align: center;
}

.title {
    margin-top: 40px;
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* PRODUCTS */
.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-10px);
    border: 1px solid #c8ff00;
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.4);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #c8ff00;
    margin-bottom: 15px;
    font-weight: bold;
}

.card button {
    padding: 10px 20px;
    border: none;
    background: #c8ff00;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #fff;
}
/* ===== ACTIONS ===== */

.card-actions{
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
   
}

/* ===== BTN AJOUTER ===== */

.btn-ajouter{
    flex: 1;
    height: 68px;

    border: none;
    border-radius: 50px;

    background: #c6ff00;
    color: #000;

    font-size: 1.4rem;
    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
    
    box-shadow:
    0 0 20px rgba(198,255,0,.25);
}

.btn-ajouter:hover{
    transform: translateY(-3px);

    background: #d7ff43;

    box-shadow:
    0 0 28px rgba(198,255,0,.4);
}

/* ===== QUANTITY BOX ===== */

.quantity-box{
    flex: 1;
    height: 32  px;

     margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    

    background: rgba(255,255,255,.03);

    box-shadow:
    0 0 20px rgba(198,255,0,.08);
}

/* ===== +/- ===== */

.qty-btn{
    background: transparent;
    border: none;
    margin-left: 0px;
    color: #c6ff00;

    font-size: 10px;
    font-weight: 500;

    cursor: pointer;

    transition: .2s ease;
}

.qty-btn:hover{
    transform: scale(1.15);
    color: #e2ff71;
}

/* ===== NUMBER ===== */

.qty-number{
    color: white;

    font-size: 1.5rem;
    font-weight: 600;

    min-width: 10px;
    text-align: center;
}

/* FEATURES */
.features {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #aaa;
    font-size: 14px;
}

/* FEATURES */
.features {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 14px;
}

.features div {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: 0.3s;
}

.features div:hover {
    color: #c8ff00;
    border-color: #c8ff00;
}

/* MOBILE */
@media (max-width: 768px) {

    .navbar {
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
/* POPUP BACKGROUND */
.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* POPUP BOX */
.popup-content{
    background:#111;
    color:white;
    width:400px;
    padding:30px;
    border-radius:20px;
    border:2px solid #b6ff00;
    box-shadow:0 0 20px #b6ff00;
    position:relative;
    animation:popupAnim 0.3s ease;
}

/* ANIMATION */
@keyframes popupAnim{
    from{
        transform:scale(0.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* CLOSE BUTTON */
.close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#b6ff00;
}

.close:hover{
    transform:scale(1.2);
}

/* TITRE */
.popup-content h2{
    color:#b6ff00;
    margin-bottom:15px;
}