/* =====================================================
   V&R RESTYLE
   DISEÑO PRINCIPAL
===================================================== */

:root {
    --negro: #050505;
    --negro-suave: #111111;
    --dorado: #d6a92f;
    --dorado-claro: #e8c45a;
    --blanco: #ffffff;
    --gris: #666666;
    --gris-claro: #eeeeee;
}


/* =====================================================
   CONFIGURACIÓN GENERAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
}

button,
a {
    font-family: inherit;
}


/* =====================================================
   NAVEGACIÓN
===================================================== */

.navbar {
    width: 100%;
    height: 105px;

    background: #050505;

    border-bottom: 1px solid #d6a92f;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    position: relative;
    z-index: 1000;
}


/* =====================================================
   LOGO
===================================================== */

.logo-area {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 220px;
}

.logo-area img {
    width: 72px;
    height: 72px;

    object-fit: contain;

    display: block;
}

.logo-text {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    white-space: nowrap;
}

.logo-text span {
    color: #d6a92f;
}


/* =====================================================
   MENÚ
===================================================== */

.menu {
    display: flex;
    align-items: center;

    justify-content: center;

    gap: 38px;
}

.menu a {
    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 1px;

    padding: 10px 0;

    transition:
        color 0.3s ease;
}

.menu a:hover {
    color: #d6a92f;
}

.menu a.activo {
    color: #d6a92f;
}


/* LÍNEA DORADA DEL MENÚ ACTIVO */

.menu a.activo::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: #d6a92f;

    transform: scaleX(1);

    transform-origin: center;
}


/* EFECTO AL PASAR EL MOUSE */

.menu a:not(.activo)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: #d6a92f;

    transform: translateX(-50%) scaleX(0);

    transition: transform 0.3s ease;
}

.menu a:not(.activo):hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* =====================================================
   ICONOS
===================================================== */

.iconos {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 22px;

    min-width: 120px;

    color: #ffffff;

    font-size: 21px;
}

.buscar {
    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.buscar:hover {
    color: #d6a92f;

    transform: scale(1.1);
}


/* =====================================================
   PORTADA / HERO
===================================================== */

.hero {
    min-height: 560px;

    background:
        radial-gradient(
            circle at 80% 50%,
            #29261f 0%,
            #111111 30%,
            #050505 65%,
            #000000 100%
        );

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 70px 8%;

    color: white;
}


/* CONTENIDO */

.hero-contenido {
    max-width: 620px;
}

.hero .etiqueta {
    color: var(--dorado);

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 5px;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: Georgia, serif;

    font-size: 70px;
    font-weight: normal;

    line-height: 1.1;

    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--dorado);
}

.hero h2 {
    font-family: Georgia, serif;

    font-size: 38px;
    line-height: 1.2;

    margin-bottom: 25px;
}

.hero .descripcion {
    color: #dddddd;

    font-size: 17px;
    line-height: 1.7;

    max-width: 580px;

    margin-bottom: 30px;
}


/* BOTÓN PRINCIPAL */

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: var(--dorado);
    color: #000000;

    text-decoration: none;

    padding: 16px 25px;

    font-weight: bold;

    transition: 0.3s;
}

.boton:hover {
    background: var(--dorado-claro);

    transform: translateY(-2px);
}


/* LOGO GRANDE */

.hero-logo {
    width: 430px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 30px
            rgba(214, 169, 47, 0.30)
        );
}


/* =====================================================
   COLECCIÓN
===================================================== */

.coleccion {
    background: #ffffff;

    padding: 90px 6%;
}


/* TÍTULO */

.titulo-seccion {
    text-align: center;

    margin-bottom: 50px;
}

.titulo-seccion > p {
    color: var(--dorado);

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 5px;

    margin-bottom: 14px;
}

.titulo-seccion h2 {
    color: #111111;

    font-family: Georgia, serif;

    font-size: 46px;

    margin-bottom: 10px;
}

.titulo-seccion > span {
    display: block;

    color: #555555;

    font-size: 16px;

    line-height: 1.6;
}


