
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Modal Verificación de Edad */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #c5a059;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.modal-content h2 {
    color: #c5a059;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 0.95rem;
    color: #ccc;
}

.modal-content .subtitle {
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.error-msg {
    color: #e74c3c !important;
    margin-top: 15px;
    font-size: 0.85rem !important;
}

/* UI General */
.btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-gold {
    background-color: #c5a059;
    color: #000;
    font-weight: bold;
}

.btn-gold:hover {
    background-color: #e5b869;
}

.btn-outline {
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
}

.btn-outline:hover {
    background: #c5a059;
    color: #000;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #0b0b0b;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #c5a059;
}

.navbar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.navbar a:hover {
    color: #c5a059;
}

.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    color: #c5a059;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 25px;
}

.section {
    padding: 70px 8%;
    text-align: center;
}

.bg-dark {
    background-color: #070707;
}

.section h2 {
    font-size: 1.8rem;
    color: #c5a059;
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: #c5a059;
    margin: 15px auto 30px auto;
}

.description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #bbb;
}

.grid-products {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    background-color: #141414;
    border: 1px solid #282828;
    width: 300px;
    padding: 25px;
    text-align: left;
}

.card h3 {
    color: #fff;
    margin-bottom: 5px;
}

.card .price {
    color: #c5a059;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card .details {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.card .notes {
    font-size: 0.9rem;
    color: #aaa;
}

.contact-box {
    margin-top: 20px;
    font-size: 1.1rem;
}

footer {
    background-color: #050505;
    text-align: center;
    padding: 25px;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #1a1a1a;
}
