/* Modern Banner Slider Styles */
/* SzÃ­nvilÃ¡g: fehÃ©r, narancssÃ¡rga (#FF6B35), szÃ¼rke (#6C757D) */

/* Accessibility - Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Liquid Glass Effect Variables - Enhanced Glassy Effect */
:root {
    /* Inner shadow - Brighter and more intense */
    --glass-shadow-offset: 0;
    --glass-shadow-blur: 25px;
    --glass-shadow-spread: -8px;
    --glass-shadow-color: rgba(255, 255, 255, 0.9);

    /* Painted glass - Less transparent for more glass-like appearance (10% less transparent) */
    --glass-tint-color: 255, 255, 255;
    --glass-tint-opacity: 0.15;

    /* Background frost - Lighter for more glass-like appearance */
    --glass-frost-blur: 3px;

    /* SVG noise/distortion - More intense */
    --glass-noise-frequency: 0.012;
    --glass-distortion-strength: 95;

    /* Outer shadow blur - More pronounced */
    --glass-outer-shadow-blur: 32px;

    /* Additional sparkle effect - More prominent (10% less transparent) */
    --glass-sparkle-blur: 2px;
    --glass-sparkle-opacity: 0.7;
}

.modern-banner-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    box-sizing: border-box;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-speed, 1.2s) ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateX(-20px) scale(0.98);
    transition: transform var(--transition-speed, 1.2s) ease-in-out;
}

.banner-slide.active .banner-image {
    transform: translateX(0) scale(1);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner content link styling */
.banner-content-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

/* Navigation buttons higher z-index */
.banner-navigation {
    z-index: 10;
}

.nav-btn {
    z-index: 11;
    position: relative;
}

/* Enable image clicking on desktop */
@media (min-width: 769px) {
    .banner-image a {
        pointer-events: auto;
        cursor: pointer;
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.banner-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 95%;
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    /* border: 2px solid rgba(255, 107, 53, 0.3); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Asztali gÃ©peken a text-overlay megjelenÃ­tÃ©se - KÃVÃœL a banner-container-en */
@media (min-width: 769px) {
    .banner-text-overlay {
        display: block;
        position: static;
        background: rgb(0 0 0 / 66%);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        z-index: 3;
        margin-top: 20px;
        transform: none;
        left: auto;
        bottom: auto;
        max-width: 100%;
    }
    
    /* CÃ­m elrejtÃ©se a text-overlay-ben asztali gÃ©pen (mÃ¡r fent van) */
    .banner-text-overlay .banner-title {
        display: none;
    }
}

/* Mobilon a text-overlay elrejtÃ©se (kÃ¼lÃ¶n mobil leÃ­rÃ¡s van) */
@media (max-width: 768px) {
    .banner-text-overlay {
        display: none;
    }
}

/* Asztali Ã¡r a szÃ¶veg overlay-ben (jobb oldalon, 3x nagyobb) */
.banner-price-desktop {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Asztali gÃ©peken csak a jobb felsÅ‘ sarokban lÃ©vÅ‘ Ã¡r */
@media (min-width: 769px) {
    .banner-price-desktop {
        display: none;
    }
}

.price-desktop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.price-desktop-container .price-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

.price-desktop-container .price-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-desktop-container .price-original {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.price-desktop-container .price-sale {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Banner title a kÃ©p fÃ¶lÃ¶tt (asztali gÃ©peken) */
.banner-title-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    margin: 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    word-wrap: break-word;
    display: inline-block;
    width: auto;
    max-width: calc(100% - 310px);
}

.banner-title-overlay a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-title-overlay a:hover {
    color: #FFE5D9;
}

/* Csak asztali gÃ©peken jelenjen meg */
@media (max-width: 768px) {
    .banner-title-overlay {
        display: none;
    }
}

.banner-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-title a:hover {
    color: #FFE5D9;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.95;
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-description a {
    color: #ffffff;
    text-decoration: none;
}

.banner-description a:hover {
    color: #FFE5D9;
}

/* LIQUID GLASS ÁR DESIGN - iOS 26 vízcsepp effektus */
.banner-price-bottom-desktop {
    position: absolute;
    top: 65%;
    right: 50px;
    transform: translateY(-50%) translateX(10px) scale(1.02);
    z-index: 2;
    width: 220px;
    height: 220px;
    max-width: 28vw;
    max-height: 28vw;
    border-radius: 28px;
    cursor: pointer;
    isolation: isolate;
    touch-action: none;
    box-shadow: 0px 6px var(--glass-outer-shadow-blur) rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed, 1.2s) ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

/* Finom slide effektus a glass elemnek */
.banner-slide.active .banner-price-bottom-desktop {
    transform: translateY(-50%) translateX(0) scale(1);
}

/* Liquid Glass Effect Pseudo-elements */
.banner-price-bottom-desktop::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 28px;
    box-shadow:
        inset var(--glass-shadow-offset) var(--glass-shadow-offset) var(--glass-shadow-blur) var(--glass-shadow-spread) var(--glass-shadow-color),
        /* Extra sparkle highlights */
        inset -10px -10px 20px rgba(255, 255, 255, 0.4),
        inset 10px 10px 20px rgba(255, 255, 255, 0.2);
    background:
        /* Multiple gradient layers for glass depth - more sparkly */
        linear-gradient(135deg,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 1.2)) 0%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 1.2)) 100%
        ),
        linear-gradient(45deg,
            transparent 35%,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 0.8)) 50%,
            transparent 65%
        ),
        linear-gradient(90deg,
            transparent 45%,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 0.4)) 50%,
            transparent 55%
        ),
        rgba(var(--glass-tint-color), var(--glass-tint-opacity));
}