/* DECORACIÓN */

.decoracion {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 15px 0 20px;

    color: var(--dorado);
}

.decoracion span {
    display: block;

    width: 65px;
    height: 1px;

    background: var(--dorado);
}


/* =====================================================
   FILTROS
===================================================== */

.filtros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.filtro {
    background: transparent;

    border: 1px solid var(--dorado);

    color: #111111;

    padding: 12px 22px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.filtro:hover,
.filtro.activo {
    background: var(--dorado);

    color: #000000;
}


/* =====================================================
   PRODUCTOS
===================================================== */

.productos {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


/* TARJETA */

.producto {
    background: #ffffff;

    border: 1px solid #e5e5e5;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.08);

    transition: 0.3s;

    overflow: hidden;
}

.producto:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.14);
}


/* =====================================================
   IMAGEN DEL PRODUCTO
===================================================== */

.imagen-producto {
    height: 280px;

    background: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-bottom: 2px solid var(--dorado);
}

.imagen-producto > span {
    font-size: 70px;
}


/* =====================================================
   OCULTAR ESTADO
===================================================== */

/*
   No queremos mostrar:
   DISPONIBLE
   RESERVADA

   Cuando vendas una prenda,
   simplemente eliminaremos su tarjeta.
*/

.estado {
    display: none !important;
}


/* =====================================================
   INFORMACIÓN DEL PRODUCTO
===================================================== */

.info-producto {
    padding: 25px;
}

.categoria-producto {
    color: #c39420;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.info-producto h3 {
    color: #111111;

    font-family: Georgia, serif;

    font-size: 27px;

    margin-bottom: 10px;
}

.descripcion-producto {
    color: #666666;

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 20px;
}


/* TALLA Y PRECIO */

.datos-producto {
    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid #eeeeee;

    padding-top: 18px;

    margin-bottom: 20px;
}

.datos-producto span {
    color: #555555;

    font-size: 14px;
}

.datos-producto strong {
    color: #111111;

    font-size: 20px;
}


/* BOTÓN VER PRENDA */

