/* ============================================================
   Szerszámolcsón.hu – pontok.css
   VIP & Pontgyűjtés oldal specifikus stílusok
   Betöltés: base.css + header.css + footer.css után
   ============================================================ */

/* ============================================================
   KÖZÖS SECTION FEJLÉCEK
   ============================================================ */
.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: -.3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-3);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   HERO
   ============================================================ */
.pontok-hero {
    background: #1e1c18;
    position: relative;
    overflow: hidden;
    padding: 70px 0 64px;
}

.pontok-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,125,30,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,125,30,.07) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Arany glów jobb felső sarokba */
.pontok-hero::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(184,125,30,.16) 0%, transparent 68%);
    top: -160px;
    right: -120px;
    pointer-events: none;
}

/* ── Lebegő értékajánlat badge-ek ──────────────────────────── */
.pontok-float-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pontok-float-badge {
    position: absolute;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(184,125,30,.25);
    border-radius: var(--r-md);
    padding: 12px 18px;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    animation: pontokFloat 6s ease-in-out infinite;
}

.pontok-float-num {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.5px;
}

.pontok-float-lbl {
    font-size: 10px;
    font-weight: 600;
    color: rgba(244,242,238,.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Randomizált pozíciók – szándékosan aszimmetrikus */
.pontok-float-badge--1 {
    left: 3%;
    top: 12%;
    animation-delay: 0s;
    animation-duration: 4.2s;
}
.pontok-float-badge--2 {
    left: 6%;
    bottom: 16%;
    animation-delay: -1.7s;
    animation-duration: 5.1s;
}
.pontok-float-badge--3 {
    right: 2%;
    top: 28%;
    animation-delay: -0.8s;
    animation-duration: 3.8s;
}
.pontok-float-badge--4 {
    right: 7%;
    bottom: 12%;
    animation-delay: -2.9s;
    animation-duration: 4.7s;
}

/* Nagyobb amplitúdó, gyorsabb tempó */
@keyframes pontokFloat {
    0%   { transform: translateY(0px)   rotate(-2deg); opacity: .65; }
    25%  { transform: translateY(-18px) rotate(2deg);  opacity: 1;   }
    50%  { transform: translateY(-8px)  rotate(-1deg); opacity: .8;  }
    75%  { transform: translateY(-22px) rotate(1.5deg);opacity: .95; }
    100% { transform: translateY(0px)   rotate(-2deg); opacity: .65; }
}

/* ── Dekoratív emoji háttérelemek ───────────────────────────── */
.pontok-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pontok-hero-deco-item {
    position: absolute;
    font-size: 28px;
    opacity: .5;
    animation: pontokDecoFloat 6s ease-in-out infinite;
    user-select: none;
}

/* Pozíciók – szándékosan random érzet */
.pontok-hero-deco-item:nth-child(1)  { left: 11%;  top: 9%;   animation-delay: -0.5s; animation-duration: 5.3s; font-size: 22px; }
.pontok-hero-deco-item:nth-child(2)  { left: 18%;  bottom: 8%; animation-delay: -2.1s; animation-duration: 4.6s; font-size: 32px; }
.pontok-hero-deco-item:nth-child(3)  { left: 28%;  top: 75%;  animation-delay: -1.3s; animation-duration: 6.1s; font-size: 20px; }
.pontok-hero-deco-item:nth-child(4)  { left: 38%;  top: 8%;   animation-delay: -3.4s; animation-duration: 4.9s; font-size: 26px; }
.pontok-hero-deco-item:nth-child(5)  { right: 11%; top: 11%;  animation-delay: -0.9s; animation-duration: 5.7s; font-size: 24px; }
.pontok-hero-deco-item:nth-child(6)  { right: 22%; bottom: 9%; animation-delay: -2.6s; animation-duration: 3.9s; font-size: 30px; }
.pontok-hero-deco-item:nth-child(7)  { right: 32%; top: 70%;  animation-delay: -1.8s; animation-duration: 5.4s; font-size: 18px; }
.pontok-hero-deco-item:nth-child(8)  { left: 47%;  bottom: 6%; animation-delay: -3.9s; animation-duration: 6.3s; font-size: 22px; }

@keyframes pontokDecoFloat {
    0%   { transform: translateY(0px)   scale(1);    }
    40%  { transform: translateY(-14px) scale(1.08); }
    70%  { transform: translateY(-6px)  scale(.95);  }
    100% { transform: translateY(0px)   scale(1);    }
}

/* Mobilon dekorációk is eltűnnek */
@media (max-width: 900px) {
    .pontok-float-badges { display: none; }
    .pontok-hero-deco    { display: none; }
}

.pontok-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
}

.pontok-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(184,125,30,.15);
    border: 1px solid rgba(184,125,30,.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.pontok-hero-badge-icon { font-size: 13px; }

.pontok-hero-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(32px, 5vw, 58px);
    line-height: .95;
    letter-spacing: -.5px;
    text-transform: uppercase;
    color: #f4f2ee;
    margin-bottom: 16px;
}

.pontok-hero-title em {
    font-style: normal;
    color: var(--gold);
}

.pontok-hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(244,242,238,.58);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Bejelentkezett user összefoglaló */
.pontok-hero-summary {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 18px 28px;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.pontok-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.pontok-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

.pontok-hero-stat-val {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 22px;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.pontok-vip-active {
    color: #f4c842 !important;
}

.pontok-hero-stat-lbl {
    font-size: 11px;
    color: rgba(244,242,238,.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pontok-hero-cta {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pontok-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pontok-hero-cta-sec {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r-md);
    padding: 12px 22px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(244,242,238,.8);
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
}

.pontok-hero-cta-sec:hover {
    background: rgba(255,255,255,.13);
    color: #f4f2ee;
}

/* ============================================================
   HOGYAN MŰKÖDIK – LÉPÉSEK
   ============================================================ */
.pontok-steps {
    padding: 72px 0;
    background: var(--bg);
}

.pontok-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

/* Nyilak a lépések között */
.pontok-steps-grid::before,
.pontok-steps-grid::after {
    content: '→';
    position: absolute;
    top: 52px;
    font-size: 22px;
    color: var(--gold);
    opacity: .5;
    pointer-events: none;
    z-index: 1;
}

.pontok-steps-grid::before { left: calc(33.33% - 14px); }
.pontok-steps-grid::after  { left: calc(66.66% - 14px); }

.pontok-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: var(--t);
}

.pontok-step:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(184,125,30,.1);
    transform: translateY(-3px);
}

.pontok-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pontok-step-icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
}

.pontok-step-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text);
    margin-bottom: 10px;
}

