/*
Theme Name: HappiPari Piñatas
Theme URI: https://happipari.es
Author: HappiPari
Author URI: https://happipari.es
Description: Tema personalizado para HappiPari Piñatas Infantiles — Tenerife. Compatible con WooCommerce. Diseño festivo, oscuro y colorido con identidad de marca propia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: happipari
Tags: e-commerce, woocommerce, dark, festive, custom-colors, custom-logo, full-width-template

*/

/* ═══════════════════════════════════════
   HAPPIPARI BRAND TOKENS
═══════════════════════════════════════ */
:root {
    --hp-black:   #0d0d0d;
    --hp-darkbg:  #111118;
    --hp-card:    #1a1a24;
    --hp-yellow:  #FFD700;
    --hp-red:     #E8003A;
    --hp-pink:    #FF3DA8;
    --hp-blue:    #00BFFF;
    --hp-orange:  #FF8C00;
    --hp-green:   #00E676;
    --hp-white:   #FFFFFF;
    --hp-muted:   rgba(255,255,255,.5);
    --hp-radius:  16px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--hp-darkbg);
    color: var(--hp-white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(1px 1px at 10% 15%, rgba(255,215,0,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 45%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 20%, rgba(255,61,168,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 60%, rgba(0,191,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 30%, rgba(255,215,0,.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 45% 55%, rgba(255,215,0,.3) 0%, transparent 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hp-yellow); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hp-orange); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Titan One', cursive;
    line-height: 1.1;
    color: var(--hp-white);
}

/* ── ANNOUNCE BAR ── */
.hp-announce {
    background: linear-gradient(90deg, var(--hp-red), var(--hp-pink), var(--hp-red));
    background-size: 200%;
    animation: barSlide 3s linear infinite;
    color: white; text-align: center;
    padding: 10px 20px; font-size: 13px; font-weight: 800;
    position: relative; z-index: 200;
}
@keyframes barSlide { 0%{background-position:0%} 100%{background-position:200%} }

/* ── NAVIGATION ── */
.hp-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,13,13,.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255,215,0,.12);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 36px; height: 72px;
}

.hp-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.hp-logo-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: #0d0d0d;
    border: 2px solid rgba(255,215,0,.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hp-logo-star {
    font-size: 30px;
    animation: starPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,215,0,.8));
}
@keyframes starPulse {
    0%,100%{transform:scale(1) rotate(-5deg);}
    50%{transform:scale(1.12) rotate(5deg);}
}
.hp-logo-happi { display:block; font-family:'Titan One',cursive; font-size:22px; color:var(--hp-yellow); text-shadow:2px 2px 0 var(--hp-red); letter-spacing:1px; line-height:1; }
.hp-logo-pari  { display:block; font-family:'Titan One',cursive; font-size:22px; color:var(--hp-red); text-shadow:2px 2px 0 var(--hp-yellow); letter-spacing:1px; line-height:1; }
.hp-logo-sub   { display:block; font-size:9px; color:rgba(255,255,255,.4); letter-spacing:3px; text-transform:uppercase; margin-top:2px; }

.hp-nav-menu { display:flex; gap:4px; list-style:none; }
.hp-nav-menu li a {
    color: rgba(255,255,255,.75);
    font-size: 14px; font-weight: 800;
    padding: 8px 16px; border-radius: 8px;
    transition: all .2s; display:block;
}
.hp-nav-menu li a:hover,
.hp-nav-menu li.current-menu-item a,
.hp-nav-menu li.current-page-ancestor a {
    background: rgba(255,215,0,.1);
    color: var(--hp-yellow);
}

.hp-nav-right { display:flex; align-items:center; gap:14px; }

/* WooCommerce cart icon in nav */
.hp-cart-link {
    background: linear-gradient(135deg, var(--hp-yellow), var(--hp-orange));
    color: var(--hp-black) !important;
    font-weight: 900; font-size: 14px;
    padding: 10px 22px; border-radius: 50px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 0 20px rgba(255,215,0,.35);
    transition: transform .2s, box-shadow .2s;
}
.hp-cart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255,215,0,.55);
    color: var(--hp-black) !important;
}
.hp-cart-count {
    background: var(--hp-red); color: white;
    border-radius: 50%; width: 20px; height: 20px;
    font-size: 11px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}

