@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #f1592a;
    --accent: #f47922;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: #f1f5f9;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #f1592a30 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.price-chip {
    background: #e60909;
    /* Rojo */
    color: #fbed24;
    /* Amarillo */
    font-weight: 800;
    font-size: 0.85rem;
    /* Texto más grande */
    padding: 0.35rem 0.85rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    font-size: 2rem;
    /* Más grande */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    /* Línea más larga */
    height: 4px;
    /* Línea más gruesa */
    background: var(--accent);
    border-radius: 10px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.hero-img {
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cart-animate {
    animation: slideUp 0.4s ease-out;
}

/* Imagen hero tamaño completo */
.hero-full {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Contenedor principal para que el footer quede al fondo */
.main-content {
    flex: 1 0 auto;
}

/* Footer sin márgenes extras */
footer {
    flex-shrink: 0;
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}

/* Clase auxiliar para el color acento que usa Tailwind */
.text-accent {
    color: var(--accent);
}

.hover\:text-accent:hover {
    color: var(--accent);
}

.bg-accent {
    background-color: var(--accent);
}

.border-accent {
    border-color: var(--accent);
}

/* Color de fondo oscuro para Tailwind */
.bg-dark-bg {
    background-color: var(--dark-bg);
}

.text-dark-bg {
    color: var(--dark-bg);
}

/* Ofertas Relámpago */
@keyframes offerGlow {
    0% { box-shadow: 0 0 5px rgba(241, 89, 42, 0.2), inset 0 0 5px rgba(241, 89, 42, 0.1); }
    50% { box-shadow: 0 0 20px rgba(241, 89, 42, 0.6), inset 0 0 10px rgba(241, 89, 42, 0.3); }
    100% { box-shadow: 0 0 5px rgba(241, 89, 42, 0.2), inset 0 0 5px rgba(241, 89, 42, 0.1); }
}

.bg-glow-offer {
    animation: offerGlow 2s infinite ease-in-out;
    border: 1px solid rgba(241, 89, 42, 0.5) !important;
}

.oferta-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffbc00;
    color: #000;
    padding: 0.25rem 0.75rem;
    font-weight: 900;
    font-size: 0.65rem;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.4);
    z-index: 10;
    letter-spacing: 0.1em;
}

.price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.price-offer {
    color: #ffbc00 !important;
}