.pontok-step-desc {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.65;
}

/* ============================================================
   RÉSZLETES KÁRTYÁK
   ============================================================ */
.pontok-details {
    padding: 72px 0;
    background: var(--surface-2, #f7f6f3);
}

[data-theme="dark"] .pontok-details {
    background: var(--surface-2);
}

.pontok-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pontok-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--t);
}

.pontok-card:hover {
    box-shadow: var(--sh-lg);
}

.pontok-card--vip {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--surface) 0%, rgba(184,125,30,.04) 100%);
}

.pontok-card-vip-badge {
    position: absolute;
    top: -11px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
}

.pontok-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pontok-card-icon { font-size: 26px; }

.pontok-card-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text);
}

.pontok-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.pontok-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
}

.pontok-card-list-icon {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pontok-card-highlight {
    background: rgba(184,125,30,.08);
    border: 1px solid rgba(184,125,30,.2);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.pontok-card-highlight--vip {
    background: rgba(184,125,30,.13);
    border-color: rgba(184,125,30,.35);
}

.pontok-card-highlight-num {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}

.pontok-card-highlight-per {
    font-size: 13px;
    color: var(--text-3);
}

/* ============================================================
   AUTOMATIKUS KUPONOK
   ============================================================ */
.pontok-coupons {
    padding: 72px 0;
    background: var(--bg);
}

.pontok-coupon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.pontok-coupon-tier {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: var(--t);
}

.pontok-coupon-tier:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.pontok-coupon-tier--mid {
    border-color: rgba(184,125,30,.35);
}

.pontok-coupon-tier--top {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--surface) 0%, rgba(184,125,30,.05) 100%);
    box-shadow: 0 4px 20px rgba(184,125,30,.12);
}

