/* ===== ALAPBEÁLLÍTÁSOK ===== */
:root {
    --primary-color: #4a6fdc;
    --primary-dark: #3857b8;
    --primary-light: #7b95e6;
    --secondary-color: #34c759;
    --dark-color: #1c2331;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --gray-light: #e9ecef;
    --danger-color: #ff3b30;
    --warning-color: #ffcc00;
    --success-color: #34c759;
    --info-color: #5ac8fa;
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* ===== KONTÉNER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== GOMBOK ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== FEJLÉC ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    background-color: rgba(74, 111, 220, 0.1);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    background-color: white;
    color: var(--primary-color);
}

.hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===== TÖRTÉNET ÉS NAP AJÁNLATA SZEKCIÓ ===== */
.story, .daily-picks {
    padding: 60px 0;
    background-color: white;
}

.story h2, .daily-picks h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.story p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.daily-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.daily-pick-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 20px;
}

.daily-pick-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.daily-pick-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.daily-pick-item h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
}

.daily-pick-item p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== TERMÉKEK SZEKCIÓ ===== */
.products {
    padding: 60px 0;
    background-color: var(--light-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.products-grid, .related-products-grid, .featured-products-grid, .recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
    flex-grow: 1;
}

.product-card .btn {
    margin-top: auto;
}

/* ===== FUNKCIÓK SZEKCIÓ ===== */
.features {
    padding: 60px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature:hover {
    background-color: var(--light-color);
}

.feature-icon {
    margin-bottom: 20px;
    background-color: rgba(74, 111, 220, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature p {
    color: var(--gray-color);
}

/* ===== HÍRLEVÉL SZEKCIÓ ===== */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
}

/* ===== LÁBLÉC ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.payment-icons, .social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* ===== ÉRTESÍTÉSEK ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content svg {
    color: var(--success-color);
}

/* ===== TERMÉK RÉSZLETEK OLDAL ===== */
.product-details {
    padding: 60px 0;
    background-color: var(--light-color);
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.breadcrumb a {
    color: var(--gray-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.product-images {
    display: flex;
    flex-direction: column;
}

.main-image {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-images img:hover {
    opacity: 0.8;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: var(--warning-color);
}

.count {
    color: var(--gray-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.in-stock {
    color: var(--success-color);
}

.product-short-description {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.product-quantity {
    margin-bottom: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    width: fit-content;
}

.quantity-control button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-control input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.product-meta {
    margin-top: 20px;
    color: var(--gray-color);
}

.product-tabs {
    margin-bottom: 50px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-color);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.specs-table th {
    background-color: var(--gray-light);
    font-weight: 600;
    width: 30%;
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.average-rating {
    text-align: center;
}

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 80px;
}

.progress {
    flex: 1;
    height: 10px;
    background-color: var(--gray-light);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}

.progress-bar {
    height: 100%;
    background-color: var(--warning-color);
}

.rating-percent {
    width: 40px;
}

.customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--gray-color);
}

.related-products {
    padding: 60px 0;
    background-color: white;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* ===== KOSÁR OLDAL ===== */
.cart-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.cart-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.empty-cart h2 {
    margin-bottom: 10px;
}

.empty-cart p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
    align-items: center;
}

.cart-item-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-info h3 {
    margin-bottom: 5px;
}

.cart-item-price, .cart-item-total {
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
}

.cart-item-remove {
    cursor: pointer;
    color: var(--danger-color);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-coupon {
    display: flex;
    gap: 10px;
}

.cart-coupon input {
    padding: 10px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    outline: none;
}

.cart-totals {
    width: 350px;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-total-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
    margin-bottom: 20px;
}

.cart-totals .btn {
    width: 100%;
    margin-bottom: 10px;
}

.featured-products {
    padding: 60px 0;
    background-color: white;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* ===== PÉNZTÁR OLDAL ===== */
.checkout-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-light);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.progress-connector {
    width: 100px;
    height: 4px;
    background-color: var(--gray-light);
    margin-top: 18px;
}

.progress-connector.active {
    background-color: var(--primary-color);
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form-container, .order-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.checkout-form-container h2, .order-summary h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.checkout-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-group {
    width: 100%;
}

.form-group.half {
    width: calc(50% - 7.5px);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.payment-methods {
    margin: 20px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
}

.payment-method input {
    margin-right: 10px;
}

.payment-icons {
    margin-left: auto;
}

.order-items {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.order-item-info {
    flex: 1;
}

.order-item-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-item-price {
    display: flex;
    justify-content: space-between;
}

.order-totals {
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.order-total-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
}

/* ===== SIKERES RENDELÉS OLDAL ===== */
.success-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.success-message {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--success-color);
}

.success-message p {
    margin-bottom: 30px;
}

.order-details {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.success-buttons {
    margin-top: 30px;
}

.recommended-products {
    padding: 60px 0;
    background-color: white;
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* ===== KAPCSOLAT OLDAL ===== */
.page-banner {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    margin-bottom: 20px;
    background-color: rgba(74, 111, 220, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.text-muted {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container, .map-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form-container h2, .map-container h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-responsive {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--gray-light);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-color);
}

.faq {
    padding: 60px 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cta {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.cta .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== RÓLUNK OLDAL ===== */
.about-story {
    padding: 60px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-mission {
    padding: 60px 0;
    background-color: var(--light-color);
}

.about-mission h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mission-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.mission-icon {
    margin-bottom: 20px;
    background-color: rgba(74, 111, 220, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

.mission-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.team {
    padding: 60px 0;
    background-color: white;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--gray-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member p {
    padding: 0 20px 20px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.certificates {
    padding: 60px 0;
    background-color: var(--light-color);
}

.certificates h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.certificate {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.certificate-icon {
    margin-bottom: 20px;
    background-color: rgba(74, 111, 220, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

.certificate h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ===== RESZPONZÍV ===== */
@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input, .newsletter-form .btn {
        border-radius: var(--border-radius);
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-header-item:nth-child(3), .cart-item > *:nth-child(3) {
        display: none;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-totals {
        width: 100%;
    }
    
    .progress-connector {
        width: 50px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cart-header-item:not(:first-child), .cart-item > *:not(:first-child) {
        display: none;
    }
    
    .cart-item-details {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group.half {
        width: 100%;
    }
}
