/* ========================================
   RESET ÉS ALAPBEÁLLÍTÁSOK
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   FONT LOADING OPTIMIZATION
   ======================================== */
@font-face {
    font-family: 'Georgia';
    font-display: swap; /* Ensures text remains visible during webfont load */
    src: local('Georgia'), local('Georgia Regular');
}

/* ========================================
   TIPOGRÁFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #d4a574;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8935f;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 10000;
    font-size: 1rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

/* ========================================
   BREADCRUMB - ÚJ
   ======================================== */
.breadcrumb {
    background: #faf8f5;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

/* Főoldalon elrejtjük a breadcrumb-ot */
body.home .breadcrumb,
body.homepage .breadcrumb,
.page-home .breadcrumb {
    display: none;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: #666;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Mobile Menu Toggle - ÚJ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-navigation a {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #d4a574;
}

/* ========================================
   DROPDOWN MENU FIX - Függőleges megjelenítés
   ======================================== */

/* Dropdown menu - JAVÍTOTT VERZIÓ */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    
    /* FONTOS: Függőleges lista */
    display: block !important;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

/* Dropdown elemek függőlegesen */
.dropdown li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block !important;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-transform: none;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown a:hover {
    background: #faf8f5;
    color: #d4a574;
    padding-left: 25px;
}

/* Aktív menüpont jelzése */
.dropdown a.active {
    color: #d4a574;
    font-weight: 600;
}

/* Főmenü elemek közötti távolság csökkentése több dropdown miatt */
.main-navigation > ul {
    gap: 25px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    padding: 120px 0 80px;  /* Csökkentett alsó padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: #d4a574;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: #fff;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: #b8935f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    color: #fff;
}

/* ========================================
   BACK TO TOP BUTTON - ÚJ
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8935f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.back-to-top span {
    font-size: 1.5rem;
    line-height: 1;
}

/* ========================================
   QUICK ANSWER BOX - ÚJ - MÓDOSÍTOTT
   ======================================== */
.quick-answer-section {
    background: #f9f7f4;
    padding: 40px 0 60px;  /* Csökkentett padding */
}

.quick-answer-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #d4a574;
}

.quick-answer-box h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.price-ranges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.price-range {
    text-align: center;
    padding: 20px;
    background: #faf8f5;
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
}

.price-note {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.price-note strong {
    color: #d4a574;
    font-weight: 600;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */
.introduction {
    background: #fff;
}

.introduction h2 {
    margin-bottom: 2rem;
}

.introduction > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #faf8f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    color: #d4a574;
    margin-bottom: 1rem;
}

/* ========================================
   BUYING GUIDE SECTION - ÚJ
   ======================================== */
.buying-guide-section {
    background: #f9f7f4;
    padding: 80px 0;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.guide-step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #d4a574;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.guide-step h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.guide-step ul {
    list-style: none;
    padding: 0;
}

.guide-step li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.guide-step li strong {
    color: #333;
    font-weight: 600;
}

.buying-tips-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.buying-tips-box h3 {
    color: #d4a574;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.buying-tips-box ul {
    list-style: none;
    padding: 0;
}

.buying-tips-box li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.buying-tips-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   MATERIAL COMPARISON SECTION - ÚJ
   ======================================== */
.material-comparison-section {
    background: #fff;
    padding: 80px 0;
}

.material-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.material-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.material-comparison-table thead {
    background: #d4a574;
    color: #fff;
}

.material-comparison-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.material-comparison-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.material-comparison-table tbody tr:hover {
    background: #faf8f5;
}

.material-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.material-comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

/* Euro szimbólumok stílusa */
.material-comparison-table td:last-child {
    color: #d4a574;
    font-weight: 600;
    text-align: center;
}

.material-care-tips {
    background: #f9f7f4;
    padding: 40px;
    border-radius: 12px;
}

.material-care-tips h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 1.6rem;
}

.care-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.care-tip {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.care-tip h4 {
    color: #d4a574;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.care-tip p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.featured-products {
    background: #f9f7f4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card.featured {
    grid-column: span 1;
}

.product-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4a574;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.product-info {
    padding: 25px;
}

.brand {
    display: inline-block;
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.sale-price {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: bold;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9rem;
}

/* Size Chart Button - ÚJ */
.size-chart-toggle {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.size-chart-toggle:hover {
    background: #faf8f5;
    border-color: #d4a574;
    color: #d4a574;
}

.product-cta {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #d4a574;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: #b8935f;
    color: #fff;
}

.product-cta.special {
    background: #e74c3c;
}

.product-cta.special:hover {
    background: #c0392b;
}

.more-products {
    text-align: center;
}

.secondary-cta {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #d4a574;
    color: #d4a574;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: #d4a574;
    color: #fff;
}

/* ========================================
   SIZE CHART MODAL - ÚJ
   ======================================== */
.size-chart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    overflow-y: auto;
}

.size-chart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.size-table th,
.size-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.size-table th {
    background: #faf8f5;
    font-weight: 600;
}

.size-table tr:nth-child(even) {
    background: #f9f9f9;
}

.size-tips {
    margin-top: 30px;
}

.size-tips h3 {
    margin-bottom: 15px;
}

.size-tips ul {
    margin-left: 20px;
}

.size-tips li {
    margin-bottom: 8px;
    color: #666;
}

/* ========================================
   EXPERT TEAM SECTION - ÚJ
   ======================================== */
.expert-team {
    background: #fff;
    padding: 80px 0;
}

.expert-team h2 {
    margin-bottom: 1rem;
}

.expert-team .section-subtitle {
    margin-bottom: 3rem;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.expert-card {
    text-align: center;
    padding: 30px;
    background: #faf8f5;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.expert-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #d4a574;
}

.expert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.expert-title {
    font-size: 0.95rem;
    color: #d4a574;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.expert-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.expert-bio strong {
    color: #333;
    font-weight: 600;
}

.about-mini {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-mini p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.about-mini strong {
    color: #333;
}

/* ========================================
   STYLE GUIDE SECTION
   ======================================== */
.style-guide {
    background: #fff;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.guide-item h3 {
    color: #d4a574;
    margin-bottom: 1rem;
}

.guide-item p {
    line-height: 1.8;
}

/* ========================================
   CATEGORIES SECTION - MÓDOSÍTOTT
   ======================================== */
.categories {
    background: #faf8f5;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Fix 3 oszlop */
    gap: 30px;
    margin-top: 3rem;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: #d4a574;
}

/* Új kategória kép stílusok */
.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 25px 20px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.category-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.category-count {
    display: inline-block;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* ========================================
   TRUST SECTION - MÓDOSÍTOTT
   ======================================== */
.trust-section {
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    margin-bottom: 15px;
}

/* Új trust statisztika elemek */
.trust-stat {
    margin-top: 20px;
    padding: 15px;
    background: #faf8f5;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: #f9f7f4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #d4a574;
    margin-bottom: 15px;
}

.faq-item p {
    line-height: 1.8;
}

.faq-item strong {
    color: #333;
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.final-cta h2::after {
    background-color: #fff;
}

.final-cta p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #d4a574;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #b8935f;
}

.final-cta .secondary-cta {
    color: #fff;
    border-color: #fff;
}

.final-cta .secondary-cta:hover {
    background: #fff;
    color: #d4a574;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.affiliate-notice {
    font-size: 0.85rem;
    font-style: italic;
}

/* ========================================
   REVIEWS SECTION - VÁSÁRLÓI VÉLEMÉNYEK
   ======================================== */
.reviews-section {
    background: #fff;
    padding: 80px 0;
}

.review-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-overview {
    display: inline-block;
    padding: 30px;
    background: #faf8f5;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    display: block;
    margin-bottom: 10px;
}

.rating-overview .stars {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.rating-overview p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header strong {
    font-size: 1.1rem;
    color: #333;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

.review-rating {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.verified-purchase {
    display: inline-block;
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
    padding: 4px 10px;
    background: #e8f5e9;
    border-radius: 15px;
}

.review-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Termék kártyán belüli értékelés */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.product-rating .stars {
    color: #ffc107;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .main-navigation > ul {
        gap: 20px;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Kategória grid tablet nézetben */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Material table responsive */
    .material-comparison-table {
        font-size: 0.9rem;
    }
    
    .material-comparison-table th,
    .material-comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    /* Mobile menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100%;
        background: #fff;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px 10px;
    }
    
    /* Mobile dropdown */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #faf8f5;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown a {
        padding-left: 30px;
        font-size: 0.85rem;
    }
    
    /* Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 80px 0 60px;  /* Mobil padding */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .header-top {
        padding: 15px 0;
    }
    
    /* Kategória grid mobil nézetben */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guide-grid,
    .benefits-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quick Answer Box mobil */
    .quick-answer-section {
        padding: 30px 0 40px;
    }
    
    .price-ranges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-answer-box {
        padding: 30px 20px;
    }
    
    /* Expert Team mobil */
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-card img {
        width: 100px;
        height: 100px;
    }
    
    /* Back to top button mobil */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top span {
        font-size: 1.2rem;
    }
    
    /* Modal mobil */
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .size-table {
        font-size: 0.85rem;
    }
    
    .size-table th,
    .size-table td {
        padding: 8px 4px;
    }
    
    /* Buying guide mobile */
    .guide-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .buying-tips-box {
        padding: 30px 20px;
    }
    
    /* Material table mobile */
    .material-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }
    
    .material-comparison-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .care-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-wrapper {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Kategória kép magasság mobil */
    .category-image {
        height: 150px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Reviews mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .hero-features,
    .cta-button,
    .product-cta,
    .final-cta,
    .site-footer,
    .back-to-top,
    .mobile-menu-toggle,
    .size-chart-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .product-card {
        page-break-inside: avoid;
    }
    
    .material-comparison-table {
        page-break-inside: avoid;
    }
}