
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background-color: #000; color: #fff; font-family: 'Segoe UI', sans-serif; }

/* Navbar Simétrico */
.navbar {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 20px 8%; background: #000; border-bottom: 1px solid #D4AF37;
    position: sticky; top: 0; z-index: 1000;
}
.logo { justify-self: start; color: #D4AF37; font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
nav { justify-self: center; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a { color: #fff; text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #D4AF37; }
.cart-btn, .spacer { justify-self: end; width: 130px; text-align: center; }
.cart-btn { color: #D4AF37; cursor: pointer; border: 1px solid #D4AF37; padding: 8px; }

/* Hero */
.hero { height: 85vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 10; text-align: center; }
.hero-content h1 { font-size: 4rem; color: #D4AF37; letter-spacing: 5px; }
.gold-line { height: 2px; width: 60px; background: #D4AF37; margin: 15px auto; }
.btn-main-hero { display: inline-block; padding: 12px 30px; border: 1px solid #D4AF37; color: #D4AF37; text-decoration: none; margin-top: 20px; transition: 0.3s; }
.btn-main-hero:hover { background: #D4AF37; color: #000; }

/* Productos con Margen */
.catalog { padding: 80px 8%; text-align: center; }
.section-title { color: #D4AF37; margin-bottom: 50px; font-size: 2rem; letter-spacing: 4px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 35px; }
.product-card { background: #0a0a0a; border: 1px solid #1a1a1a; padding: 40px 20px; transition: 0.4s; }
.product-card:hover { border-color: #D4AF37; transform: translateY(-5px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }
.price { color: #D4AF37; font-size: 1.5rem; margin: 15px 0; font-weight: bold; }
.product-card button, .btn-main { background: #D4AF37; border: none; color: #000; padding: 15px; cursor: pointer; font-weight: bold; width: 100%; letter-spacing: 1px; }

/* ===== SOLUCIÓN PARA LAS IMÁGENES GIGANTES ===== */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px; /* Da un pequeño espacio entre la imagen y el título */
}

/* Contacto Modo Recto / Lista */
.contact-section { padding: 80px 8%; display: flex; justify-content: center; min-height: 90vh; }
.contact-split-container { display: flex; width: 100%; max-width: 1000px; border: 2px solid #D4AF37; background: #000; }

.info-side { flex: 1; padding: 60px; background: #0a0a0a; border-right: 2px solid #D4AF37; text-align: center; }
.contact-list { list-style: none; margin-top: 30px; text-align: left; display: inline-block; }
.contact-list li { margin-bottom: 15px; font-size: 0.9rem; color: #888; letter-spacing: 1px; }

.form-side { flex: 1.2; padding: 60px; }
.rect-form { display: flex; flex-direction: column; gap: 20px; }
.form-item { display: flex; flex-direction: column; text-align: left; }
.form-item label { color: #D4AF37; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 8px; }
.form-item input, .form-item textarea {
    background: transparent; border: none; border-bottom: 1px solid #333;
    padding: 10px 0; color: #fff; outline: none; transition: 0.3s;
}
.form-item input:focus, .form-item textarea:focus { border-bottom-color: #D4AF37; }

/* Acordeón */
.faq-section { padding: 60px 8%; max-width: 900px; margin: 0 auto; text-align: left; }
.accordion-item { border-bottom: 1px solid #222; }
.accordion-header { width: 100%; background: none; border: none; color: #fff; padding: 20px; cursor: pointer; text-align: left; display: flex; justify-content: space-between; font-size: 1rem; }
.accordion-body { max-height: 0; overflow: hidden; transition: 0.3s ease; padding: 0 20px; color: #888; }
.accordion-item.active .accordion-body { max-height: 100px; padding-bottom: 20px; }

/* Carrito Sidebar */
.cart-sidebar { position: fixed; top: 0; right: -100%; width: 350px; height: 100vh; background: #0a0a0a; border-left: 1px solid #D4AF37; padding: 40px; transition: 0.4s; z-index: 2000; }
.cart-sidebar.active { right: 0; }
.btn-close { background: none; border: none; color: #555; width: 100%; margin-top: 15px; cursor: pointer; }

@media screen and (max-width: 850px) {
    .contact-split-container { flex-direction: column; }
    .info-side { border-right: none; border-bottom: 2px solid #D4AF37; }
}

