/* 
    3D NYOMTATÁS MODERN TÉMA - 2026 
    Készítette: Gemini
*/

/* Ha fent van a WordPress admin sáv, lejjebb toljuk a fejlécet */
body.admin-bar .site-header {
    top: 32px;
}

/* Mobilon az admin sáv magasabb lesz (46px), így ott többel kell eltolni */
@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

section{
    padding-top:25px;
    padding-bottom:25px;
}

:root {
    /* Alapszínek */
    --bg: #05070a;
    --card: #0d0d0d;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    
    /* 3D Tech színek */
    --accent: #00ff88; /* Neon zöld */
    --accent-glow: rgba(0, 255, 136, 0.3);
    --secondary: #60efff; /* Ciánkék */
    
    /* Üveg és keretek */
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --header-h: 80px;
}

/* Alapbeállítások */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: var(--header-h); /* Hogy a fix menü ne takarjon ki semmit */
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 !important; 
}

/* ==========================================================================
   FEJLÉC ÉS NAVIGÁCIÓ
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 9999;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text) !important;
    letter-spacing: -1px;
}

.logo span { color: var(--accent); }

.main-nav ul {
    display: flex;
    align-items: center; /* Ez húzza be középre függőlegesen a gombot és a szövegeket! */
    justify-content: flex-end; /* Vagy center, amivel eddig gépelted */
    gap: 20px; /* Távolság a menüpontok között, így nem kell marginokkal bűvészkedni */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    opacity: 0.7;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--accent);
}

/* --- Alaphelyzet: mobil elemek elrejtése asztalon --- */
.mobile-only {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- MOBIL NÉZET (992px alatt, a sok gomb miatt érdemes feljebb hozni) --- */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important; /* Eltűnik a kinti kosár és ajánlatkérő */
    }



    .mobile-only {
        display: flex !important; /* Megjelenik a menün belüli kosár és ajánlatkérő */
    }

    .menu-toggle {
        display: flex; /* Megjelenik a hamburger */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        transition: 0.4s ease;
        padding: 80px 30px 30px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Elválasztja a menüt és a gombokat */
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .main-nav a {
        font-size: 18px;
    }

    /* Mobil gombok elrendezése alul */
    .mobile-menu-extras {
        flex-direction: column;
        gap: 15px;
        margin-top: auto; /* Teljesen alulra tolja */
        padding-top: 30px;
        border-top: 1px solid var(--border);
    }

    .mobile-menu-extras .btn-quote {
        text-align: center;
        width: 100%;
    }

    /* Hamburger X animáció */
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* ==========================================================================
   HERO SZEKCIÓ
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-h));
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(96, 239, 255, 0.08) 0%, transparent 40%);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), 
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black, transparent 85%);
    z-index: 1;
}

.hero-inner {
    max-width: 850px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out forwards;
}

.badge {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 40px;
}

.btn-main {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-main:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

/* ==========================================================================
   3DPRINT LITE (TOOL) MODERNIZÁLÁSA
   ========================================================================== */
.p3dlite-container {
    display: grid; /* JAVÍTVA */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 30px;
    margin: 40px 0;
}

/* Ár kijelző - Fixálva */
p.price {
    background: var(--glass) !important;
    border: 1px solid var(--border) !important;
    border-left: 4px solid var(--accent) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
    width: 100% !important;
    display: block !important;
}

p.price b {
    color: var(--text-dim) !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
}

p.price .amount {
    color: var(--bg) !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    display: block;
    margin-top: 5px;
}

/* Gombok az eszközben */
#p3dlite-pickfiles, .progress-button .content {
    background: var(--accent) !important;
    color: #000 !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
}

/* Statisztikák */
.p3dlite-stats td {
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    color: var(--text-dim);
}

/* Lépések (Order Flow) */
.compact-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.c-step { display: flex; align-items: center; gap: 12px; }
.c-num { 
    background: var(--accent); 
    color: #000; 
    width: 35px; height: 35px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 8px; font-weight: 800; 
}