/* ── SITE WRAPPER ── */
#page { position: relative; z-index: 1; }
.site-content { min-height: 60vh; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ── SECTION BASE ── */
.hp-section { padding: 80px 0; }
.hp-section-alt { background: rgba(255,255,255,.02); }

.hp-section-head { text-align: center; margin-bottom: 56px; }
.hp-section-tag {
    display: inline-block;
    background: rgba(255,215,0,.1); border: 1.5px solid rgba(255,215,0,.3);
    color: var(--hp-yellow); font-size: 11px; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 5px 18px; border-radius: 50px; margin-bottom: 16px;
}
.hp-section-title { font-size: clamp(30px, 4vw, 50px); }
.hp-section-title .yel { color: var(--hp-yellow); }
.hp-section-title .red { color: var(--hp-red); }
.hp-section-title .pink { color: var(--hp-pink); }
.hp-section-sub { color: rgba(255,255,255,.5); font-size: 16px; margin-top: 12px; font-weight: 600; }

/* ── MARQUEE ── */
.hp-marquee-wrap {
    background: var(--hp-yellow); padding: 13px 0; overflow: hidden;
    border-top: 3px solid var(--hp-orange); border-bottom: 3px solid var(--hp-orange);
}
.hp-marquee-track { display:flex; width:max-content; animation:marquee 22s linear infinite; }
.hp-marquee-item { font-size:13px; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; padding:0 40px; color:var(--hp-black); white-space:nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── HERO ── */
.hp-hero {
    min-height: 88vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative; overflow: hidden;
    padding: 0 60px; gap: 40px;
}
.hp-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,0,58,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 60%, rgba(255,215,0,.08) 0%, transparent 70%);
}
.hp-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,.12); border: 1.5px solid rgba(255,215,0,.3);
    color: var(--hp-yellow); font-size: 12px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 7px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hp-hero-title { font-size: clamp(52px, 7vw, 90px); margin-bottom: 8px; }
.hp-hero-title .line1 { display:block; color:var(--hp-white); text-shadow:3px 3px 0 rgba(0,0,0,.5); }
.hp-hero-title .line2 { display:block; color:var(--hp-yellow); text-shadow:3px 3px 0 var(--hp-red); }
.hp-hero-title .line3 { display:block; color:var(--hp-pink); text-shadow:3px 3px 0 rgba(0,0,0,.5); }
.hp-hero-sub { font-size:17px; color:rgba(255,255,255,.7); line-height:1.7; max-width:420px; margin:24px 0 40px; font-weight:700; }
.hp-hero-sub strong { color: var(--hp-yellow); }

.hp-btn-primary {
    background: linear-gradient(135deg, var(--hp-yellow), var(--hp-orange));
    color: var(--hp-black); border: none; cursor: pointer;
    font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 15px;
    padding: 16px 36px; border-radius: 50px;
    box-shadow: 0 0 24px rgba(255,215,0,.4);
    transition: transform .2s, box-shadow .2s;
    display: inline-block;
}
.hp-btn-primary:hover { transform:translateY(-3px); box-shadow:0 0 36px rgba(255,215,0,.6); color:var(--hp-black); }

.hp-btn-outline {
    background: transparent; color: var(--hp-white);
    border: 2px solid rgba(255,255,255,.25);
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px;
    padding: 16px 36px; border-radius: 50px;
    transition: all .2s; display: inline-block;
}
.hp-btn-outline:hover { border-color:var(--hp-yellow); color:var(--hp-yellow); }

.hp-hero-btns { display:flex; gap:16px; flex-wrap:wrap; }

.hp-hero-stats { display:flex; gap:36px; margin-top:48px; padding-top:32px; border-top:1px solid rgba(255,255,255,.1); }
.hp-stat-num { font-family:'Titan One',cursive; font-size:30px; color:var(--hp-yellow); display:block; }
.hp-stat-label { font-size:12px; color:rgba(255,255,255,.45); font-weight:700; text-transform:uppercase; letter-spacing:1px; }

