/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2c3e50;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.cta-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid #e74c3c;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-button {
    background: transparent;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-button i {
    font-size: 24px;
}

.cart-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
}

/* Mobil menü */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-cart-button {
    background: transparent;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

.mobile-cart-button i {
    font-size: 24px;
}

.mobile-cart-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-cart-button i {
    font-size: 1.2rem;
}

.mobile-cart-button .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 22px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mobile-nav-links a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 2rem;
}

.mobile-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Hero Section */
.hero {
    background: #2c3e50;
    color: white;
    padding: 200px 0 80px;
    margin: 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
    border: none;
    outline: none;
    top: 0;
}

/* Header és Hero egybeolvadás biztosítása */
.header + .hero {
    margin-top: 0;
    padding-top: 200px;
    background: #2c3e50 !important;
}

.header {
    margin-bottom: 0;
    padding-bottom: 0;
    background: #2c3e50 !important;
}

/* Teljes egybeolvadás biztosítása */
.header, .hero {
    background: #2c3e50 !important;
    background-image: none !important;
    background-color: #2c3e50 !important;
}

/* Hero Video Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    min-height: 80vh;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.hero-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-align: right !important;
    position: relative !important;
}

.hero-image img {
    max-width: 70% !important;
    height: auto !important;
    max-height: 500px !important;
    border-radius: 15px !important;
    animation: pulse 2s ease-in-out infinite !important;
    object-fit: contain !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    text-align: center !important;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-weight: 500;
    width: 100%;
    display: block;
}

/* Miért válaszd szekció */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Hogyan működik szekció */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

.how-it-works .text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.how-it-works p {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 48rem;
    margin: 0 auto;
}