/* Animációk Definíciója */
@keyframes shine { to { background-position: 200% center; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobilos finomhangolás */
@media (max-width: 768px) {
    .site-header { height: 70px; }
    .main-nav { display: none; } /* Ide jöhetne egy hamburgermenü */
    .compact-steps { flex-direction: column; gap: 20px; align-items: flex-start; }
    h1 { font-size: 3rem; }
    .hero-section { text-align: center; }
    .hero-section p { margin-left: auto; margin-right: auto; }
    .site-header .container{
    }
    .ajanlatkeres_btn{
        display:none !important;
    }
    .custom-cart-menu{
        display:none !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --bg: #05070a;
    --card: #0d0d0d;
    --text: #ffffff;
    --text-dim: rgb(0, 0, 0);
    --accent: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.3);
    --secondary: #60efff;
    --border: rgba(255, 255, 255, 0.1);
    --header-h: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-top: var(--header-h);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- FEJLÉC --- */
.site-header {
    position: fixed; top: 0; width: 100%; height: var(--header-h);
    z-index: 9999; background: rgba(5, 7, 10, 0.9);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
}

.site-header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo a { font-size: 24px; font-weight: 800; text-decoration: none; color: var(--text) !important; }
.logo span { color: var(--accent); }

/* --- HERO --- */

.hero-inner { position: relative; z-index: 10; animation: fadeInUp 1s ease; }
.gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- P3DLITE KALKULÁTOR FIX --- */

/* A fő keret, ami két részre osztja: balra a nézegető, jobbra a beállítások *
.p3dlite-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    background: var(--card);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    margin: 40px auto;
}
/
/* Bal oldal: 3D nézegető */
.p3dlite-canvas-wrapper {
    flex: 1 1 450px !important;
    min-height: 400px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

/* Jobb oldal: Filamentek és opciók */
.p3dlite-info-wrapper {
    flex: 1 1 350px !important;
}

/* Filament lista (Anyagválasztó) */
.p3dlite-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
}

.p3dlite-list li {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--border) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.p3dlite-list li:hover, .p3dlite-list li.selected {
    border-color: var(--accent) !important;
    background: rgba(0, 255, 136, 0.1) !important;
    color: var(--accent) !important;
}

/* Statisztikák (Súly, méret) */
.p3dlite-stats {
    width: 100%;
    margin-bottom: 20px;
}

.p3dlite-stats td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dim);
}

.p3dlite-stats td:last-child {
    text-align: right;
    color: var(--text);
    font-weight: 600;
}

/* Ár konténer */
p.price {
    background: var(--accent) !important;
    color: #000 !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin: 25px 0 !important;
    text-align: center !important;
    font-weight: 800;
}

p.price .amount {
    font-size: 2rem !important;
    display: block;
}

/* Feltöltő gomb */
#p3dlite-pickfiles {
    width: 100% !important;
    padding: 15px !important;
    background: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

/* Inputok (Email, mennyiség) */
.price-request-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
}

/* Mobilos nézet */
@media (max-width: 768px) {
    .p3dlite-container { padding: 15px; }
    .p3dlite-canvas-wrapper { min-height: 300px; }
}

/* ==========================================================================
   SZOLGÁLTATÁSOK ÉS ANYAGOK
   ========================================================================== */

.services-section, .materials-section {
    padding: 100px 0;
    background: var(--bg);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Kártya Grid Elrendezés */
.services-grid, .materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-card, .m-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.s-card:hover, .m-card:hover {
    border-color: var(--accent);

    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

/* Ikonok és Badge-ek a kártyán belül */
.s-icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: block;
}

.s-card h3, .m-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-card h3 span {
    font-size: 11px;
    background: var(--accent);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 900;
}

.s-card p, .m-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- TÁBLÁZAT DESIGN --- */
.table-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 60px;
    overflow-x: auto;
    backdrop-filter: blur(10px);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.modern-table th {
    text-align: left;
    padding: 15px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border);
}

.modern-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table strong {
    color: var(--secondary);
}

/* Csillagok színezése */
.modern-table td:nth-child(2) {
    color: var(--accent);
    letter-spacing: 3px;
}

/* Kiemelt kártya effekt */
.m-card.accent {
    border: 1px solid var(--accent);
    background: linear-gradient(145deg, var(--card), rgba(0, 255, 136, 0.05));
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .s-card, .m-card { padding: 30px; }
}

div.p3dlite-details{
    width:100% !important;
}

div.p3dlite-images{
    width:100% !important;
}

fieldset.p3dlite-fieldset{
    border: 1px solid #00ff88 !important;
}

fieldset.p3dlite-fieldset legend{
    border: 1px solid #00ff88 !important;
}

#p3dlite-model-message{
    display: none !important;
}

#p3dlite-viewer{
    padding-bottom:25px !important;
}