.banner-price-bottom-desktop::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 28px;
    backdrop-filter: blur(var(--glass-frost-blur));
    filter: url(#liquid-glass-distortion);
    isolation: isolate;
    -webkit-backdrop-filter: blur(var(--glass-frost-blur));
    -webkit-filter: url("#liquid-glass-distortion");
}

.banner-price-bottom-desktop:hover {
    transform: translateY(-50%) scale(1.14);
    box-shadow:
        0px 12px calc(var(--glass-outer-shadow-blur) * 1.8) rgba(0, 0, 0, 0.4),
        0px 0px 40px rgba(255, 255, 255, 0.2);
}

.banner-price-bottom-desktop:hover::before {
    box-shadow:
        inset var(--glass-shadow-offset) var(--glass-shadow-offset) calc(var(--glass-shadow-blur) * 1.4) var(--glass-shadow-spread) rgba(255, 255, 255, 0.95),
        /* Enhanced sparkle highlights on hover */
        inset -15px -15px 30px rgba(255, 255, 255, 0.6),
        inset 15px 15px 30px rgba(255, 255, 255, 0.3),
        inset 0px 0px 50px rgba(255, 255, 255, 0.4);
    background:
        /* More intense gradients on hover */
        linear-gradient(135deg,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 1.5)) 0%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 1.5)) 100%
        ),
        linear-gradient(45deg,
            transparent 35%,
            rgba(255, 255, 255, calc(var(--glass-sparkle-opacity) * 0.8)) 50%,
            transparent 65%
        ),
        rgba(var(--glass-tint-color), calc(var(--glass-tint-opacity) * 0.8));
}

.banner-price-bottom-desktop:hover::after {
    backdrop-filter: blur(calc(var(--glass-frost-blur) * 1.3)) saturate(1.2);
    -webkit-backdrop-filter: blur(calc(var(--glass-frost-blur) * 1.3)) saturate(1.2);
}

/* MOBIL ÃR DESIGN - Szolid kis div a kÃ©p aljÃ¡n */
.banner-price-mobile-bottom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgb(255 255 255 / 24%) 0%, rgb(255 255 255 / 0%) 100%), rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 24px 36px;
    border-radius: 36px;
    z-index: 3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: none;
}

/* Csak mobilon jelenjen meg */
@media (max-width: 768px) {
    .banner-price-mobile-bottom {
        display: block;
    }
    
    /* Asztali Ã¡r elrejtÃ©se mobilon */
    .banner-price-bottom-desktop {
        display: none;
    }
    
    /* Mobil Ã¡r megjelenÃ­tÃ©se */
    .banner-price-mobile-bottom {
        display: block;
    }
}