.how-it-works .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.how-it-works .grid > div {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.how-it-works .relative {
    position: relative;
}

.how-it-works .rounded-lg {
    border-radius: 0.5rem;
    background: #ffffff;
    color: #2c3e50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.how-it-works .rounded-lg:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.how-it-works .p-8 {
    padding: 2rem;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.how-it-works .absolute {
    position: absolute;
}

.how-it-works .-top-4 {
    top: -1rem;
}

.how-it-works .left-1\/2 {
    left: 50%;
}

.how-it-works .transform {
    transform: translateX(-50%);
}

.how-it-works .bg-gradient-accent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.how-it-works .text-white {
    color: #ffffff;
}

.how-it-works .rounded-full {
    border-radius: 50%;
}

.how-it-works .w-12 {
    width: 3rem;
}

.how-it-works .h-12 {
    height: 3rem;
}

.how-it-works .flex {
    display: flex;
}

.how-it-works .items-center {
    align-items: center;
}

.how-it-works .justify-center {
    justify-content: center;
}

.how-it-works .font-bold {
    font-weight: 700;
}

.how-it-works .text-lg {
    font-size: 1.125rem;
}

.how-it-works .shadow-industrial {
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.how-it-works .mt-8 {
    margin-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-it-works .text-xl {
    font-size: 1.25rem;
}

.how-it-works .text-steel-800 {
    color: #2c3e50;
}

.how-it-works .mb-4 {
    margin-bottom: 1rem;
}

.how-it-works .text-steel-600 {
    color: #7f8c8d;
}

.how-it-works .leading-relaxed {
    line-height: 1.625;
}

.how-it-works .bg-accent {
    background-color: #e74c3c;
}

/* Reszponzív design */
@media (min-width: 768px) {
    .how-it-works .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .how-it-works h2 {
        font-size: 3.5rem;
    }
}

/* Miért válaszd szekció */
.py-20 {
    padding: 5rem 0;
}

.bg-steel-50 {
    background-color: #f8f9fa;
}

.container.mx-auto {
    max-width: 1200px;
    margin: 0 auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.mb-16 {
    margin-bottom: 4rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.text-steel-800 {
    color: #2c3e50;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-steel-600 {
    color: #7f8c8d;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
}

.bg-card {
    background-color: #ffffff;
}

.text-card-foreground {
    color: #2c3e50;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.border-none {
    border-style: none;
}

.shadow-steel {
    box-shadow: 0 4px 6px -1px rgba(44, 62, 80, 0.1), 0 2px 4px -1px rgba(44, 62, 80, 0.06);
}

.hover\:shadow-industrial:hover {
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.transform {
    transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.p-8 {
    padding: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.text-steel-600 {
    color: #7f8c8d;
}

.text-accent {
    color: #e74c3c;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

.text-steel-800 {
    color: #2c3e50;
}

.mb-4 {
    margin-bottom: 1rem;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Miért válaszd szekció mobil stílusok */
    #miert-valaszd .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    #miert-valaszd .grid > div {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Adatvédelmi szabályzat oldal */
body.privacy-body {
    padding-top: 0;
    margin-top: 0;
}

.privacy-page {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
    margin-top: 0;
}


.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    padding-top: 20px;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .privacy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 0.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
}

/* Vélemények szekció */
.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: 100%;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.2rem;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 2.2rem;
    color: #e74c3c;
    position: absolute;
    top: -8px;
    left: -8px;
    font-family: serif;
}

.review-text::after {
    content: '"';
    font-size: 2.2rem;
    color: #e74c3c;
    position: absolute;
    bottom: -15px;
    right: -8px;
    font-family: serif;
}

.review-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
}


/* Minőség összehasonlítás */
.quality-comparison {
    padding: 80px 0;
    background: #f8f9fa;
}

.quality-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.2;
}

.chart-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chart-label {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
}

.chart-bar {
    height: 40px;
    background: #e9ecef;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.chart-fill {
    height: 100%;
    border-radius: 20px;
    position: relative;
    transition: width 2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
}

.chart-fill.others {
    background: linear-gradient(135deg, #17a2b8, #138496);
    width: 0%;
}

.chart-fill.ours {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    width: 0%;
}

.chart-percentage {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Termékek szekció - ÚJ DESIGN */
.products {
    padding: 60px 0;
    background: #2c3e50;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0;
    color: white;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 800;
}

.product-showcase {
    max-width: 1200px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
}

.product-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.product-image-container:hover {
    transform: scale(1.05);
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.badge.premium {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.badge.guarantee {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.product-image-container:hover .zoom-overlay {
    opacity: 1;
}

.product-rating {
    margin-top: 2rem;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.rating-text {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Termék leírás */
.product-description {
    margin-top: 2rem;
    text-align: center;
}

.product-description h4 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-description li {
    padding: 1rem 0;
    font-size: 1.3rem;
    color: #555;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.product-description li:last-child {
    border-bottom: none;
}

.product-details {
    background: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-header h3 {
    font-size: 1.8rem;
    color: #000000 !important;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.product-rating-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-rating-inline .stars {
    display: flex;
    gap: 3px;
}

.product-rating-inline .stars i {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.product-rating-inline .rating-text {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.price-unit {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Színválasztás */
.color-selection {
    margin-bottom: 1.5rem;
}

.color-selection h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 3px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.color-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-option:hover::before {
    opacity: 1;
}

.color-option.active {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.color-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.color-option:hover .color-preview {
    transform: scale(1.1);
}

.color-option span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* Méretválasztás */
.size-selection {
    margin-bottom: 1.5rem;
}

.size-selection h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.size-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.size-option {
    padding: 1.5rem;
    border: 3px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.size-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-option:hover::before {
    opacity: 1;
}

.size-option.selected {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.size-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.size-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Kalkulátor szekció méretválasztás */
.calculator-section .size-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.size-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e74c3c;
}

.size-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Kalkulátor */
.calculator-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.calculator-section h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.input-group input {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-group select {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.input-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.quantity-controls button {
    background: #f8f9fa;
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: #e74c3c;
    color: white;
}

.quantity-controls input {
    border: none;
    text-align: center;
    width: 60px;
    padding: 0.8rem 0;
    font-weight: 700;
}

.calculation-result {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.result-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.result-line.total {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e74c3c;
    border-top: 2px solid #e9ecef;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

/* Trust badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #e74c3c;
}

.trust-badge i {
    font-size: 1rem;
    color: #e74c3c;
}

.trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Kosárba tevés gomb */
.add-to-cart-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Kalkulátor kosárba rakás gomb */
.add-to-cart-calculator-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    margin-top: 1rem;
    width: 100%;
}

.add-to-cart-calculator-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.add-to-cart-calculator-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover .btn-glow {
    left: 100%;
}

.add-to-cart-calculator-btn:hover .btn-glow {
    left: 100%;
}

/* Animációk */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Marketinges elemek */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.product-badge::before {
    content: '✓ ';
    font-weight: 900;
}

.urgency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '⚡';
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 0.8rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: #e74c3c;
    margin-bottom: 0.3rem;
}

.trust-item span {
    font-weight: 600;
}

.color-options h4,
.size-options h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.color-options h4::before,
.size-options h4::before {
    content: '📏 ';
    margin-right: 5px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.color-dropdown-mobile {
    display: none;
}

.color-dropdown-mobile select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.color-dropdown-mobile select:focus {
    outline: none;
    border-color: #3498db;
}

.color-option {
    text-align: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-option:hover {
    background: #f8f9fa;
}

.color-option.active {
    border-color: #3498db;
    background: #e3f2fd;
}

.color-option img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.color-option span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.product-image {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    gap: 2rem;
}

.product-image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image-container:hover {
    transform: scale(1.05);
}

.product-image img {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.badge.premium {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.badge.guarantee {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.product-zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-image-container:hover .product-zoom-overlay {
    opacity: 1;
}

.product-zoom-overlay i {
    font-size: 1.2rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.feature-highlight i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Termék információk sáv */
.product-info-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0;
    padding: 2rem;
    background: #2c3e50;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.2);
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.info-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-description {
    color: #ccc;
    margin-bottom: 2rem;
}

.product-title-mobile {
    display: none;
}

.size-options h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.size-option {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.size-option.selected {
    border-color: #3498db;
    background: #e3f2fd;
}

.size {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

    .quantity-selector {
        margin-bottom: 1.5rem;
    }
    
    .quantity-selector label {
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 500;
        color: white;
        font-size: 1rem;
    }
    
    .quantity-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .quantity-controls button {
        width: 45px;
        height: 45px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
    }
    
    .quantity-controls button:hover {
        border-color: #e74c3c;
        background: rgba(231, 76, 60, 0.2);
    }
    
    .quantity-controls input {
        width: 90px;
        height: 45px;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .quantity-controls input:focus {
        outline: none;
        border-color: #e74c3c;
        background: rgba(255, 255, 255, 0.2);
    }

    .product-total {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        text-align: center;
        color: white;
        font-weight: 600;
    }
    
    .add-to-cart {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        border: none;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .add-to-cart:hover {
        background: linear-gradient(135deg, #c0392b, #a93226);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

/* Kalkulátor szekció */
.calculator {
    padding: 80px 0;
    background: white;
}

.calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.calculator-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.input-group input,
.input-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #3498db;
}

.calculator-result {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.calculator-result h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.result-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.result-details span {
    font-weight: 600;
    color: #e74c3c;
}

/* Galéria */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Kapcsolat szekció */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* GYIK szekció */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Mobile footer links */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}

/* Modal stílusok */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #e74c3c;
}

.modal h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

/* Kosár stílusok */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.cart-item-details {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-price {
    font-weight: 600;
    color: #e74c3c;
}

.cart-total {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.cart-total p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.shipping {
    color: #666;
}

.final-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Order summary */
.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.order-summary h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.order-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-total-line.final-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

/* Kép nagyítás modal */
.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 1rem;
    text-align: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-brand {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-start;
    }
    
    .nav-brand img {
        height: 50px;
        width: auto;
    }
    
    .mobile-cart-button {
        width: 55px;
        height: 55px;
        padding: 0.8rem;
    }
    
    .mobile-cart-button i {
        font-size: 24px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
        align-items: center;
    }
    
    .hero-left {
        order: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        order: 2;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .hero {
        padding: 60px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-video-overlay iframe {
        width: 120vw;
        height: 67.5vw;
        min-height: 120vh;
        min-width: 213.33vh;
        transform: translate(-50%, -50%) scale(1.2);
    }
    
    .hero-text h2 {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        font-weight: 700;
    }
    
    .hero-text p {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        justify-content: center;
        text-align: center;
        border-radius: 12px;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        margin: 0 1rem;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .product-image {
        background: white;
        padding: 1.5rem;
        order: 1;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image img {
        height: 200px;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    
    .product-details {
        order: 2;
        background: #2c3e50;
        padding: 1.5rem;
        border-radius: 0;
        text-align: center;
    }
    
    /* Mobil termék részletek szövegek színei - SÖTÉTKÉK HÁTTÉREN */
    .product-details h3 {
        color: white !important;
        text-align: center !important;
    }
    
    .product-details .product-rating-inline {
        justify-content: center !important;
    }
    
    .product-details .price-display {
        justify-content: center !important;
    }
    
    .product-details .color-selection h4,
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span,
    .product-details .size-label {
        color: white !important;
        font-weight: 600 !important;
        font-size: 1.4rem !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .rating-text {
        color: #ccc !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    .product-details .price-unit {
        color: #ccc !important;
    }
    
    /* SZÍNVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .color-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .color-option {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .product-details .color-option.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    /* MÉRETVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .size-option {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .size-option.selected {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    .product-details .size-label,
    .product-details .size-price {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .size-badge {
        color: white !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    /* TRUST BADGE SPECIFIKUS SZABÁLYOK */
    .product-details .trust-badges {
        background: transparent !important;
    }
    
    .product-details .trust-badge {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .trust-badge i {
        color: white !important;
    }
    
    /* Kalkulátor szekció - SZÍNVÁLASZTÓ SZÍNŰ HÁTTÉR */
    .product-details .calculator-section {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .calculator-section h4 {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .input-group label {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .result-line span {
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    .product-details .calculator-section input {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section select {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section input::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .product-details .calculator-section button {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    .product-details h3,
    .product-details .product-description {
        display: none;
    }
    
    .product-title-mobile {
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: white;
    }
    
    .product-title-mobile h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: white;
        font-weight: 600;
    }
    
    .product-title-mobile .product-description {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .product-features {
        gap: 1rem;
    }
    
    .feature-highlight {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .product-info-bar {
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        padding: 1.5rem;
        background: #2c3e50;
        border-radius: 0;
    }
    
    .info-item {
        font-size: 0.9rem;
        text-align: center;
        padding: 0.5rem;
    }
    
    .info-item i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-item span {
        display: block;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .calculator-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .color-grid {
        display: none;
    }
    
    .color-dropdown-mobile {
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .color-dropdown-mobile select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .color-dropdown-mobile select option {
        background: #2c3e50;
        color: white;
        padding: 0.5rem;
    }
    
    .size-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .size-option {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .size {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews {
        padding: 60px 0;
    }
    
    .reviews h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-top: 0;
        margin-bottom: 0.8rem;
        color: #7f8c8d;
        font-weight: 500;
        width: 100%;
        display: block;
    }
    
    .reviews-subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .reviews-slider {
        padding: 0 1rem;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: 320px;
        padding: 1.5rem;
        margin: 0 1rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .review-author {
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: auto;
        padding-top: 1rem;
        text-align: center;
    }
    
    .review-rating {
        margin-bottom: 1rem;
    }
    
    .review-rating i {
        font-size: 1rem;
    }
    
    .quality-comparison {
        padding: 60px 0;
    }
    
    .quality-comparison h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 700;
    }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .comparison-chart {
        padding: 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .chart-bar {
        margin-bottom: 1rem;
    }
    
    .chart-label {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        font-weight: 700 !important;
    }
    
    .chart-fill {
        height: 12px;
        border-radius: 6px;
    }
    
    .chart-bar {
        height: 40px;
        display: flex;
        align-items: center;
    }
    
    .chart-fill {
        height: 100%;
        border-radius: 6px;
    }
    
    .chart-percentage {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .stat-item {
        padding: 1.2rem;
        text-align: center;
        border-radius: 10px;
        background: #f8f9fa;
    }
    
    .stat-number {
        font-size: 3.5rem !important;
        margin-bottom: 0.5rem;
        font-weight: 800 !important;
    }
    
    .stat-label {
        font-size: 2.2rem !important;
        line-height: 1.3;
        font-weight: 700 !important;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-brand img {
        height: 45px;
    }
    
    .mobile-cart-button {
        width: 50px;
        height: 50px;
        padding: 0.7rem;
    }
    
    .mobile-cart-button i {
        font-size: 22px;
    }
    
    .hero {
        padding: 50px 0 60px;
        min-height: 100vh;
    }
    
    .hero-text h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        text-align: center;
        font-weight: 700;
    }
    
    .hero-text p {
        font-size: 1.4rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-text {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        order: 2;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 1.3rem 1.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 12px;
    }
    
    
    .hero-video-overlay iframe {
        width: 130vw;
        height: 73.125vw;
        min-height: 130vh;
        min-width: 231.11vh;
        transform: translate(-50%, -50%) scale(1.3);
    }
    
    .product-card {
        margin: 0 0.8rem;
    }
    
    .product-image {
        padding: 1rem;
        min-height: 200px;
    }
    
    .product-image img {
        height: 150px;
    }
    
    .product-details {
        padding: 1rem;
        text-align: center;
    }
    
    .product-details h3 {
        text-align: center !important;
    }
    
    .product-details .product-rating-inline {
        justify-content: center !important;
    }
    
    .product-details .price-display {
        justify-content: center !important;
    }
    
    /* Kisebb mobil méretek szövegek színei - SÖTÉTKÉK HÁTTÉREN */
    .product-details h3 {
        color: white !important;
    }
    
    .product-details .color-selection h4,
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span,
    .product-details .size-label {
        color: white !important;
        font-weight: 600 !important;
        font-size: 1.4rem !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .rating-text {
        color: #ccc !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    .product-details .price-unit {
        color: #ccc !important;
    }
    
    /* SZÍNVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .color-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .color-option {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .product-details .color-option.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    /* MÉRETVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .size-option {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .size-option.selected {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    .product-details .size-label,
    .product-details .size-price {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .size-badge {
        color: white !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    /* TRUST BADGE SPECIFIKUS SZABÁLYOK */
    .product-details .trust-badges {
        background: transparent !important;
    }
    
    .product-details .trust-badge {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .trust-badge i {
        color: white !important;
    }
    
    /* Kalkulátor szekció - SZÍNVÁLASZTÓ SZÍNŰ HÁTTÉR */
    .product-details .calculator-section {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .calculator-section h4 {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .input-group label {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .result-line span {
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    .product-details .calculator-section input {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section select {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section input::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .product-details .calculator-section button,
    .product-details .add-to-cart-calculator-btn,
    .calculator-section .add-to-cart-calculator-btn {
        background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
        background-image: linear-gradient(135deg, #e74c3c, #c0392b) !important;
        border: none !important;
        color: white !important;
        font-weight: 700 !important;
        padding: 1.2rem 2rem !important;
        border-radius: 15px !important;
        font-size: 1.1rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3) !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }
    
    .product-details .calculator-section button:hover,
    .product-details .add-to-cart-calculator-btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4) !important;
    }
    
    .product-details .calculator-section button:active,
    .product-details .add-to-cart-calculator-btn:active {
        transform: translateY(-1px) !important;
    }
    
    .product-title-mobile {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .product-title-mobile h3 {
        font-size: 1.1rem;
    }
    
    .product-title-mobile .product-description {
        font-size: 0.8rem;
    }
    
    .size-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .size-option {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .quantity-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quantity-controls input {
        width: 80px;
        height: 40px;
        font-size: 1rem;
    }
    
    .product-total {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .add-to-cart {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .product-info-bar {
        padding: 1rem;
    }
    
    .info-item {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .info-item i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .info-item span {
        font-size: 0.7rem;
    }
    
    .features-grid {
        padding: 0 0.8rem;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .reviews h2 {
        font-size: 2rem !important;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
        text-align: center !important;
        margin-top: 0;
        margin-bottom: 0.6rem;
        color: #7f8c8d;
        font-weight: 500;
        width: 100%;
        display: block;
    }
    
    /* ÚJ DESIGN - Mobil responsive */
    .product-showcase {
        grid-template-columns: 1fr;
        margin: 2rem auto 0;
        border-radius: 20px;
    }
    
    .product-visual {
        padding: 2rem;
        order: 1;
    }
    
    .product-details {
        padding: 2rem;
        order: 2;
        text-align: center;
    }
    
    .product-details h3 {
        text-align: center !important;
    }
    
    .product-details .product-rating-inline {
        justify-content: center !important;
    }
    
    .product-details .price-display {
        justify-content: center !important;
    }
    
    /* Harmadik mobil méret szövegek színei - SÖTÉTKÉK HÁTTÉREN */
    .product-details h3 {
        color: white !important;
    }
    
    .product-details .color-selection h4,
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span,
    .product-details .size-label {
        color: white !important;
        font-weight: 600 !important;
        font-size: 1.4rem !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .rating-text {
        color: #ccc !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    .product-details .price-unit {
        color: #ccc !important;
    }
    
    /* SZÍNVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .color-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .color-option span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .color-option {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .product-details .color-option.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    /* MÉRETVÁLASZTÁS SPECIFIKUS SZABÁLYOK */
    .product-details .size-selection h4 {
        color: white !important;
        font-weight: 700 !important;
    }
    
    .product-details .size-option {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .size-option.selected {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    .product-details .size-label,
    .product-details .size-price {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .size-badge {
        color: white !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    /* TRUST BADGE SPECIFIKUS SZABÁLYOK */
    .product-details .trust-badges {
        background: transparent !important;
    }
    
    .product-details .trust-badge {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .trust-badge span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .trust-badge i {
        color: white !important;
    }
    
    /* Kalkulátor szekció - SZÍNVÁLASZTÓ SZÍNŰ HÁTTÉR */
    .product-details .calculator-section {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .product-details .calculator-section h4 {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .input-group label {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .product-details .result-line span {
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    .product-details .calculator-section input {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section select {
        background: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
    }
    
    .product-details .calculator-section input::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .product-details .calculator-section button {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    .color-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .size-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .product-header h3 {
        font-size: 1.8rem;
    }
    
    .add-to-cart-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .reviews-subtitle {
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 1.2rem;
        margin: 0 0.8rem;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .review-author {
        font-size: 0.8rem;
        margin-top: auto;
        padding-top: 1rem;
        text-align: center;
    }
    
    .quality-comparison h2 {
        font-size: 2rem !important;
        font-weight: 700;
    }
    
    .comparison-content {
        padding: 0 0.8rem;
    }
    
    .comparison-chart {
        padding: 1rem;
    }
    
    .stats-section {
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 3rem !important;
        font-weight: 800 !important;
    }
    
    .chart-label {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
    }
    
    .chart-percentage {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    .stat-label {
        font-size: 2rem !important;
        font-weight: 700 !important;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 1.2rem;
    }
    
    /* GYIK mobil stílusok */
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .faq .section-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .faq-content {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem !important;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }
    
    /* Kosár oldal mobil stílusok */
    .cart-page {
        padding: 100px 0 60px;
    }
    
    /* Kosár összefoglaló explicit megjelenítés mobilra */
    .cart-summary,
    .summary-card,
    .summary-line,
    .checkout-btn,
    .continue-shopping {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .summary-line {
        display: flex !important;
    }
    
    .checkout-btn {
        display: flex !important;
    }
    
    .cart-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .cart-header h1 {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem;
    }
    
    .cart-subtitle {
        font-size: 1.1rem !important;
    }
    
    .cart-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 2rem;
    }
    
    .cart-items {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
        backdrop-filter: blur(10px);
    }
    
    .cart-item {
        display: grid;
        grid-template-columns: 120px 1fr auto auto;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        transition: all 0.3s ease;
        align-items: center;
    }
    
    .cart-item:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }
    
    .cart-item-image {
        width: 120px;
        height: 120px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .cart-item-image img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .cart-item-image:hover img {
        transform: scale(1.05);
    }
    
    .cart-item-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-details h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .cart-item-specs {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .cart-item-specs span {
        display: block;
        line-height: 1.4;
    }
    
    .cart-item-quantity {
        font-size: 1rem;
        background: #f8f9fa;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        min-width: 60px;
        font-weight: 600;
        color: #2c3e50;
        border: 2px solid #e9ecef;
        text-align: center;
    }
    
    .cart-item-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.3rem;
    }
    
    .cart-item-total {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2c3e50;
    }
    
    .cart-item-unit-price {
        font-size: 0.9rem;
        color: #e74c3c;
        font-weight: 500;
    }
    
    .cart-item-remove {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e74c3c;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }
    
    .cart-item-remove:hover {
        background: #c0392b;
        transform: scale(1.1);
    }
    
    .cart-summary {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
        backdrop-filter: blur(10px);
        position: sticky;
        top: 2rem;
        height: fit-content;
    }
    
    .summary-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .summary-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .summary-line {
        font-size: 1rem !important;
        padding: 0.8rem 0;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .summary-line.total {
        font-size: 1.2rem !important;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .checkout-btn {
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1.5rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .continue-shopping {
        font-size: 0.9rem;
        margin-top: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .empty-cart {
        margin: 1rem;
        padding: 3rem 1.5rem;
    }
    
    .empty-cart-content i {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .empty-cart-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }
    
    .empty-cart-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
}

/* KOSÁR ÖSSZEFOGLALÓ KÖTELEZŐ MEGJELENÍTÉS - MINDEN ESZKÖZÖN */
.cart-summary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    position: relative !important;
    margin-top: 2rem !important;
    padding: 1.5rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.summary-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
}

.summary-line {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.checkout-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.continue-shopping {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* MOBIL LAYOUT KÖTELEZŐ SZABÁLYOK */
@media (max-width: 768px) {
    .cart-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .cart-items {
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .cart-summary {
        order: 2 !important;
        width: 100% !important;
        margin-top: 1rem !important;
        margin-bottom: 2rem !important;
    }
}

/* Cart Page Styles */
.cart-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Kosár összefoglaló explicit megjelenítés */
.cart-summary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.summary-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.summary-line {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.checkout-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-header h1 i {
    color: #e74c3c;
    margin-right: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cart-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f8f9fa;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-details h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.cart-item-specs {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-quantity {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    min-width: 80px;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-total {
    font-weight: 800;
    color: #2c3e50;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cart-item-remove {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cart-item-remove:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cart-summary {
    position: sticky;
    top: 120px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.summary-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.summary-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-line.total {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    border-top: 3px solid #e74c3c;
    border-bottom: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.checkout-btn:hover:not(:disabled)::before {
    left: 100%;
}

.checkout-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
}

.continue-shopping:hover {
    color: #e74c3c;
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.empty-cart-content i {
    font-size: 5rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empty-cart-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.empty-cart-content p {
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}




/* Checkout Page Styles */
.checkout-page {
    padding: 100px 0 40px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content h3 i {
    color: #e74c3c;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover,
.close:focus {
    color: #e74c3c;
    text-decoration: none;
}

.modal .form-group {
    margin-bottom: 1.5rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.modal .form-group input,
.modal .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.modal .form-group input::placeholder,
.modal .form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.modal .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
}

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

.notification.error {
    background: #e74c3c;
}

.notification i {
    font-size: 1.2rem;
}

/* 404 Error Page Styles */
.error-page {
    padding: 120px 0 80px;
    background: #2c3e50;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.error-animation {
    position: relative;
    margin-bottom: 3rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.error-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.error-actions .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.error-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.error-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-suggestions h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.error-suggestions li {
    margin: 0;
}

.error-suggestions a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-suggestions a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-icon {
        font-size: 2rem;
    }
    
    .error-content h1 {
        font-size: 2rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .error-suggestions ul {
        grid-template-columns: 1fr;
    }
}

/* Cart Page Styles */
.cart-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cart-header h1 i {
    color: #e74c3c;
    font-size: 2rem;
}

.cart-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    align-items: center;
}

.cart-item:hover {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cart-item-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.cart-item-specs .spec {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid #e9ecef;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    text-align: right;
}

.item-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.item-unit-price {
    font-size: 0.9rem;
    color: #666;
}

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

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cart-summary-section {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.cart-summary-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
}

.cart-summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-summary-card h3 i {
    color: #e74c3c;
}

.summary-lines {
    margin-bottom: 2rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.summary-line:last-child {
    border-bottom: none;
}

.summary-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px solid #e74c3c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-line.total span:first-child {
    color: #2c3e50;
    font-weight: 700;
}

.summary-line.total span:last-child {
    color: #e74c3c;
    font-weight: 800;
    font-size: 1.3rem;
}

.summary-line .free {
    color: #27ae60;
    font-weight: 600;
}

/* Summary total értékek láthatósága */
.cart-summary-card .summary-line.total span:last-child {
    color: #e74c3c !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
}

.cart-summary-card .summary-line span {
    color: #2c3e50 !important;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkout-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.continue-shopping {
    background: transparent;
    color: #666;
    padding: 1rem 2rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    background: #f8f9fa;
    border-color: #666;
    color: #2c3e50;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.trust-badge i {
    color: #27ae60;
    font-size: 1.1rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 1rem;
}

.empty-cart h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.empty-cart p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-items {
        order: 1;
    }
    
    .cart-summary-section {
        position: static;
        order: 2;
    }
    
    .cart-items {
        padding: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-item-details {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .cart-item-price {
        text-align: left;
        margin-top: 1rem;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .cart-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-header h1 i {
        font-size: 1.5rem;
    }
    
    .cart-actions {
        gap: 0.75rem;
    }
    
    .checkout-btn,
    .continue-shopping {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.checkout-header h1 i {
    color: #e74c3c;
    margin-right: 0;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step i {
    font-size: 1.5rem;
    color: #bdc3c7;
}

.step span {
    font-weight: 500;
    color: #7f8c8d;
}

.step.completed i {
    color: #27ae60;
}

.step.active {
    background: #e74c3c;
    color: white;
}

.step.active i,
.step.active span {
    color: white;
}

/* Desktop checkout steps - egy sorban */
@media (min-width: 768px) {
    .checkout-header h1 {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }
    
    .checkout-header h1 {
        display: none !important;
    }
    
    .checkout-steps {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 2rem !important;
        max-width: 700px !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .step {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 1rem !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
    }
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.checkout-form-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #e74c3c;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.payment-card i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-name {
    font-weight: 600;
    color: #2c3e50;
}

.payment-desc {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e74c3c;
    border-color: #e74c3c;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.checkout-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Desktop checkout gomb megjelenítése */
.mobile-checkout-submit {
    display: none;
}

.checkout-summary {
    position: sticky;
    top: 100px;
    max-width: 100%;
    overflow: hidden;
    margin-top: 0;
    min-width: 0;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
    max-width: 100%;
    overflow: hidden;
    align-items: center;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-details {
    flex: 1;
    margin-right: 1rem;
}

.checkout-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.checkout-item-price {
    text-align: right;
    min-width: 120px;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    font-size: 1rem;
    color: #2c3e50 !important;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.checkout-item-specs {
    font-size: 0.9rem;
    color: #7f8c8d !important;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.checkout-item-specs strong {
    color: #2c3e50 !important;
    font-weight: 600;
}

.checkout-item-quantity {
    font-size: 0.9rem;
    color: #2c3e50 !important;
    font-weight: 600;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.checkout-item-price {
    display: flex;
    align-items: center;
}

.checkout-item-total {
    font-weight: 700 !important;
    color: #e74c3c !important;
    font-size: 1.1rem;
}

.summary-totals {
    margin-top: 1rem;
}

.summary-totals .summary-line {
    color: #2c3e50 !important;
    font-weight: 500;
}

.summary-totals .summary-line span {
    color: #2c3e50 !important;
    font-weight: 600;
}

.summary-totals .summary-line.total {
    color: #2c3e50 !important;
    font-weight: 700 !important;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    border: 2px solid #e74c3c;
}

.summary-totals .summary-line.total span {
    color: #e74c3c !important;
    font-weight: 800 !important;
    font-size: 1.2rem;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.security-item i {
    color: #27ae60;
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal h3 {
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    align-items: unset !important;
    gap: unset !important;
    font-size: 1.5rem !important;
}

.success-modal p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

.notification.info {
    background: #3498db;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive for Cart and Checkout */
@media (max-width: 768px) {
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    /* Kalkulátor szekció méretválasztás mobil */
    .product-details .calculator-section .size-label {
        font-size: 1.5rem !important;
        color: white !important;
        font-weight: 700 !important;
    }
    
    /* EXTRA SPECIFIKUS KALKULÁTOR GOMB STÍLUS MOBILON */
    .product-details .calculator-section .add-to-cart-calculator-btn {
        background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
        background-image: linear-gradient(135deg, #e74c3c, #c0392b) !important;
        border: none !important;
        color: white !important;
        font-weight: 700 !important;
        padding: 1.2rem 2rem !important;
        border-radius: 15px !important;
        font-size: 1.1rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3) !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }
    
    .product-details .calculator-section .add-to-cart-calculator-btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4) !important;
    }
    
    .product-details .calculator-section .add-to-cart-calculator-btn:active {
        transform: translateY(-1px) !important;
    }
    
    /* Notification mobil stílusok */
    .notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
        max-width: none !important;
        width: auto !important;
    }
    
    /* Calculator section mobil külső padding csökkentése */
    .product-details .calculator-section {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    /* Product details mobil padding csökkentése */
    .product-details {
        padding: 1rem !important;
    }
    
    /* Checkout form mobil középre helyezés */
    .checkout-form-section {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .checkout-form {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    /* Checkbox label mobil javítás */
    .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .checkbox-label a {
        display: inline !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        flex-shrink: 0 !important;
        margin-top: 0.1rem !important;
    }
    
    /* Checkout oldal mobil layout javítás */
    .checkout-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        display: grid !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .checkout-form-section {
        order: 1 !important;
        padding: 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .checkout-summary {
        order: 2 !important;
        position: static !important;
        top: auto !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin-top: 1rem !important;
        display: block !important;
    }
    
    .summary-card {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .checkout-item {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 0.75rem 0 !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .checkout-item-image {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-image img {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
    }
    
    .checkout-item-details {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .checkout-item-details h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .checkout-item-details p {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
        text-align: center !important;
    }
    
    /* Szín és méret címkék középre helyezése mobilon - erősebb selector */
    .checkout-item-details div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Alternatív selector a szín/méret címkékhez */
    .checkout-item-details > div {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Erősebb selector inline stílusok felülírásához */
    .checkout-item-details div[style*="gap: 1rem"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Minden div a checkout-item-details-ben */
    .checkout-item-details div {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-quantity {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0.5rem 0 !important;
    }
    
    .checkout-item-price {
        text-align: center !important;
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
}

/* GLOBÁLIS MOBIL LAYOUT JAVÍTÁSOK */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Checkout page globális mobil javítás */
    .checkout-page {
        padding: 80px 0 20px !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .checkout-page .container {
        padding: 0 0.5rem !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Checkout summary mobil megjelenítés javítás */
    .checkout-summary {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    .summary-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Csak az iframe-eket javítjuk */
    .hero-video-overlay iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Hero section mobil javítás */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .hero-right {
        order: 2 !important;
        margin-top: 2rem !important;
    }
    
    .hero-image {
        display: flex !important;
        justify-content: center !important;
    }
    
    .hero-left {
        order: 1 !important;
        text-align: center !important;
    }
    
    .hero-text {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    /* Checkbox label globális mobil javítás */
    .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    .checkbox-label a {
        display: inline !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        flex-shrink: 0 !important;
        margin-top: 0.1rem !important;
    }
    
    /* Checkout oldal globális mobil layout javítás */
    .checkout-content {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem !important;
        display: grid !important;
        width: 100% !important;
    }
    
    .checkout-form-section {
        order: 1 !important;
        padding: 0.75rem !important;
        margin-bottom: 0 !important;
    }
    
    .checkout-summary {
        order: 2 !important;
        position: static !important;
        top: auto !important;
        margin-top: 0.75rem !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .summary-card {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0.75rem !important;
        margin: 0 !important;
    }
    
    .checkout-item {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .checkout-item-image {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-image img {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto !important;
    }
    
    .checkout-item-details {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .checkout-item-details h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
        text-align: center !important;
    }
    
    .checkout-item-details p {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
        text-align: center !important;
    }
    
    /* Szín és méret címkék középre helyezése mobilon - erősebb selector */
    .checkout-item-details div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Alternatív selector a szín/méret címkékhez */
    .checkout-item-details > div {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Erősebb selector inline stílusok felülírásához */
    .checkout-item-details div[style*="gap: 1rem"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Minden div a checkout-item-details-ben */
    .checkout-item-details div {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-quantity {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0.5rem 0 !important;
    }
    
    .checkout-item-price {
        text-align: center !important;
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .checkout-steps {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .checkout-submit {
        margin-top: 2rem !important;
        padding: 1.2rem !important;
        font-size: 1.1rem !important;
    }
    
    /* Mobil checkout gomb megjelenítése/elrejtése */
    .mobile-checkout-submit {
        display: block !important;
        width: 100% !important;
        margin-top: 2rem !important;
        padding: 1.2rem !important;
        font-size: 1.1rem !important;
    }
    
    .checkout-form-section .checkout-submit {
        display: none !important;
    }
}

/* Success Modal Styling */
.success-modal {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    margin: 10% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal h3 {
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    align-items: unset !important;
    gap: unset !important;
}

.success-modal p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.success-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.success-actions .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Checkout total - egyszerű stílus */
#checkoutTotal {
    color: #e74c3c !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Checkout summary total sor - specifikus override */
.checkout-summary .summary-line.total {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f8f9fa !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    margin-top: 1rem !important;
    border: 2px solid #e74c3c !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.checkout-summary .summary-line.total span:last-child {
    color: #e74c3c !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
}
    
    /* Mobil checkout lépések - egymás mellett */
    .checkout-steps {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        justify-content: space-between !important;
    }
    
    .step {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 0.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .step i {
        font-size: 1.2rem !important;
    }
    
    .step span {
        font-size: 0.8rem !important;
        text-align: center !important;
    }
}

/* ===== ÚJ KOSÁR OLDAL STÍLUSOK ===== */

/* Main content layout */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Page header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Cart wrapper */
.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cart section */
.cart-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Cart items container */
.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cart item */
.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

.cart-item:hover::before {
    opacity: 1;
}

/* Item image */
.item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .item-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
    background: #e9ecef;
}

/* Item details */
.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.item-specs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.spec {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-color {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.spec-size {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.item-price-info {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.unit-price {
    font-weight: 500;
}

/* Item quantity */
.item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    color: #6c757d;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.05);
}

.qty-decrease {
    border-radius: 8px 0 0 8px;
}

.qty-increase {
    border-radius: 0 8px 8px 0;
}

.qty-display {
    width: 60px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1rem;
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
}

/* Item total */
.item-total {
    text-align: right;
    min-width: 140px;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.75rem;
}

.remove-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    width: fit-content;
}

.remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* Empty cart state */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-cart h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.empty-cart p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Cart summary */
.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 1rem;
}

.summary-line:last-child {
    border-bottom: none;
}

.summary-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    margin: 1rem -1rem -1rem -1rem;
    padding: 1.5rem 1rem;
    border-radius: 0 0 16px 16px;
    border-top: 3px solid #e74c3c;
}

.free {
    color: #27ae60;
    font-weight: 600;
}

/* Summary actions */
.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-checkout {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: white;
    text-decoration: none;
}

.btn-continue {
    background: #6c757d;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-continue:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f3f4;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .item-total {
        text-align: center;
        min-width: auto;
    }
    
    .remove-btn {
        margin: 0 auto;
    }
    
    .summary-actions {
        gap: 0.75rem;
    }
    
    .btn-checkout,
    .btn-continue {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* GLOBÁLIS MOBIL KÖZÉPRE HELYEZÉS CHECKOUT ITEM-EKHEZ */
@media (max-width: 768px) {
    /* Szín és méret címkék középre helyezése - erősebb selector */
    .checkout-item-details div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-details > div {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .checkout-item-details div {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Span elemek középre helyezése */
    .checkout-item-details div span {
        margin: 0 auto !important;
    }
    
    /* SPECIFIKUS SELECTOR a megadott útvonalhoz */
    #checkoutItems > div > div:nth-child(2) > div:nth-child(2) {
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
    }
    
    /* Még specifikusabb selector inline stílusok felülírásához */
    #checkoutItems > div > div:nth-child(2) > div:nth-child(2)[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* MINDEN lehetséges kombináció a szín/méret címkékhez */
    #checkoutItems div[style*="gap: 1rem"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    #checkoutItems div[style*="margin-bottom: 0.5rem"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* JavaScript által generált elemek */
    #checkoutItems .checkout-item-details div {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Mennyiség kezelés középre helyezése */
    #checkoutItems > div > div:nth-child(4) > div {
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
    }
    
    /* Törlés gomb középre helyezése */
    #checkoutItems > div > div:nth-child(4) > button {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Hero jobb oldali rész elrejtése mobilon */
    body > section.hero > div.hero-content > div.hero-right {
        display: none !important;
    }
    
    /* Hero padding módosítása mobilon */
    body > section.hero {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Kosárba teszem gomb szöveg mérete mobilon */
    .add-to-cart-calculator-btn span {
        font-size: 0.9rem !important;
    }
}

/* Vélemények szekció padding */
#velemenyek > div.container > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* 5. dot elrejtése gépen */
@media (min-width: 769px) {
    .review-dots .dot:nth-child(5) {
        display: none !important;
    }
}