/* A meglévő button.alt osztályod célzása */
button.button.alt[type="submit"] {
    /* Alap stílusok resetelése és új alapok */
    background: linear-gradient(135deg, #1d1d1d 0%, #333333 100%); /* Sötét alap */
    color: #00ff88; /* Neon zöld szöveg */
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ff88; /* Neon zöld keret */
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    display: inline-block;
    margin-bottom:25px;
}

/* Hover állapot - amikor ráviszed az egeret */
button.button.alt[type="submit"]:hover {
    background: #00ff88; /* Megfordul a szín: teli zöld lesz */
    color: #121212; /* Fekete szöveg */
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* Kattintás effekt */
button.button.alt[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

/* Egy kis csillogás effekt */
button.button.alt[type="submit"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s;
}

button.button.alt[type="submit"]:hover::after {
    left: 120%;
}

/* WPForms Konténer finomítása */
.wpforms-container {
    background: #ffffff;
    padding: 0px !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    margin-top: 20px;
}

/* Mezők címkéi (Név, Email, stb.) */
.wpforms-field-label {
    font-weight: 700 !important;
    color: #333 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
}

/* Beviteli mezők (Input & Textarea) */
.wpforms-field input, 
.wpforms-field textarea {
    background-color: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
}

/* Mező fókuszban (amikor kattintasz bele) */
.wpforms-field input:focus, 
.wpforms-field textarea:focus {
    background-color: #fff !important;
    border-color: #00ff88 !important; /* Neon zöld keret */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15) !important;
    outline: none !important;
}

/* A BEKÜLDŐ GOMB - A "Fasszállító" rész */
/* WPForms gomb - Flexbox alapú, tökéletesen középre igazított szöveg */
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 56px !important; /* Fix magasság, hogy ne ugráljon */
    
    background: #222222 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 0 24px !important; /* Oldalsó margó, a függőlegest a flex intézi */
}

div.p3dlite-info{
    margin-bottom: 25px !important;
}

/* Hover állapot - Tisztább átmenet */
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover {
    background: #00ff88 !important; /* Itt visszajön a zöld, ha szeretnéd */
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3) !important;
}

/* Kattintáskor */
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:active {
    transform: translateY(0) !important;
}

/* Hibajelzések finomítása */
.wpforms-error {
    color: #ff4d4d !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-top: 5px !important;
}

.wpforms-has-error input {
    border-color: #ff4d4d !important;
}

#p3dlite-quote-loading{
    display: none !important
}

#add-cart-wrapper{
        display: none !important

}

.wpforms-field-label{
    color: #00ff88 !important; /* Neon zöld felirat */

}

/* Portfólió specifikus kiegészítések */
#portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Kártya belső elrendezése */
.s-card {
    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
}

.p-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.p-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.s-card:hover .p-image-container img {
    transform: scale(1.1);
}

.p-details {
    padding: 25px;
}

.p-details h3 {
    color: var(--accent);
    margin-bottom: 15px !important;
    font-size: 1.3rem;
}

.p-meta p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text) !important; /* Itt a CSS-edben a dim fekete, érdemes lehet fehérre állítani */
}

.p-meta span {
    color: var(--secondary);
    font-weight: 600;
    margin-right: 5px;
}

.p-meta a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
}

/* Lapozó gombok stílusa a te színeiddel */
#pagination-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.page-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.page-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.m-features {
    margin: 15px 0;
    text-align: left;
}

.m-features p {
    font-size: 0.9rem;
    margin-bottom: 10px !important;
    line-height: 1.4;
    color: var(--text) !important;
}

.m-features strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 2px;
}

.m-best-for {
    border-top: 1px solid var(--border);
    padding-top: 15px;
    font-size: 0.95rem;
    color: var(--accent) !important;
}

.why-us-section .s-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.why-us-section h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-us-section p {
    color: var(--text-dim);
    line-height: 1.6;
}

.floating-cart-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.cart-contents {
    background: #000; /* Vagy a te egyedi akciós színed */
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.2s;
}

.cart-contents:hover {
    transform: scale(1.1);
}