.price-mobile-bottom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.price-mobile-bottom-discount {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFE;
    background: rgba(255, 107, 53, 0.2);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.price-mobile-bottom-original {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    text-decoration-thickness: 3px;
    font-weight: 600;
    white-space: nowrap;
}

.price-mobile-bottom-sale {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FF6B35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: rgba(255, 107, 53, 0.15);
    padding: 8px 24px;
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 53, 0.4);
}

.price-mobile-bottom-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    position: relative;
    background: transparent;
    text-align: center;
}

.price-bottom-original {
    font-size: 1.6rem;
    color: #666666;
    text-decoration: line-through;
    text-decoration-color: #999999;
    text-decoration-thickness: 3px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.price-bottom-sale {
    font-size: 3.2rem;
    font-weight: 900;
    color: #FF6B35;
    letter-spacing: 0.5px;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    line-height: 1;
}

.price-bottom-savings {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5016;
    background: rgba(45, 80, 22, 0.15);
    padding: 8px 16px;
    border-radius: 15px;
    border: 2px solid rgba(45, 80, 22, 0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}


.price-corner-sale::before {
    content: "";
    display: none;
}

@keyframes fireGlow {
    0% { opacity: 0.8; transform: translateY(-50%) scale(1); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.price-bottom-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: #333333;
    letter-spacing: 0.5px;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.price-corner-value::before {
    content: "";
    display: none;
}

@keyframes moneyGlow {
    0% { opacity: 0.8; transform: translateY(-50%) scale(1); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

/* Ãr a szÃ¶veg overlay-ben (mobilon) */
.banner-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 10px 20px;
    border-radius: 20px;
    margin: 15px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-original {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.price-sale {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-readmore {
    margin-top: 25px;
}

.readmore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.readmore-btn:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Navigation */
.banner-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    opacity: 0.7;
}

.nav-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.6);
}

.nav-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.nav-btn:hover svg {
    transform: scale(1.1);
}

/* Controls - eltÃ¡volÃ­tva a felsÅ‘ jobb oldali karika */

/* Banner dots navigation - REMOVED */
.banner-dots {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    gap: 8px;
    box-sizing: border-box;
}

.dot {
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.dot.active {
    display: none;
    background: #FF6B35;
    border-color: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Banner slide link styling */
.banner-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Enable banner content clicking on all devices - merged into main definition above */

/* Enable image clicking on mobile and tablet */
@media (max-width: 768px) {
    .banner-image a {
        pointer-events: auto;
        cursor: pointer;
    }
}

/* Asztali szÃ¶veg a banner alatt */
.banner-desktop-text {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5px 5px;
    margin-top: 0;
    border-top: 3px solid #FF6B35;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    /* Reserve height to avoid layout shift when text length varies */
    min-height: 90px;
}

.banner-desktop-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 50%, #FF6B35 100%); */
}

.desktop-text-slide {
    display: none;
    text-align: center;
}

.desktop-text-slide.active {
    display: block;
}

/* Csak asztali gÃ©peken jelenjen meg */
@media (min-width: 769px) {
    .banner-desktop-text {
        display: block;
    }
}

/* Mobil szÃ¶veg a banner alatt */
.banner-mobile-text {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 20px;
    margin-top: 0;
    border-top: 3px solid #FF6B35;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    /* Reserve stable space under slider on mobile */
    min-height: 110px;
}

.banner-mobile-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 50%, #FF6B35 100%);
}

.mobile-text-slide {
    display: none;
    text-align: center;
}

.mobile-text-slide.active {
    display: block;
}

.mobile-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-title a:hover {
    color: #FF6B35;
}

.mobile-description {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #FF6B35;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.mobile-description a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-description a:hover {
    color: #FF6B35;
}

.mobile-readmore {
    margin-top: 15px;
}

.mobile-readmore .readmore-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.mobile-readmore .readmore-btn:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        height: 400px;
    }
    
    /* Asztali Ã¡r elrejtÃ©se mobilon */
    .banner-price-bottom-desktop {
        display: none !important;
    }
    
    /* Asztali Ã¡r a szÃ¶veg overlay-ben elrejtÃ©se mobilon */
    .banner-price-desktop {
        display: none !important;
    }
    
    /* Banner title overlay elrejtÃ©se mobilon */
    .banner-title-overlay {
        display: none !important;
    }
    
    /* Mobil szÃ¶veg megjelenÃ­tÃ©se */
    .banner-mobile-text {
        display: block;
        min-height: auto;
        overflow: visible;
    }
    
    /* Mobil Ã¡r megjelenÃ­tÃ©se */
    .banner-price-mobile-bottom {
        display: block;
    }
    
    /* Nyilak elrejtÃ©se mobilon */
    .banner-navigation {
        display: none;
    }
    
    /* TermÃ©k leÃ­rÃ¡s elrejtÃ©se mobilon a banner kÃ©prÅ‘l */
    .banner-description {
        display: none;
    }
    
    /* Teljes szÃ¶veg overlay elrejtÃ©se mobilon */
    .banner-text-overlay {
        display: none;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner-text-overlay {
        padding: 20px;
        max-width: 95%;
        bottom: 50px;
    }
    
    .banner-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .banner-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.4;
        display: block;
    }
    
    .banner-price {
        padding: 6px 12px;
        margin: 10px 0;
    }
    
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    /* Mobil Ã¡r mÃ©rete */
    .price-mobile-bottom-sale,
    .price-mobile-bottom-value {
        font-size: 1.2rem;
    }
    
    .price-mobile-bottom-original {
        font-size: 0.9rem;
    }
    
    .banner-price-mobile-bottom {
        padding: 8px 15px;
        bottom: 15px;
        right: 15px;
    }
    
    .readmore-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .banner-navigation {
        padding: 0 15px;
    }
    
    /* Controls eltÃ¡volÃ­tva */
    
    .banner-dots {
        display: none;
    }
    
    .dot {
        display: none;
    }
    
    .dot.active {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 350px;
    }
    
    /* Mobil szÃ¶veg kisebb mÃ©rete */
    .banner-mobile-text {
        padding: 15px;
    }
    
    .mobile-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .mobile-description {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding: 18px;
        line-height: 1.6;
    }
    
    .mobile-readmore .readmore-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .banner-content {
        padding: 15px;
    }
    
    .banner-text-overlay {
        padding: 15px;
        bottom: 40px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .banner-description {
        font-size: 1.2rem;
        margin-bottom: 18px;
        line-height: 1.4;
        display: block;
    }
    
    .banner-price {
        padding: 8px 16px;
        margin: 12px 0;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    /* Mobil Ã¡r mÃ©rete kis kÃ©pernyÅ‘n */
    .price-mobile-bottom-sale,
    .price-mobile-bottom-value {
        font-size: 1.2rem;
    }
    
    .price-mobile-bottom-original {
        font-size: 0.9rem;
    }
    
    .banner-price-mobile-bottom {
        padding: 5px 12px;
        bottom: 15px;
        right: 12px;
    }
    
    .readmore-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .banner-navigation {
        padding: 0 10px;
    }
    
    /* Controls eltÃ¡volÃ­tva */
    
    .banner-dots {
        display: none;
    }
    
    .dot {
        display: none;
    }
    
    .dot.active {
        display: none;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-slide.active .banner-text {
    animation: fadeIn 0.8s ease-out;
}

/* Loading state */
.modern-banner-slider.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility improvements */
.nav-btn:focus,
.control-btn:focus,
.dot:focus,
.readmore-btn:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .modern-banner-slider {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .banner-navigation,
    .banner-controls {
        display: none;
    }
    
    .banner-dots {
        display: flex;
        bottom: 8px;
        gap: 3px;
    }
    
    .dot {
        display: none;
    }
    
    .dot.active {
        display: none;
    }
    
    .banner-slide {
        position: static;
        opacity: 1;
        page-break-inside: avoid;
    }
    
    .banner-price-mobile-bottom {
        padding: 6px 12px;
        bottom: 10px;
        right: 10px;
    }
    
    .price-mobile-bottom-sale,
    .price-mobile-bottom-value {
        font-size: 1rem;
    }
    
    .price-mobile-bottom-original {
        font-size: 0.7rem;
    }
}