.pontok-coupon-tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.pontok-coupon-tier-range {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pontok-coupon-tier-pct {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.pontok-coupon-tier-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
}

.pontok-coupon-tier-desc span {
    font-size: 11px;
    color: var(--text-4);
    display: block;
    margin-top: 6px;
}

.pontok-coupons-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-4);
    margin-top: 4px;
}

/* ============================================================
   PONT KALKULÁTOR
   ============================================================ */
.pontok-calc-section {
    padding: 72px 0;
    background: var(--surface-2, #f7f6f3);
}

[data-theme="dark"] .pontok-calc-section {
    background: var(--surface-2);
}

.pontok-calc {
    max-width: 540px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 36px 32px;
    box-shadow: var(--sh-md);
}

.pontok-calc-label {
    display: block;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-2);
    margin-bottom: 10px;
}

.pontok-calc-input-row {
    display: flex;
    gap: 10px;
}

.pontok-calc-input {
    flex: 1;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 0 16px;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}

.pontok-calc-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb),.12);
}

.pontok-calc-btn {
    height: 48px;
    padding: 0 22px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    flex-shrink: 0;
}

.pontok-calc-btn:hover { background: var(--gold-h); }

.pontok-calc-results {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pontok-calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pontok-calc-result-lbl {
    font-size: 14px;
    color: var(--text-3);
}

.pontok-calc-result-val {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 16px;
    color: var(--gold);
}

/* ============================================================
   CTA SZEKCIÓ
   ============================================================ */
.pontok-cta-section {
    padding: 72px 0;
    background: var(--bg);
}

.pontok-cta-box {
    background: linear-gradient(135deg, #1e1c18 0%, #2a2518 100%);
    border: 1px solid rgba(184,125,30,.25);
    border-radius: var(--r-xl);
    padding: 56px 40px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pontok-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(184,125,30,.12) 0%, transparent 65%);
    pointer-events: none;
}

.pontok-cta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pontok-cta-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(20px, 3vw, 30px);
    text-transform: uppercase;
    letter-spacing: -.2px;
    color: #f4f2ee;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pontok-cta-sub {
    font-size: 15px;
    color: rgba(244,242,238,.55);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.pontok-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pontok-cta-btn {
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.pontok-cta-btn-sec {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-md);
    padding: 12px 22px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(244,242,238,.75);
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.pontok-cta-btn-sec:hover {
    background: rgba(255,255,255,.12);
    color: #f4f2ee;
}

/* ============================================================
   RESZPONZÍV
   ============================================================ */
@media (max-width: 900px) {
    .pontok-details-grid,
    .pontok-coupon-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pontok-steps-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pontok-steps-grid::before,
    .pontok-steps-grid::after { display: none; }
}

@media (max-width: 600px) {
    .pontok-hero { padding: 48px 0 44px; }

    .pontok-hero-summary {
        flex-direction: column;
        gap: 14px;
        padding: 18px 20px;
    }

    .pontok-hero-stat-sep {
        width: 80px;
        height: 1px;
    }

    .pontok-hero-stat { padding: 0; }

    .pontok-calc { padding: 24px 20px 22px; }

    .pontok-calc-input-row { flex-direction: column; }

    .pontok-calc-btn { width: 100%; }

    .pontok-cta-box { padding: 40px 20px; }

    .pontok-steps,
    .pontok-details,
    .pontok-coupons,
    .pontok-calc-section,
    .pontok-cta-section { padding: 48px 0; }
}