.cart-icon {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757; /* Piros számláló bogyó */
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

/* 1. CSAK A LEBEGŐ KOSÁR STÍLUSA (ha még megvan a footerben) */
.floating-cart-wrapper .cart-contents {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.2s;
}
.floating-cart-wrapper .cart-contents:hover {
    transform: scale(1.1);
}

/* 2. CSAK A MENÜBEN LÉVŐ KOSÁR STÍLUSA */
/* ==========================================
   1. A MENÜBEN LÉVŐ KOSÁR TISZTA STÍLUSA
   ========================================== */
.custom-cart-menu .cart-contents.menu-cart {
    /* Teljesen kikapcsoljuk a lebegő kosár fix kerek méreteit */
    width: auto !important;
    height: auto !important;
    border-radius: 8px !important; /* Modern, enyhén lekerekített sarkú téglalap */
    
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap; /* Megakadályozza, hogy a szöveg több sorba törjön */
    position: static !important; /* Nem engedjük lebegni */
    box-shadow: none !important;
}

/* Menü kosár hover */
.custom-cart-menu .cart-contents.menu-cart:hover {
    background: rgba(0, 255, 136, 0.1) !important;
    border-color: rgba(0, 255, 136, 0.4) !important;
    color: #00ff88 !important;
}

/* Az ár zöldítése a menüben */
.custom-cart-menu .woocommerce-Price-amount {
    color: #00ff88 !important;
    font-weight: 700;
}


/* ==========================================
   2. A JOBB ALSÓ LEBEGŐ KOSÁR TISZTA STÍLUSA
   ========================================== */
.floating-cart-wrapper .cart-contents.floating-cart {
    /* Itt érvényesülhet a kerek, fix méretű fekete gomb */
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #000000 !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px !important;
    border-radius: 50% !important; /* Ettől lesz kör alakú */
    width: 60px !important;
    height: 60px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    position: relative;
    transition: transform 0.2s;
}

.floating-cart-wrapper .cart-contents.floating-cart:hover {
    transform: scale(1.1);
}

.p-details h3 a {
    color: #fff !important; /* Vagy neonzöld: #00ff88 */
    text-decoration: none;
}

.p-details h3 a:hover {
    color: #00ff88; /* Hoverre beváltja a zöldet */
}

.p-meta .price {
    color: #000 !important; /* Mivel zöld a háttér, a fekete szöveg jobban olvasható */
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    text-align: center;
    padding: 10px 0;
}

.ajanlatkeres_btn{
    display: flex;
}

/* Gomb konténer és alap stílus */
.ajanlatkeres_btn .btn-quote {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000 !important; /* Fekete szöveg a jó olvashatóságért */
    text-decoration: none;
    border-radius: 50px; /* Lekerekített, kapszula forma */
    
    /* Dögös neonzöld színátmenet */
    background: linear-gradient(135deg, #00ff88 0%, #00bc70 100%);
    
    /* Finom neonzöld izzás (glow effect) */
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover (egér ráhúzás) effekt */
.ajanlatkeres_btn .btn-quote:hover {
    transform: translateY(-2px); /* Kicsit megemelkedik */
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.8); /* Felerősödik az izzás */
    background: linear-gradient(135deg, #00ffbc 0%, #00ff88 100%); /* Megfordul az átmenet */
}

/* Kattintás effekt */
.ajanlatkeres_btn .btn-quote:active {
    transform: translateY(1px); /* Benyomódás érzet */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Kiegészítő animáció: Finom lüktetés (Pulse), hogy vonzza a szemet */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.7);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    }
}

/* Kapcsoljuk rá a lüktetést a gombra alaphelyzetben */
.ajanlatkeres_btn .btn-quote {
    animation: pulseGlow 2s infinite ease-in-out;
}

/* --- SR3D PRÉMIUM TERMÉKKÁRTYA --- */
.s-card {
    background: rgba(15, 18, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}



/* Kép konténer */
.p-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Kocka képarány */
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.p-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Szöveges rész */
.p-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Terméknév link */
.p-details h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.p-details h3 a {
    color: var(--text, #ffffff);
    text-decoration: none;
    transition: color 0.3s;
}

.p-details h3 a:hover {
    color: var(--accent, #ff4b2b);
}

/* Ár és gomb szekció */
.p-meta {
    margin-top: auto; /* Alulra rendezi az árat és gombot */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Woocommerce Ár stílus */
.price-box {
    font-size: 20px;
    font-weight: 800;
    color: var(--text, #ffffff);
}

.price-box del { /* Akciós régi ár */
    font-size: 14px;
    opacity: 0.5;
    margin-right: 8px;
    font-weight: 400;
}

.price-box ins { /* Új ár */
    text-decoration: none;
    color: var(--accent, #ff4b2b); /* Az akciós ár világítson az akciós színeddel */
}

/* Kosárba gomb */
.cart-btn-wrapper a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--text, #ffffff); /* Alapból letisztult fehér gomb fekete szöveggel */
    color: #05070a !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

/* Gomb hover: Átvált az akciós színedre és kap egy kis belső izzást */
.cart-btn-wrapper a.button:hover {
    background: var(--accent, #ff4b2b);
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb, 255, 75, 43), 0.4);
}

.added_to_cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--text, #ffffff); /* Alapból letisztult fehér gomb fekete szöveggel */
    color: #05070a !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    margin-top:15px;
}

/* Gomb hover: Átvált az akciós színedre és kap egy kis belső izzást */
.cart-btn-wrapper {
    
    color: #000000 !important;
}



/* WooCommerce AJAX töltés animáció simítása */
.cart-btn-wrapper a.button.loading {
    opacity: 0.7;
}

/* --- BRUTÁL FIGYELEMFELHÍVÓ TERMÉKCÍM (ALAPBÓL GRADIENS) --- */
.p-details h3 {
    margin: 0 0 12px 0;
    font-size: 22px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    line-height: 1.3;
}

.p-details h3 a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    
    /* ALAPBÓL GRADIENS: Hófehérből indul és átmegy az akciós színedbe */
    background: linear-gradient(135deg, #ffffff 30%, var(--accent, #ff4b2b) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Finom átmenet a hover effekthez */
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 0px transparent);
}



/* Az alsó dizájn-vonal, ami hoverre aláhúzza */
.p-details h3 a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--accent, #ff4b2b));
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