.boton-producto {
    width: 100%;

    background: #111111;

    color: var(--dorado);

    border: 1px solid var(--dorado);

    padding: 14px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.boton-producto:hover {
    background: var(--dorado);

    color: #000000;
}


/* =====================================================
   NOSOTROS
===================================================== */

.nosotros {
    background: #050505;

    color: white;

    padding: 75px 7%;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 70px;

    border-top: 1px solid var(--dorado);

    border-bottom: 1px solid var(--dorado);
}


/* TÍTULO */

.nosotros-titulo p {
    color: var(--dorado);

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.nosotros-titulo h2 {
    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: normal;

    line-height: 1.2;
}


/* TEXTO */

.nosotros-texto {
    color: #dddddd;

    line-height: 1.7;
}

.nosotros-texto p {
    margin-bottom: 20px;
}


/* CARACTERÍSTICAS */

.caracteristicas {
    grid-column: 1 / 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 10px;
}

.caracteristicas div {
    color: var(--dorado);

    font-size: 25px;
}

.caracteristicas span {
    display: inline-block;

    color: white;

    font-size: 13px;

    margin-left: 8px;
}


/* CONTACTO MINI */

.contacto-mini {
    border-left: 1px solid var(--dorado);

    padding-left: 50px;
}

.contacto-mini p {
    color: var(--dorado);

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.contacto-mini h2 {
    font-family: Georgia, serif;

    font-size: 32px;

    font-weight: normal;

    margin-bottom: 20px;
}

.contacto-mini span {
    display: block;

    color: #dddddd;

    line-height: 1.6;

    margin-bottom: 25px;
}


/* =====================================================
   CONTACTO
===================================================== */

.contacto {
    background: #ffffff;

    text-align: center;

    padding: 80px 20px;
}

.contacto > p:first-child {
    color: var(--dorado);

    letter-spacing: 5px;

    font-weight: bold;

    margin-bottom: 15px;
}

.contacto h2 {
    font-family: Georgia, serif;

    font-size: 46px;

    margin-bottom: 15px;
}

.contacto p {
    color: #555555;

    margin-bottom: 25px;
}


/* =====================================================
   MODAL / VENTANA DEL PRODUCTO
===================================================== */

.ventana-producto {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    padding: 25px;
}

.ventana-producto.mostrar {
    opacity: 1;
    visibility: visible;
}


/* CONTENEDOR PRINCIPAL */

.producto-modal {
    position: relative;

    width: 900px;
    max-width: 95%;

    background: #ffffff;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border: 1px solid #d6a92f;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.65);

    transform: translateY(20px);

    transition: 0.3s ease;
}

.ventana-producto.mostrar .producto-modal {
    transform: translateY(0);
}


/* =====================================================
   ZONA DE IMAGEN
===================================================== */

.producto-imagen {
    min-height: 520px;

    background:
        radial-gradient(
            circle,
            #2a2823 0%,
            #111111 50%,
            #050505 100%
        );

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* EMOJI TEMPORAL */

.producto-imagen > span {
    font-size: 120px;

    filter:
        drop-shadow(
            0 10px 20px
            rgba(0, 0, 0, 0.5)
        );
}


/* FUTURAS FOTOGRAFÍAS */

.producto-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   INFORMACIÓN DEL PRODUCTO
===================================================== */

.producto-informacion {
    position: relative;

    padding: 60px 50px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


/* CATEGORÍA */

.producto-informacion .etiqueta {
    color: #c39420;

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: bold;

    margin-bottom: 10px;
}


/* CÓDIGO */

#producto-codigo {
    display: block;

    color: #888888;

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


/* NOMBRE */

.producto-informacion h2 {
    color: #111111;

    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: normal;

    line-height: 1.1;

    margin-bottom: 22px;
}


/* LÍNEA DECORATIVA */

.producto-informacion h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    background: #d6a92f;

    margin-top: 18px;
}


/* DESCRIPCIÓN */

#producto-descripcion {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* =====================================================
   DATOS
===================================================== */

.producto-datos {
    display: flex;

    gap: 60px;

    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;

    padding: 20px 0;

    margin-bottom: 28px;
}

.producto-datos div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.producto-datos span {
    color: #c39420;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: bold;
}

.producto-datos strong {
    color: #111111;

    font-size: 22px;
}


/* =====================================================
   ESTADO — OCULTO
===================================================== */

.producto-estado {
    display: none !important;
}


/* =====================================================
   BOTÓN WHATSAPP
===================================================== */

#boton-whatsapp {
    width: 100%;

    background: #111111;

    color: #d6a92f;

    border: 1px solid #d6a92f;

    padding: 17px;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s ease;
}

#boton-whatsapp:hover {
    background: #d6a92f;

    color: #000000;
}


/* =====================================================
   BOTÓN CERRAR
===================================================== */

.cerrar-producto {
    position: absolute;

    top: 18px;
    right: 22px;

    width: 38px;
    height: 38px;

    border: 1px solid #dddddd;

    background: #ffffff;

    color: #111111;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s;
}

.cerrar-producto:hover {
    background: #d6a92f;

    border-color: #d6a92f;

    color: #000000;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 25px;
    }

    .menu {
        gap: 22px;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-logo {
        width: 350px;
        height: 350px;
    }

    .productos {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .nosotros {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contacto-mini {
        border-left: none;

        border-top: 1px solid var(--dorado);

        padding-left: 0;

        padding-top: 40px;
    }

}


/* =====================================================
   RESPONSIVE - CELULAR
===================================================== */

@media (max-width: 700px) {

    /* ==========================================
       NAVEGACIÓN EN CELULAR
    ========================================== */

    .navbar {
        height: auto;

        min-height: 120px;

        padding: 15px 20px;

        display: flex;

        flex-wrap: wrap;

        justify-content: space-between;

        gap: 12px;
    }


    /* LOGO */

    .logo-area {
        min-width: auto;

        gap: 9px;
    }

    .logo-area img {
        width: 55px;
        height: 55px;
    }

    .logo-text {
        font-size: 21px;
    }


    /* ICONOS */

    .iconos {
        min-width: auto;

        font-size: 19px;

        gap: 15px;
    }


    /* MENÚ */

    .menu {
        width: 100%;

        order: 3;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: wrap;

        gap: 8px 20px;

        padding-top: 8px;

        border-top: 1px solid rgba(214, 169, 47, 0.25);
    }

    .menu a {
        font-size: 12px;

        padding: 8px 0;
    }

    .menu a.activo::after,
    .menu a:not(.activo)::after {
        bottom: 0;
    }


    /* ==========================================
       PORTADA
    ========================================== */

    .hero {
        flex-direction: column;

        text-align: center;

        padding: 60px 20px;
    }

    .hero-contenido {
        max-width: 100%;
    }

    .hero .etiqueta {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero .descripcion {
        font-size: 15px;
    }

    .hero-logo {
        width: 280px;
        height: 280px;

        margin-top: 40px;
    }


    /* ==========================================
       COLECCIÓN
    ========================================== */

    .coleccion {
        padding: 65px 20px;
    }

    .titulo-seccion h2 {
        font-size: 36px;
    }

    .filtros {
        gap: 7px;
    }

    .filtro {
        padding: 10px 14px;

        font-size: 10px;
    }

    .productos {
        grid-template-columns: 1fr;
    }


    /* ==========================================
       NOSOTROS
    ========================================== */

    .nosotros {
        padding: 60px 25px;
    }

    .nosotros-titulo h2 {
        font-size: 36px;
    }

    .caracteristicas {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* ==========================================
       VENTANA DEL PRODUCTO
    ========================================== */

    .producto-modal {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .producto-imagen {
        min-height: 250px;

        font-size: 80px;
    }

    .producto-informacion {
        padding: 35px 25px;
    }

    .producto-informacion h2 {
        font-size: 32px;
    }

    .producto-datos {
        gap: 35px;
    }


    /* ==========================================
   FOOTER
========================================== */

footer {
    background: #050505;
    color: white;
    border-top: 1px solid #d4af37;

    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 50px;

    box-sizing: border-box;
}


/* LOGO DEL FOOTER */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* TAMAÑO DEL LOGO */

.footer-logo img {
    width: 65px;
    height: 65px;

    object-fit: contain;

    display: block;
}


/* NOMBRE */

.footer-nombre {
    font-family: Georgia, serif;
    font-size: 24px;
    color: white;
}

.footer-nombre span {
    color: #d4af37;
}


/* COPYRIGHT */

footer p {
    margin: 0;

    font-size: 13px;
    color: #cccccc;

    text-align: center;
}


/* REDES SOCIALES */

.redes {
    display: flex;
    gap: 20px;

    font-size: 13px;
}

.redes span {
    color: white;
    cursor: pointer;
}

.redes span:hover {
    color: #d4af37;
}
}/* ==========================================
   FOOTER
========================================== */

footer {
    background: #050505;
    color: white;
    padding: 30px 40px;
    border-top: 1px solid #d4af37;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO DEL FOOTER */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* TAMAÑO CORRECTO DEL LOGO */

.footer-logo img {
    width: 70px;
    height: 70px;

    object-fit: contain;

    display: block;
}


/* TEXTO DEL LOGO */

.footer-logo div {
    font-family: Georgia, serif;
    font-size: 24px;
    color: white;
}

.footer-logo span {
    color: #d4af37;
}


/* COPYRIGHT */

footer p {
    margin: 0;
    font-size: 13px;
    color: #cccccc;
}


/* REDES SOCIALES */

.redes {
    display: flex;
    gap: 18px;
}

.redes span {
    color: white;
    font-size: 13px;
    cursor: pointer;
}

.redes span:hover {
    color: #d4af37;
}


/* ==========================================
   ADAPTACIÓN PARA CELULAR
========================================== */

@media (max-width: 768px) {

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .redes {
        justify-content: center;
        flex-wrap: wrap;
    }

}.redes a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.redes a:hover {
    color: #d4af37;
}