.hp-hero-visual { display:flex; align-items:center; justify-content:center; position:relative; z-index:2; }
.hp-pinata-main { font-size:200px; animation:floatMain 4s ease-in-out infinite; filter:drop-shadow(0 20px 60px rgba(255,215,0,.25)); display:block; text-align:center; }
@keyframes floatMain { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-18px) rotate(4deg)} }

/* ── CATEGORY CARDS ── */
.hp-cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hp-cat-card {
    border-radius: var(--hp-radius); background: var(--hp-card);
    border: 1.5px solid rgba(255,255,255,.07);
    cursor: pointer; transition: transform .3s, box-shadow .3s, border-color .3s;
    padding: 36px 28px; text-align: center;
}
.hp-cat-card:hover { transform:translateY(-5px); box-shadow:0 16px 50px rgba(0,0,0,.35); border-color:rgba(255,215,0,.25); }
.hp-cat-icon { font-size:56px; margin-bottom:14px; display:block; }
.hp-cat-name { font-family:'Titan One',cursive; font-size:19px; margin-bottom:6px; color:var(--hp-white); }
.hp-cat-desc { font-size:13px; color:rgba(255,255,255,.45); font-weight:600; }
.hp-cat-arrow { display:inline-block; margin-top:16px; font-size:13px; font-weight:900; color:var(--hp-yellow); }

/* ── WHY STRIP ── */
.hp-why-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(255,255,255,.06); border-radius: var(--hp-radius);
    overflow: hidden;
}
.hp-why-item { padding:44px 32px; text-align:center; background:var(--hp-card); border-right:1px solid rgba(255,255,255,.06); transition:background .3s; }
.hp-why-item:last-child { border-right:none; }
.hp-why-item:hover { background:rgba(255,215,0,.06); }
.hp-why-icon { font-size:44px; margin-bottom:18px; display:block; }
.hp-why-title { font-family:'Titan One',cursive; font-size:17px; color:var(--hp-yellow); margin-bottom:10px; }
.hp-why-desc { font-size:13px; color:rgba(255,255,255,.5); line-height:1.65; font-weight:600; }

/* ── TESTIMONIALS ── */
.hp-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.hp-tcard {
    background: var(--hp-card); border-radius: var(--hp-radius);
    padding: 28px; border: 1.5px solid rgba(255,255,255,.07);
    border-left: 4px solid var(--hp-yellow); transition: transform .3s;
}
.hp-tcard:hover { transform:translateY(-4px); }
.hp-tstars { font-size:17px; margin-bottom:12px; }
.hp-ttext { font-size:15px; color:rgba(255,255,255,.7); line-height:1.7; font-weight:600; margin-bottom:18px; }
.hp-tauthor { font-weight:900; font-size:14px; }
.hp-tloc { font-size:12px; color:rgba(255,255,255,.35); margin-top:3px; }

/* ══════════════════════════════
   WOOCOMMERCE OVERRIDES
══════════════════════════════ */

/* Product grid */
.woocommerce .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Product card */
.woocommerce ul.products li.product {
    background: var(--hp-card);
    border-radius: var(--hp-radius);
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.07);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    border-color: rgba(255,215,0,.3);
}

/* Product image */
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    width: 100%; height: 230px; object-fit: cover;
    transition: transform .4s ease;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
    transform: scale(1.05);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Titan One', cursive !important;
    font-size: 20px !important;
    color: var(--hp-white) !important;
    padding: 16px 20px 8px !important;
    margin: 0 !important;
}

/* Price */
.woocommerce ul.products li.product .price {
    color: var(--hp-yellow) !important;
    font-family: 'Titan One', cursive !important;
    font-size: 22px !important;
    padding: 0 20px 8px !important;
    display: block;
}
.woocommerce ul.products li.product .price del {
    color: rgba(255,255,255,.3) !important;
    font-size: 16px !important;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
}

/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, var(--hp-yellow), var(--hp-orange)) !important;
    color: var(--hp-black) !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    padding: 12px 24px !important;
    margin: 4px 20px 20px !important;
    width: calc(100% - 40px) !important;
    display: block !important;
    text-align: center !important;
    box-shadow: 0 4px 18px rgba(255,215,0,.2) !important;
    transition: transform .2s, box-shadow .2s !important;
    cursor: pointer !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 28px rgba(255,215,0,.4) !important;
    background: linear-gradient(135deg, var(--hp-orange), var(--hp-yellow)) !important;
    color: var(--hp-black) !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background: var(--hp-red) !important;
    border-radius: 50px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    top: 14px !important; left: 14px !important;
    min-height: auto !important; min-width: auto !important;
    padding: 4px 12px !important; line-height: 1.6 !important;
}

