/* ===========================================
   PALETA PRINCIPAL – PRISFLOWER
=========================================== */

:root {
    --fondo-negro: #0a0a0a;
    --rose-gold-soft: #d7a7a7;
    --glitter-text: url("img/glitter.png");
    --textura-glitter: url("img/glitter.png");
}


/* ===========================================
   ESTILOS BASE
=========================================== */

body {
    margin: 0;
    background: var(--fondo-negro);
    font-family: 'Georgia', serif;
    color: #f8eaea;
}


/* ===========================================
   TEXTOS CON GLITTER REAL
=========================================== */

.glitter-text {
    background-image: var(--glitter-text);
    background-size: cover;
    background-repeat: repeat;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}


/* ===========================================
   NAVBAR
=========================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: var(--fondo-negro);
    position: sticky;
    top: 0;
    z-index: 20;
}

.navbar img {
    height: 130px;
}

.navbar nav a {
    margin: 0 25px;
    font-size: 24px;
    text-decoration: none;
    background-image: var(--glitter-text);
    background-size: cover;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar nav a:hover {
    filter: brightness(1.5);
}

.carrito-icon span {
    padding: 5px 14px;
    border-radius: 40px;
    background-image: var(--glitter-text);
    color: black;
    font-weight: bold;
}


/* ===========================================
   HERO
=========================================== */

.hero {
    text-align: center;
    padding: 130px 20px;
}

.hero h1 {
    font-size: 80px;
    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 26px;
    margin-top: -10px;
}

.btn {
    background-image: var(--textura-glitter);
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 20px;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    filter: brightness(1.3);
}


/* ===========================================
   PRODUCTOS
=========================================== */

.productos-section {
    padding: 80px 40px;
}

.productos-section h2 {
    text-align: center;
    font-size: 55px;
    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.producto {
    background: #111;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.producto img {
    width: 90%;
    height: 330px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}

.producto:hover {
    transform: translateY(-8px);
}

.producto button {
    background-image: var(--glitter-text);
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
}


/* ===========================================
   PÁGINA DETALLE DE PRODUCTO
=========================================== */

.detalle-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 80px;
}

.detalle-img img {
    width: 420px;
    border-radius: 20px;
}

.detalle-info h2 {
    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 45px;
}

.detalle-info p {
    font-size: 20px;
    margin-bottom: 30px;
}


/* ===========================================
   CARRITO
=========================================== */

.titulo-carrito {
    text-align: center;
    font-size: 60px;
    margin-top: 40px;
    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent;
}

.carrito-container {
    width: 80%;
    margin: 40px auto;
}

.item-carrito {
    background: #151515;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
}

.carrito-img {
    width: 135px;
    border-radius: 15px;
}

.cantidad-box button {
    background-image: var(--glitter-text);
    border: none;
    padding: 7px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.cantidad-box span {
    margin: 0 10px;
    font-size: 22px;
}

.basura {
    background: #ff5b5b;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.carrito-total {
    text-align: right;
    padding-right: 10%;
    font-size: 28px;
}

.carrito-botones {
    text-align: center;
    margin-top: 40px;
}

.carrito-botones .btn {
    margin: 0 20px;
}


/* ===========================================
   CHECKOUT (WHATSAPP)
=========================================== */

.checkout h1 {
    text-align: center;
    font-size: 55px;
    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent;
}

.checkout form {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.checkout input,
.checkout select,
.checkout textarea {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
}


/* ===========================================
   TOAST
=========================================== */

#toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 15px 25px;
    background-image: var(--glitter-text);
    border-radius: 10px;
    color: black;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

#toast.mostrar {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER PRISFLOWER ===== */

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    color: var(--rose-gold-soft);
}

/* Enlaces del footer */
footer a {
    color: var(--rose-gold-soft);
    text-decoration: none;
    font-weight: bold;

    background-image: var(--glitter-text);
    -webkit-background-clip: text;
    color: transparent; /* glitter real */
}

/* Hover */
footer a:hover {
    filter: brightness(1.4);
}







