* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0b0b0e;
    color: #e5e7eb;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 14, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
}
.logo-accent {
    color: #ff5500;
}
.logo-sub {
    color: #ff5500;
    font-weight: 700;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #ff5500;
}
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700;
}

/* HERO */
.hero {
    padding: 4.5rem 1.5rem 2.5rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 85, 0, 0.12), transparent 70%);
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 85, 0, 0.15);
    color: #ff7700;
    border: 1px solid rgba(255, 85, 0, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.hero h1 span {
    color: #ff5500;
    text-shadow: 0 0 25px rgba(255, 85, 0, 0.4);
}
.hero p {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: #18181b;
    border: 1px solid #27272a;
    color: #d4d4d8;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn.active {
    background: #ff5500;
    color: #ffffff;
    border-color: #ff5500;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

/* BANNER INSPIRACIONAL */
.inspiration-banner {
    max-width: 1000px;
    margin: 1.5rem auto 3rem;
    padding: 0 1.5rem;
}
.banner-inner {
    background: linear-gradient(135deg, rgba(30, 20, 20, 0.8), rgba(20, 10, 10, 0.9));
    border-left: 4px solid #ff5500;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: #e4e4e7;
    font-size: 1.05rem;
}

/* SECCIÓN CATÁLOGOS */
.catalog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}
.section-title h2 span {
    color: #3b82f6;
}
#tab-th .section-title h2 span {
    color: #00e5ff;
}
.subtitle-badge {
    display: inline-block;
    background: rgba(255, 85, 0, 0.1);
    color: #ff7700;
    border: 1px solid #ff5500;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 6px;
    margin-top: 10px;
}

/* GRID DE PRODUCTOS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

/* CARD DE PRODUCTO */
.product-card {
    background: #121217;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: #ff5500;
}
.badge-puffs {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1c1917;
    color: #ff7700;
    border: 1px solid #ff5500;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
}
.card-brand {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #a1a1aa;
    font-weight: 700;
    margin-top: 5px;
}
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.product-img-box {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 12px;
}
.product-img-box img {
    max-width: 90%;
    max-height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-box img {
    transform: scale(1.06);
}

.price-tag {
    background: #ff7700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 0.6rem;
    display: inline-block;
}
.promo-pill {
    background: #1c1410;
    color: #ff9900;
    border: 1px solid #ff7700;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}
.order-btn {
    background: #27272a;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.order-btn:hover {
    background: #ff5500;
    color: #000;
}

/* ESTILOS ESPECÍFICOS PARA TH / THC */
.card-th:hover {
    border-color: #00e5ff;
}
.badge-th {
    color: #00e5ff;
    border-color: #00e5ff;
}
.price-th {
    background: #00e5ff;
    color: #000;
}
.promo-th {
    border-color: #00e5ff;
    color: #00e5ff;
}
.btn-th:hover {
    background: #00e5ff;
    color: #000;
}
.is-soldout {
    opacity: 0.6;
    filter: grayscale(0.5);
}
.soldout-badge {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #dc2626;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 6px 20px;
    border-radius: 8px;
    border: 2px solid #fff;
    z-index: 10;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

/* ANIMACIONES DE SCROLL (IZQUIERDA Y DERECHA) */
.animate-from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-from-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-from-left.in-view,
.animate-from-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* SECCIÓN INFORMACIÓN (HORARIOS Y PAGOS) */
.info-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.info-card {
    background: #141418;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 2rem;
}
.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #27272a;
    padding-bottom: 1rem;
}
.info-icon {
    font-size: 1.8rem;
}
.info-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #fff;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1f1f24;
}
.closed {
    color: #ef4444;
}
.recibimos {
    color: #ff7700;
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.payment-list {
    list-style: none;
}
.payment-list li {
    padding: 6px 0;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-list li span {
    color: #10b981;
}

/* FAQ */
.faq-section {
    max-width: 850px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #131317;
    border: 1px solid #27272a;
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: #f3f4f6;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-arrow {
    font-size: 1.3rem;
    color: #ff5500;
    transition: transform 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #9ca3af;
    background: #0e0e12;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem 1.2rem;
}
.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    background: #08080a;
    border-top: 1px solid #1f1f24;
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 4rem;
}
.footer h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
}
.footer .insta-link a {
    color: #ff5500;
    text-decoration: none;
    font-weight: 700;
}
.footer .copy {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}