/* Single product */
.woocommerce div.product div.images img { border-radius: var(--hp-radius); }
.woocommerce div.product .product_title { font-family:'Titan One',cursive; color:var(--hp-white); font-size:36px; }
.woocommerce div.product p.price { color:var(--hp-yellow) !important; font-size:28px; font-family:'Titan One',cursive; }
.woocommerce div.product .woocommerce-product-details__short-description { color:rgba(255,255,255,.65); font-size:15px; line-height:1.7; font-weight:600; }
.woocommerce div.product form.cart { margin-top:20px; }
.woocommerce div.product form.cart .single_add_to_cart_button {
    background: linear-gradient(135deg,var(--hp-yellow),var(--hp-orange)) !important;
    color: var(--hp-black) !important; border:none !important; border-radius:50px !important;
    font-family:'Nunito',sans-serif !important; font-weight:900 !important; font-size:16px !important;
    padding:16px 36px !important; box-shadow:0 0 24px rgba(255,215,0,.3) !important;
    transition:transform .2s,box-shadow .2s !important;
}

/* Cart & Checkout */
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th { border-color: rgba(255,255,255,.08) !important; color:var(--hp-white) !important; }
.woocommerce-cart table.cart { background:var(--hp-card); border-radius:var(--hp-radius); }
.woocommerce .cart-collaterals .cart_totals { background:var(--hp-card); border-radius:var(--hp-radius); padding:28px; }
.woocommerce .cart_totals h2 { font-family:'Titan One',cursive; color:var(--hp-yellow); }
.woocommerce .cart_totals table { color:var(--hp-white); }
.woocommerce .cart_totals table td, .woocommerce .cart_totals table th { border-color:rgba(255,255,255,.08) !important; }
.woocommerce-checkout #order_review { background:var(--hp-card); border-radius:var(--hp-radius); padding:28px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: rgba(255,255,255,.05) !important;
    border: 1.5px solid rgba(255,255,255,.12) !important;
    border-radius: 10px !important; color:var(--hp-white) !important;
    font-family:'Nunito',sans-serif !important; font-weight:600 !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color:var(--hp-yellow) !important; outline:none !important; }
.woocommerce form .form-row label { color:rgba(255,215,0,.8) !important; font-weight:800 !important; font-size:12px !important; text-transform:uppercase !important; letter-spacing:1px !important; }

/* Category filter */
.hp-cat-filter { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:48px; }
.hp-filter-btn {
    border: 2px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 10px 22px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800;
    cursor: pointer; color: rgba(255,255,255,.7);
    transition: all .22s;
}
.hp-filter-btn:hover, .hp-filter-btn.active {
    background: var(--hp-yellow); color: var(--hp-black);
    border-color: var(--hp-yellow);
}

/* Woo notices */
.woocommerce-message, .woocommerce-info {
    background: var(--hp-card) !important; color:var(--hp-white) !important;
    border-top-color: var(--hp-yellow) !important; border-radius:var(--hp-radius) !important;
}
.woocommerce-error { background:rgba(232,0,58,.15) !important; border-top-color:var(--hp-red) !important; border-radius:var(--hp-radius) !important; }

/* Tabs on single product */
.woocommerce div.product .woocommerce-tabs ul.tabs li { background:var(--hp-card) !important; border-color:rgba(255,255,255,.1) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color:rgba(255,255,255,.7) !important; font-weight:800 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color:var(--hp-yellow) !important; }
.woocommerce div.product .woocommerce-tabs .panel { background:var(--hp-card) !important; border-color:rgba(255,255,255,.1) !important; color:rgba(255,255,255,.7) !important; border-radius:0 var(--hp-radius) var(--hp-radius) var(--hp-radius) !important; padding:28px !important; }

