/* Globális stílusok és alap beállítások - Modern PS (Fekete/Fehér/Kék) Stílus */
:root {
    --ps-blue: #0070D1;       /* A jellegzetes PlayStation kék */
    --ps-dark: #1A1A1A;       /* Elegáns sötét szürke/fekete */
    --ps-light: #FFFFFF;      /* Fehér */
    --ps-grey: #F5F5F5;       /* Nagyon világos szürke az alap háttérnek */
    --accent-red: #E63946;    /* Piros az akció kiemeléshez */
    
    /* Erős árnyékok a 'pattanjon ki' effektusért */
    --box-shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.15); 
    --box-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08); 
    --text-shadow-heavy: 2px 2px 4px rgba(0, 0, 0, 0.1); 
    --border-radius-lg: 8px; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif; 
    background-color: var(--ps-grey); 
    color: var(--ps-dark);
    line-height: 1.4;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- GLOBÁLIS CÍMSOR STÍLUSOK (MINDEN H1, H2, H3 KIEMELT) --- */
/* A Poppins fontban a 700-as és 900-as súly nagyon erős kiemelést ad */
h1, h2, h3, h4 {
    font-weight: 800; /* Maximális vastagság */
    color: var(--ps-dark);
	
}

/* --- KISEBB ÉS TISZTÁBB HEADER --- */
header {
    text-align: center;
    background-color: var(--ps-light); 
    color: var(--ps-dark); 
    padding: 30px 0; 
    margin-bottom: 40px;
    box-shadow: var(--box-shadow-strong); /* Erősebb kiemelés */
    border-bottom: none; 
}

header h1 {
    font-size: 2.8em; /* Kicsit nagyobb lett a maximális kiemeléshez */
    margin-bottom: 5px;
    letter-spacing: 1.2px; 
    text-transform: uppercase;
    text-shadow: var(--text-shadow-heavy); 
    color: var(--ps-blue); 
}

header p {
    font-size: 1.2em; /* Kiemeltebb alcím */
    font-weight: 700; /* Vastagabb */
    color: #555;
}

/* --- TERMÉK KÁRTYÁK (TISZTA, ÁRNYÉKOS DESIGN) --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--ps-light);
    border-radius: var(--border-radius-lg); 
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow-strong); /* Erősebb kiemelés */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none; 
}

.product-card:hover {
    transform: translateY(-10px); /* Kiemeltebb lebegés */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); /* Még erősebb hover árnyék */
}

.product-card .title { 
    font-size: 1.4em; /* H2 */
    margin-bottom: 8px; 
}
.product-card .description { color: #666; margin-bottom: 15px; font-size: 0.9em; min-height: 40px; }
.product-card .old-price { font-size: 0.9em; color: #999; text-decoration: line-through; margin-bottom: 5px; font-weight: 600; }
.product-card .price { font-size: 2.4em;  margin-bottom: 20px; }
.product-image { width: 100%; max-height: 180px; object-fit: contain; margin-bottom: 20px; }
.action-button { display: block; width: 90%; margin: 0 auto; padding: 14px 10px; background-color: var(--ps-blue); color: white; text-decoration: none; border-radius: 10px; font-weight: 800; font-size: 1.1em; transition: background-color 0.2s ease, transform 0.1s ease; border: none; text-transform: uppercase; }
.action-button:hover { background-color: #005AAB; transform: scale(1.02); }
.product-card.featured { border: 3px solid var(--ps-blue); box-shadow: 0 0 30px rgba(0, 112, 209, 0.5); } /* Kék aurával kiemelve */
.badge { position: absolute; top: 10px; left: -15px; background-color: var(--accent-red); color: white; padding: 6px 25px; font-weight: 800; font-size: 0.9em; transform: rotate(-8deg); }


/* --- INFORMÁCIÓS SZEKCIÓ (ACCORDION) --- */
.info-section {
    background-color: var(--ps-light); 
    padding: 50px 21px;
    border-top: 1px solid #ddd;
}

.info-section h2 {
    font-size: 2.5em; /* Kiemeltebb H2 */
    text-align: center;
    margin-bottom: 40px;
    color: var(--ps-dark);
}

.accordion-container {
    max-width: 1000px; 
    margin: 0 auto;
}

/* Accordion Fejléc Gomb */
.accordion-header {
    background-color: var(--ps-grey);
    color: var(--ps-dark);
    cursor: pointer;
    padding: 18px 25px; 
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 1.2em; /* Kiemeltebb fontméret */
    font-weight: 800; /* Erősen vastag */
    border-radius: var(--border-radius-lg); 
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow-soft); 
}

.accordion-header h3 {
    margin: 0;
    font-size: 1em; /* Az H3 itt követi a Button fontméretét, de örökli a 900-as súlyt */
    color: var(--ps-dark);
}

.accordion-header.active, .accordion-header:hover {
    background-color: var(--ps-blue);
    color: var(--ps-light);
}

.accordion-header.active h3, .accordion-header:hover h3 {
    color: var(--ps-light);
}

.accordion-header::after {
    content: '\002B';
    font-weight: 900;
    font-size: 1.5em; /* Kiemelt plusz jel */
    transition: transform 0.4s;
}

.accordion-header.active::after {
    content: "\2212";
    transform: rotate(180deg);
}

/* Accordion Tartalom */
.accordion-content {
    padding: 0 25px;
    background-color: var(--ps-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-bottom: 10px;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    border-left: 5px solid var(--accent-red);
    box-shadow: var(--box-shadow-soft);
}

.accordion-content ul { list-style-type: none; padding: 20px 0; }
.accordion-content li { margin-bottom: 8px; font-size: 1em; color: #333; }
.accordion-content li::before { content: "▪"; color: var(--ps-blue); font-weight: 900; display: inline-block; width: 1.2em; margin-left: -1.2em; }
.accordion-content p { padding: 20px 0 10px 0; }
.accordion-content p.note { font-style: italic; font-size: 0.9em; color: var(--accent-red); }


/* --- LÁBJEGYZET --- */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #666;
    background-color: var(--ps-light);
}

/* RESZPONZÍV KIALAKÍTÁS */
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}