* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: #0a0a0a; color: #ffffff; font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; overflow-x: hidden; }

/* SPLASH */
#splash-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; pointer-events: none; }
.splash-door { width: 50%; height: 100%; background-color: #0a0a0a; position: relative; overflow: hidden; transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.splash-logo-half { position: absolute; top: 50%; max-height: 350px; width: auto; object-fit: contain; mix-blend-mode: screen; animation: pulseLogo 1.5s ease-in-out infinite; }
.splash-door.left .splash-logo-half { right: 0; transform: translate(50%, -50%); }
.splash-door.right .splash-logo-half { left: 0; transform: translate(-50%, -50%); }
@keyframes pulseLogo { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
#splash-screen.fade-out .splash-door.left { transform: translateX(-100%); }
#splash-screen.fade-out .splash-door.right { transform: translateX(100%); }

/* HEADER */
.main-header { position: sticky; top: 0; z-index: 100; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 30px; }
.header-logo img { height: 120px; mix-blend-mode: screen; object-fit: contain; filter: brightness(1.2) drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.header-nav { display: flex; gap: 8px; }
.nav-link { color: #888; text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #e63946; }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #111; border: 1px solid #333; border-radius: 8px; padding: 6px 0; min-width: 170px; z-index: 1000; }
.dropdown-menu a { display: block; padding: 8px 18px; color: #aaa; text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px; white-space: nowrap; transition: all 0.15s; }
.dropdown-menu a:hover { background: #1a1a1a; color: #fff; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn { background: none; border: none; color: #ffffff; cursor: pointer; padding: 8px; border-radius: 8px; transition: all 0.2s; position: relative; }
.icon-btn svg { fill: #ffffff; }
.icon-btn:hover { color: #e63946; background: rgba(230, 57, 70, 0.1); }
.cart-btn { position: relative; }
.cart-count-badge { position: absolute; top: 0; right: 0; background: #e63946; color: #fff; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.search-bar-container { max-width: 600px; margin: 0 auto; padding: 0 30px 14px; }
.search-input { width: 100%; padding: 12px 24px; background: #1a1a1a; border: 1px solid #333; border-radius: 12px; color: #fff; font-size: 0.9rem; outline: none; transition: all 0.3s; }
.search-input::placeholder { color: #777; }
.search-input:focus { border-color: #e63946; background: #1e1e1e; box-shadow: 0 0 20px rgba(230, 57, 70, 0.1); }

/* HERO */
.hero { position: relative; overflow: hidden; padding: 60px 30px 50px; background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%); min-height: 520px; }
.hero-diag-lines { position: absolute; top: 0; right: 0; width: 65%; height: 100%; pointer-events: none; overflow: hidden; }
.hero-diag-lines::before { content: ''; position: absolute; top: -20%; right: -5%; width: 350px; height: 150%; background: linear-gradient(to bottom, transparent 5%, rgba(230, 57, 70, 0.35) 50%, transparent 95%); transform: skewX(-20deg); }
.hero-diag-lines::after { content: ''; position: absolute; top: -20%; right: 18%; width: 60px; height: 150%; background: linear-gradient(to bottom, transparent 5%, rgba(230, 57, 70, 0.2) 50%, transparent 95%); transform: skewX(-20deg); }
.hero-content { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
.hero-text { flex: 1; max-width: 550px; }
.hero-text h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.text-red { color: #e63946; }
.hero-subtitle { color: #888; font-size: 1rem; line-height: 1.6; margin-bottom: 28px; max-width: 420px; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: #e63946; color: #fff; border: none; padding: 14px 28px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; }
.btn-hero:hover { background: #c1121f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3); }
.arrow-right { font-size: 1.2rem; transition: transform 0.3s; }
.btn-hero:hover .arrow-right { transform: translateX(4px); }

.hero-images { flex: 1; position: relative; max-width: 620px; height: 480px; }
.hero-collage { position: relative; width: 100%; height: 100%; }
.hero-panel { position: absolute; overflow: hidden; border-radius: 14px; box-shadow: 0 30px 60px rgba(0,0,0,0.7); }
.hero-panel img { width: 100%; height: 100%; object-fit: cover; transform: skewX(10deg) scale(1.3); }
.panel-1 { width: 220px; height: 380px; top: 50px; left: -10px; z-index: 2; transform: skewX(-8deg); }
.panel-1 img { transform: skewX(8deg) scale(1.3); }
.panel-2 { width: 250px; height: 420px; top: 15px; left: 160px; z-index: 3; transform: skewX(-8deg); }
.panel-2 img { transform: skewX(8deg) scale(1.3); }
.panel-3 { width: 220px; height: 380px; top: 50px; left: 340px; z-index: 2; transform: skewX(-8deg); }
.panel-3 img { transform: skewX(8deg) scale(1.3); }

/* CATEGORIES */
.categories-section { max-width: 1300px; margin: 0 auto; padding: 60px 30px; text-align: center; }
.section-title { font-size: 2rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-subtitle { color: #666; font-size: 0.9rem; margin-bottom: 40px; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card { background: #151515; border: 1px solid #1e1e1e; border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.35s ease; display: flex; flex-direction: column; position: relative; }
.category-card:hover { transform: translateY(-6px); border-color: #e63946; box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1); }
.cat-img-wrap { width: 100%; height: 180px; overflow: visible; position: relative; }
.cat-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 40px; background: linear-gradient(to top, #151515, transparent); pointer-events: none; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-icon-bottom { position: absolute; top: 156px; left: 16px; width: 44px; height: 44px; background: #e63946; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 5; box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5); }
.cat-body { padding: 30px 16px 14px; flex: 1; }
.cat-body h3 { font-size: 0.82rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 4px; text-transform: uppercase; }
.cat-body p { color: #666; font-size: 0.72rem; margin-bottom: 0; line-height: 1.4; }
.cat-footer { border-top: 1px solid #1e1e1e; padding: 12px 16px; }
.cat-link { color: #888; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-decoration: none; text-transform: uppercase; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.cat-link span { color: #e63946; transition: transform 0.2s; }
.category-card:hover .cat-link { color: #fff; }
.category-card:hover .cat-link span { transform: translateX(3px); }

/* REVIEWS */
.reviews-section { max-width: 1300px; margin: 0 auto; padding: 60px 30px; text-align: center; }
.reviews-carousel { position: relative; margin-top: 40px; overflow: hidden; }
.reviews-track { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; padding: 10px 0; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-width: 340px; max-width: 380px; flex: 1; background: #111; border: 1px solid #1a1a1a; border-radius: 14px; padding: 28px; text-align: left; transition: border-color 0.3s; }
.review-card:hover { border-color: #333; }
.review-stars { color: #ffcc00; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { color: #bbb; font-size: 0.9rem; line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author strong { font-size: 0.85rem; letter-spacing: 0.5px; }
.verified { color: #e63946; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #333; cursor: pointer; transition: background 0.2s; }
.dot.active { background: #e63946; }

/* CONTAINER / GRID */
.container { max-width: 1300px; margin: 0 auto; padding: 20px 30px; }
.category-section { margin-bottom: 40px; }

/* Section transition animations */
@keyframes sectionIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.category-section.section-enter {
  animation: sectionIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Grid card staggered entrance */
@keyframes cardIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.category-section.section-enter .grid .card {
  animation: cardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.category-section.section-enter .grid .card:nth-child(1) { animation-delay: 0.05s; }
.category-section.section-enter .grid .card:nth-child(2) { animation-delay: 0.1s; }
.category-section.section-enter .grid .card:nth-child(3) { animation-delay: 0.15s; }
.category-section.section-enter .grid .card:nth-child(4) { animation-delay: 0.2s; }
.category-section.section-enter .grid .card:nth-child(5) { animation-delay: 0.25s; }
.category-section.section-enter .grid .card:nth-child(6) { animation-delay: 0.3s; }
.category-section.section-enter .grid .card:nth-child(7) { animation-delay: 0.35s; }
.category-section.section-enter .grid .card:nth-child(8) { animation-delay: 0.4s; }
.category-section.section-enter .grid .card:nth-child(9) { animation-delay: 0.45s; }
.category-section.section-enter .grid .card:nth-child(10) { animation-delay: 0.5s; }
.category-section.section-enter .grid .card:nth-child(11) { animation-delay: 0.55s; }
.category-section.section-enter .grid .card:nth-child(12) { animation-delay: 0.6s; }
.category-section.section-enter .grid .card:nth-child(13) { animation-delay: 0.65s; }
.category-section.section-enter .grid .card:nth-child(14) { animation-delay: 0.7s; }
.category-section.section-enter .grid .card:nth-child(15) { animation-delay: 0.75s; }

/* Exit animation for inicio */
@keyframes sectionOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}
.categories-section.section-exit {
  animation: sectionOut 0.3s ease forwards;
}

/* Category card click */
.category-card:active {
  transform: scale(0.95);
  transition: transform 0.15s ease;
}

/* Category cards entrance on load */
@keyframes catCardIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.categories-grid.cat-enter .category-card {
  animation: catCardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.categories-grid.cat-enter .category-card:nth-child(1) { animation-delay: 0.05s; }
.categories-grid.cat-enter .category-card:nth-child(2) { animation-delay: 0.1s; }
.categories-grid.cat-enter .category-card:nth-child(3) { animation-delay: 0.15s; }
.categories-grid.cat-enter .category-card:nth-child(4) { animation-delay: 0.2s; }
.categories-grid.cat-enter .category-card:nth-child(5) { animation-delay: 0.25s; }

/* Mobile menu button active */
.mobile-menu-btn:active {
  transform: scale(0.9);
}
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* LIGA HEADERS */
.liga-header { grid-column: 1 / -1; padding: 20px 0 0 0; margin-bottom: 0; border-bottom: 2px solid #e63946; }
.liga-name { font-size: 1.3rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: #e63946; padding: 6px 18px; border-radius: 6px 6px 0 0; display: inline-block; }

/* CARDS */
.card { background: #111; border: 1px solid #1a1a1a; border-radius: 14px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; position: relative; }
.card:hover { border-color: #333; }
.image-container { width: 100%; aspect-ratio: 1 / 1; background: #161616; position: relative; overflow: hidden; }
.image-slider { display: none; width: 100%; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.image-slider.active { display: flex; animation: smoothFade 0.35s ease-in-out forwards; }
@keyframes smoothFade { from { opacity: 0; } to { opacity: 1; } }
.image-slider::-webkit-scrollbar { display: none; }
.image-slider img { width: 100%; min-width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; transition: transform 0.3s; }
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255,255,255,0.9); color: #000; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 20; transition: background-color 0.2s; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.nav-arrow:hover { background-color: #fff; }
.nav-arrow.prev { left: 12px; }
.nav-arrow.next { right: 12px; }

/* BADGES */
.trend-badge { position: absolute; top: 12px; left: 12px; padding: 5px 10px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; z-index: 30; box-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.trend-badge.top-sales { background-color: #fff; color: #000; }
.trend-badge.new { background-color: #e63946; color: #fff; }

/* INFO */
.info { padding: 18px; }
.info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #f0f0f0; }
.variant-selector { display: flex; gap: 8px; margin-bottom: 12px; align-items: center; }
.variant-dot { width: 18px; height: 18px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.variant-dot:hover { transform: scale(1.1); }
.variant-dot.active { border-color: #fff; transform: scale(1.15); }
.version-selector { display: flex; gap: 8px; margin-bottom: 12px; }
.version-btn { flex: 1; background-color: #1a1a1a; color: #888; border: 1px solid #222; padding: 8px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.version-btn:hover { color: #fff; border-color: #444; }
.version-btn.active { background-color: #e63946; color: #fff; border-color: #e63946; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.price { font-size: 1.3rem; font-weight: 800; }
.status { font-size: 0.8rem; color: #00ff66; background-color: rgba(0, 255, 102, 0.1); padding: 3px 8px; border-radius: 4px; }
.pack-desc { color: #aaa; font-size: 0.85rem; margin-bottom: 10px; line-height: 1.4; }

/* ORDER FORM */
.order-form { background: #161616; padding: 12px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #222; }
.order-form label { font-size: 0.75rem; color: #888; display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.order-form select, .order-form input[type="text"] { width: 100%; background: #0a0a0a; color: #fff; border: 1px solid #333; padding: 8px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 10px; outline: none; }
.order-form select:focus, .order-form input[type="text"]:focus { border-color: #e63946; }
.checkbox-container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #ccc; cursor: pointer; margin-bottom: 0; }
.size-link { color: #888; font-size: 0.8rem; text-decoration: underline; cursor: pointer; display: block; text-align: center; margin-bottom: 12px; transition: color 0.2s; }
.size-link:hover { color: #fff; }
.btn-order { display: flex; align-items: center; justify-content: center; width: 100%; background-color: #e63946; color: #fff; padding: 12px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: background-color 0.2s, transform 0.1s; font-size: 0.95rem; }
.btn-order:hover { background-color: #c1121f; }

/* PACK CARDS */
.pack-card { background: linear-gradient(145deg, #1a0505, #0b0b0b); border: 1px solid #2a0a0a; border-radius: 14px; display: flex; flex-direction: column; }
.pack-card .image-container { flex-shrink: 0; }
.pack-card .info { display: flex; flex-direction: column; flex: 1; }
.pack-card .info .btn-order { margin-top: auto; }
.pack-card:hover { border-color: #e63946; box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15); }
#packs .grid { grid-template-columns: repeat(4, 1fr); }
.pack-card .image-container { aspect-ratio: 4/5 !important; background: radial-gradient(ellipse at center, #1a0808 0%, #111 70%, #000 100%) !important; position: relative; }
.pack-card .image-container::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(to top, #0b0b0b, transparent); pointer-events: none; z-index: 2; }
.pack-card .image-container img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: brightness(1.1) contrast(1.05) drop-shadow(0 10px 30px rgba(0,0,0,0.6)); transition: transform 0.4s ease; }
.pack-card:hover .image-container img { transform: scale(1.08); }
.pack-badge { position: absolute; top: 14px; left: 14px; color: #fff; padding: 6px 14px; font-weight: 900; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 30; }

/* PRICE */
.price-pack-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.new-price { color: #00ff66; font-size: 1.3rem; font-weight: 900; }



/* FLOATING */
.whatsapp-floating { position: fixed; bottom: 25px; left: 25px; background-color: #25d366; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 150; text-decoration: none; transition: transform 0.2s; }
.whatsapp-floating:hover { transform: scale(1.1); }

/* SOCIAL */
.social-section { text-align: center; padding: 50px 30px; }
.social-title { font-size: 1rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; color: #fff; }
.social-links { display: flex; justify-content: center; gap: 16px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #1a1a1a; border: 1px solid #222; border-radius: 50%; transition: all 0.3s; text-decoration: none; color: #fff; }
.social-icon:hover { background: #e63946; border-color: #e63946; transform: translateY(-3px); }
.social-icon svg { fill: currentColor; }

/* FOOTER */
.main-footer { border-top: 1px solid #1a1a1a; padding: 30px; margin-top: 20px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 100px; mix-blend-mode: screen; object-fit: contain; filter: brightness(1.2) drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #555; text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-right { color: #444; font-size: 0.75rem; }

/* MODALS */
.modal { display: none; position: fixed; z-index: 200; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(5px); align-items: center; justify-content: center; }
.modal-content { background-color: #111; border: 1px solid #222; padding: 30px; border-radius: 16px; max-width: 450px; width: 90%; position: relative; animation: modalFade 0.3s ease forwards; }
@keyframes modalFade { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; color: #888; cursor: pointer; transition: color 0.2s; }
.close-modal:hover { color: #fff; }
.size-table { width: 100%; border-collapse: collapse; margin: 20px 0 15px 0; }
.size-table th, .size-table td { padding: 12px; text-align: center; border-bottom: 1px solid #1a1a1a; }
.size-table th { background-color: #161616; color: #fff; font-size: 0.9rem; font-weight: 600; }
.size-table td { color: #ccc; font-size: 0.85rem; }
.discount-box { display: flex; gap: 8px; margin-bottom: 15px; }
.discount-box input { flex: 1; padding: 10px; background: #1a1a1a; border: 1px solid #333; color: white; border-radius: 6px; outline: none; text-transform: uppercase; font-weight: bold; }
.discount-box input:focus { border-color: #e63946; }
.discount-box button { padding: 10px 15px; background: #333; border: none; color: white; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.2s; }
.discount-box button:hover { background: #555; }
.discount-message { font-size: 0.85rem; color: #00ff66; margin-bottom: 15px; display: none; text-align: center; font-weight: bold; }



/* BOTTOM REVIEWS */
.bottom-reviews-section { border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 50px 30px; }

/* FAQ */
.faq-section { max-width: 800px; margin: 0 auto; padding: 50px 30px; text-align: center; }
.faq-item { background: #111; border: 1px solid #1e1e1e; border-radius: 10px; margin-bottom: 10px; text-align: left; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: #333; }
.faq-question { padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 0.9rem; display: flex; justify-content: space-between; align-items: center; color: #ccc; user-select: none; }
.faq-question:hover { color: #fff; }
.faq-arrow { font-size: 1.3rem; color: #e63946; transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; padding: 0 20px; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #666; font-size: 0.85rem; line-height: 1.6; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 16px; }
.bottom-reviews-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bottom-review-card { background: #111; border: 1px solid #1a1a1a; border-radius: 14px; padding: 28px; transition: border-color 0.3s; }
.bottom-review-card:hover { border-color: #333; }
.bottom-review-card .review-stars { color: #ffcc00; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.bottom-review-card p { color: #aaa; font-size: 0.9rem; line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.bottom-review-card .review-author { font-size: 0.85rem; }
.bottom-review-card .review-author strong { color: #fff; }
.bottom-review-card .verified { color: #e63946; font-size: 0.7rem; font-weight: 600; margin-left: 8px; }


/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-images { max-width: 400px; height: 300px; margin-top: 20px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    #packs .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #111; border-bottom: 1px solid #1a1a1a; flex-direction: column; padding: 10px 20px; gap: 0; }
    .header-nav.open { display: flex; }
    .nav-link { padding: 12px 16px; border-radius: 0; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero { padding: 40px 20px; min-height: auto; }
    .hero-images { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-img-wrap { height: 150px; }
    .grid { grid-template-columns: 1fr; }
    #packs .grid { grid-template-columns: 1fr; }
    .review-card { min-width: 290px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .container { padding: 15px; }
    .categories-section { padding: 40px 15px; }
    .reviews-section { padding: 40px 15px; }
    .bottom-reviews-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .cat-img-wrap { height: 200px; }
    .btn-hero { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
    .header-nav.open .nav-dropdown { display: block; }
    .header-nav.open .dropdown-menu { display: block; position: static; transform: none; background: transparent; border: none; padding-left: 16px; }
    .header-nav.open .dropdown-menu a { padding: 6px 14px; font-size: 0.75rem; }
}
.liga-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0 10px;
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
}
.liga-header:first-of-type { padding-top: 0; }
.liga-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}
.liga-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wishlist heart */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    transition: all 0.25s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.wishlist-heart:hover { transform: scale(1.15); color: #ff4757; }
.wishlist-heart.active { color: #ff4757; background: rgba(255,71,87,0.2); }