/* ── BLOG ── */
.hp-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.hp-bcard { background:var(--hp-card); border-radius:var(--hp-radius); overflow:hidden; border:1.5px solid rgba(255,255,255,.07); transition:transform .3s, border-color .3s; }
.hp-bcard:hover { transform:translateY(-5px); border-color:rgba(255,215,0,.2); }
.hp-bthumb { height:200px; overflow:hidden; position:relative; }
.hp-bthumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.hp-bcard:hover .hp-bthumb img { transform:scale(1.06); }
.hp-bthumb-placeholder { height:200px; display:flex; align-items:center; justify-content:center; font-size:70px; background:linear-gradient(135deg,#1a0a20,#0d0d0d); }
.hp-bbody { padding:22px; }
.hp-bcat { font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:2px; color:var(--hp-yellow); margin-bottom:10px; }
.hp-btitle { font-family:'Titan One',cursive; font-size:18px; margin-bottom:10px; line-height:1.2; color:var(--hp-white); }
.hp-bexcerpt { font-size:13px; color:rgba(255,255,255,.45); line-height:1.6; font-weight:600; }
.hp-bdate { font-size:11px; color:rgba(255,255,255,.25); margin-top:14px; font-weight:700; }
.hp-bread-more { display:inline-block; margin-top:14px; font-size:13px; font-weight:900; color:var(--hp-yellow); }
.hp-bread-more:hover { color:var(--hp-orange); }

/* ── PACKS ── */
.hp-packs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.hp-pack { background:var(--hp-card); border-radius:var(--hp-radius); padding:36px 30px; text-align:center; border:2px solid rgba(255,255,255,.07); transition:transform .3s, box-shadow .3s; position:relative; overflow:hidden; }
.hp-pack:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(0,0,0,.4); }
.hp-pack.featured { border-color:var(--hp-yellow); }
.hp-pack.featured::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at top,rgba(255,215,0,.06),transparent 60%); pointer-events:none; }
.hp-pack-ribbon { position:absolute; top:20px; right:-10px; background:var(--hp-red); color:white; font-size:10px; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; padding:5px 20px 5px 16px; border-radius:4px 0 0 4px; }
.hp-pack-ribbon::after { content:''; position:absolute; right:0; bottom:-9px; border-left:9px solid #8b0022; border-bottom:9px solid transparent; }
.hp-pack-icon { font-size:60px; margin-bottom:16px; display:block; }
.hp-pack-name { font-family:'Titan One',cursive; font-size:24px; margin-bottom:8px; }
.hp-pack-desc { font-size:14px; color:rgba(255,255,255,.5); font-weight:600; line-height:1.6; margin-bottom:20px; }
.hp-pack-list { list-style:none; text-align:left; margin-bottom:24px; }
.hp-pack-list li { font-size:13px; font-weight:700; color:rgba(255,255,255,.75); padding:7px 0; border-bottom:1px solid rgba(255,255,255,.06); display:flex; align-items:center; gap:8px; }
.hp-pack-list li::before { content:'✅'; font-size:12px; }
.hp-pack-price { font-family:'Titan One',cursive; font-size:38px; color:var(--hp-yellow); margin-bottom:22px; }
.hp-pack-old { font-size:18px; color:rgba(255,255,255,.3); text-decoration:line-through; margin-right:8px; font-family:'Nunito',sans-serif; font-weight:700; }

/* ── CONTACT ── */
.hp-contact-wrap { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.hp-cinfo h3 { font-family:'Titan One',cursive; font-size:32px; color:var(--hp-yellow); margin-bottom:16px; }
.hp-cinfo p { font-size:15px; color:rgba(255,255,255,.6); line-height:1.8; font-weight:600; margin-bottom:28px; }
.hp-citem { display:flex; align-items:center; gap:16px; padding:18px; border-radius:12px; background:var(--hp-card); border:1.5px solid rgba(255,255,255,.07); margin-bottom:14px; transition:border-color .2s; }
.hp-citem:hover { border-color:rgba(255,215,0,.25); }
.hp-cicon { font-size:28px; flex-shrink:0; }
.hp-ctext strong { display:block; font-size:14px; font-weight:900; }
.hp-ctext span { font-size:13px; color:rgba(255,255,255,.45); font-weight:600; }
.hp-cform { background:var(--hp-card); border-radius:var(--hp-radius); padding:40px; border:1.5px solid rgba(255,255,255,.07); }
.hp-cform h3 { font-family:'Titan One',cursive; font-size:26px; color:var(--hp-yellow); margin-bottom:24px; }
.hp-fg { margin-bottom:18px; }
.hp-fg label { display:block; font-size:12px; font-weight:900; color:rgba(255,215,0,.8); text-transform:uppercase; letter-spacing:1px; margin-bottom:7px; }
.hp-fg input, .hp-fg textarea, .hp-fg select { width:100%; padding:13px 16px; background:rgba(255,255,255,.05); border:1.5px solid rgba(255,255,255,.1); border-radius:10px; color:var(--hp-white); font-family:'Nunito',sans-serif; font-size:14px; font-weight:600; outline:none; transition:border-color .2s; }
.hp-fg input::placeholder, .hp-fg textarea::placeholder { color:rgba(255,255,255,.25); }
.hp-fg input:focus, .hp-fg textarea:focus, .hp-fg select:focus { border-color:var(--hp-yellow); }
.hp-fg textarea { height:120px; resize:vertical; }
.hp-fg select option { background:var(--hp-darkbg); }
.hp-form-submit { width:100%; padding:15px; border-radius:50px; background:linear-gradient(135deg,var(--hp-yellow),var(--hp-orange)); color:var(--hp-black); border:none; cursor:pointer; font-family:'Nunito',sans-serif; font-weight:900; font-size:16px; box-shadow:0 0 24px rgba(255,215,0,.3); transition:transform .2s, box-shadow .2s; margin-top:6px; }
.hp-form-submit:hover { transform:translateY(-2px); box-shadow:0 0 36px rgba(255,215,0,.5); }

/* ── FOOTER ── */
.hp-footer { background:#0a0a10; border-top:1px solid rgba(255,215,0,.1); padding:64px 0 32px; }
.hp-footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.hp-fbrand p { font-size:14px; color:rgba(255,255,255,.4); line-height:1.7; font-weight:600; max-width:280px; margin-top:14px; }
.hp-fcol h4 { font-family:'Titan One',cursive; font-size:15px; color:var(--hp-yellow); margin-bottom:16px; }
.hp-fcol ul { list-style:none; }
.hp-fcol li { margin-bottom:11px; }
.hp-fcol a { color:rgba(255,255,255,.45); font-size:14px; font-weight:700; transition:color .2s; }
.hp-fcol a:hover { color:var(--hp-yellow); }
.hp-fbot { border-top:1px solid rgba(255,255,255,.07); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:rgba(255,255,255,.25); font-weight:700; }
.hp-socials { display:flex; gap:10px; }
.hp-sbtn { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); cursor:pointer; font-size:17px; display:flex; align-items:center; justify-content:center; transition:all .2s; color:white; }
.hp-sbtn:hover { background:var(--hp-yellow); border-color:var(--hp-yellow); color:var(--hp-black); }

/* ── PAGE TEMPLATES ── */
.hp-page-hero { background:var(--hp-darkbg); padding:60px 0 40px; text-align:center; border-bottom:1px solid rgba(255,215,0,.1); }
.hp-page-hero h1 { font-size:clamp(32px,5vw,60px); }
.hp-page-hero p { color:rgba(255,255,255,.5); font-size:16px; margin-top:12px; font-weight:600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.hp-anim { animation:fadeUp .6s ease both; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
    .hp-nav { padding:0 20px; }
    .hp-nav-menu { display:none; }
    .hp-hero { grid-template-columns:1fr; padding:60px 28px; }
    .hp-hero-visual { display:none; }
    .container { padding:0 20px; }
    .hp-section { padding:60px 0; }
    .hp-why-grid { grid-template-columns:1fr 1fr; }
    .hp-cat-grid, .hp-packs-grid, .hp-testi-grid, .hp-blog-grid { grid-template-columns:1fr; }
    .hp-footer-grid { grid-template-columns:1fr 1fr; }
    .hp-contact-wrap { grid-template-columns:1fr; }
    .woocommerce .products { grid-template-columns:repeat(2,1fr) !important; }
}
@media(max-width:600px){
    .woocommerce .products { grid-template-columns:1fr !important; }
    .hp-hero-stats { gap:20px; }
    .hp-hero-title { font-size:42px; }
}
