﻿/* ============================================================
   LUXURY  —  cuero premium · negro y dorado
   Va en: wwwroot/css/layouts/layout-luxury.css
   ============================================================ */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0e0e0e;
    color: #e8e6e1;
    margin: 0;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #f3ead2;
    font-weight: 500;
}

a {
    color: #c9a24b;
}

/* ---- Encabezado ---- */

.site-header {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #0a0a0a;
    color: #f3ead2;
    border-bottom: 1px solid #2a2416;
    padding: 18px 32px;
}

.site-brand {
    color: #f3ead2;
    font-family: Georgia, serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 1.3rem;
}

    .site-brand img {
        height: 42px;
    }

.site-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

    .site-nav a {
        color: #cfc7b4;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .78rem;
        font-weight: 500;
        text-decoration: none;
    }

        .site-nav a:hover {
            color: #d4af37;
        }

.site-actions {
    margin-left: auto;
    display: flex;
    gap: 18px;
}

    .site-actions a {
        color: #cfc7b4;
        text-decoration: none;
    }

        .site-actions a:hover {
            color: #d4af37;
        }

/* ---- Grilla de productos ---- */
.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}

.producto-card {
    background: #161513;
    border: 1px solid #2a2416;
    border-radius: 2px;
    overflow: hidden;
    transition: border-color .2s;
}

    .producto-card:hover {
        border-color: #c9a24b;
    }

.producto-img {
    height: 240px;
    background: #f4f1ea;
}

    .producto-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.sin-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6a06a;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.producto-info {
    padding: 18px;
}

    .producto-info h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
        color: #f3ead2;
    }

.precio {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: Georgia, serif;
    margin: 4px 0;
}

.stock {
    color: #8c8677;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
}

/* ---- Encabezados de sección ---- */
.seccion-head h2 {
    border-bottom: 1px solid #2a2416;
    padding-bottom: 10px;
}

.seccion-head a {
    color: #c9a24b;
}

/* ---- Barra izquierda ---- */
.side-card {
    background: #161513;
    border: 1px solid #2a2416;
    border-radius: 2px;
    padding: 18px;
    margin-bottom: 18px;
}

    .side-card h4 {
        color: #f3ead2;
        font-family: Georgia, serif;
        margin: 0 0 10px;
    }

    .side-card p {
        color: #b7b3a8;
        font-size: .85rem;
        line-height: 1.6;
    }

    .side-card a {
        color: #c9a24b;
    }

.noticia {
    border-left: 2px solid #c9a24b;
    padding-left: 10px;
}

/* ---- Chat ---- */
.chat-widget {
    background: #161513;
    border: 1px solid #2a2416;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    height: 440px;
    overflow: hidden;
}

.chat-header {
    background: #0a0a0a;
    color: #d4af37;
    padding: 12px 16px;
    font-weight: 600;
    letter-spacing: .05em;
    border-bottom: 1px solid #2a2416;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-msg {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: .85rem;
    max-width: 85%;
}

    .chat-msg.bot {
        background: #232019;
        color: #e8e6e1;
        align-self: flex-start;
    }

    .chat-msg.user {
        background: #c9a24b;
        color: #111;
        align-self: flex-end;
    }

.chat-input {
    display: flex;
    border-top: 1px solid #2a2416;
}

    .chat-input input {
        flex: 1;
        border: none;
        padding: 12px;
        background: #0e0e0e;
        color: #e8e6e1;
        outline: none;
    }

    .chat-input button {
        border: none;
        background: #c9a24b;
        color: #111;
        padding: 0 16px;
        cursor: pointer;
    }

.carrito-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    background: #c9a24b;
    color: #111;
    border-radius: 2px;
}

.carrito-ico {
    font-size: 1.3rem;
}

.carrito-badge {
    position: absolute;
    top: -8px;
    left: 26px;
    background: #dc2626;
    color: #fff;
    font-size: .72rem;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(220,38,38,.5);
}

/* ---- Footer ---- */
.site-footer {
    background: #0a0a0a;
    color: #8c8677;
    border-top: 1px solid #2a2416;
    padding: 30px 32px;
    text-align: center;
    margin-top: 40px;
}

.footer-links a {
    color: #cfc7b4;
}

    .footer-links a:hover {
        color: #d4af37;
    }

.footer-copy {
    color: #6b6656;
}

.lateral-der {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.redes {
    display: flex;
    gap: 12px;
    justify-content: center;
}

    .redes a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.1rem;
        box-shadow: 0 4px 14px rgba(0,0,0,.12);
        color: #fff;
    }

        .redes a:hover {
            transform: translateY(-2px);
        }

        .redes a i {
            font-size: 1.05rem;
        }