/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0071e3;
    --color-primary-hover: #0077ed;
    --color-text: #1d1d1f;
    --color-text-secondary: #6e6e73;
    --color-background: #ffffff;
    --color-background-secondary: #f5f5f7;
    --color-border: #d2d2d7;
    --color-success: #34c759;
    --color-success-hover: #30b550;
    --color-warning: #ff9500;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Karácsonyi színek - fehér-arany téma */
    --christmas-white: #FAFAFA;
    --christmas-cream: #F8F6F0;
    --christmas-gold: #D4AF37;
    --christmas-gold-light: #FFD700;
    --christmas-gold-dark: #B8860B;
    --christmas-ribbon: #c41e3a;
    --christmas-ribbon-dark: #8b0000;
    --bulb-warm: #FFF5E6;
    --bulb-glow: rgba(255, 215, 0, 0.6);
    --wire-color: #3d3d3d;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   KARÁCSONYI BANNER - Elegáns fehér-arany téma
   ============================================ */

.christmas-banner {
    background: linear-gradient(135deg,
        var(--christmas-white) 0%,
        var(--christmas-cream) 25%,
        #FFF9ED 50%,
        var(--christmas-cream) 75%,
        var(--christmas-white) 100%
    );
    padding: var(--spacing-lg) 0;
    padding-top: calc(var(--spacing-lg) + 30px);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
    z-index: 200;
}

/* Arany shimmer háttér overlay */
.christmas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.08) 50%,
        transparent 100%
    );
    animation: goldenShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes goldenShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Fényfüzér drót SVG */
.string-lights-wire {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

/* Fényfüzér izzók container */
.string-lights {
    position: absolute;
    top: 5px;
    left: 5%;
    right: 5%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 11;
    pointer-events: none;
}

/* Egyedi izzó stílus */
.bulb {
    --delay: 0s;
    --duration: 3s;
    width: 12px;
    height: 18px;
    position: relative;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(
        180deg,
        var(--bulb-warm) 0%,
        #FFE4B5 50%,
        #DEB887 100%
    );
    box-shadow:
        0 0 10px 3px var(--bulb-glow),
        0 0 25px 6px rgba(255, 215, 0, 0.3),
        inset 0 -4px 8px rgba(139, 69, 19, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.6);
    animation: bulbGlow var(--duration) ease-in-out var(--delay) infinite;
    transform-origin: top center;
}

/* Izzó foglalat */
.bulb::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 9px;
    background: linear-gradient(180deg, #5a5a5a 0%, var(--wire-color) 100%);
    border-radius: 2px 2px 0 0;
}

/* Drót csatlakozás */
.bulb::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 5px;
    background: var(--wire-color);
}

/* Izzó pozíciók - enyhe függőleges variáció a lógáshoz */
.bulb:nth-child(1) { transform: translateY(5px); }
.bulb:nth-child(2) { transform: translateY(12px); }
.bulb:nth-child(3) { transform: translateY(18px); }
.bulb:nth-child(4) { transform: translateY(22px); }
.bulb:nth-child(5) { transform: translateY(24px); }
.bulb:nth-child(6) { transform: translateY(23px); }
.bulb:nth-child(7) { transform: translateY(20px); }
.bulb:nth-child(8) { transform: translateY(15px); }
.bulb:nth-child(9) { transform: translateY(10px); }
.bulb:nth-child(10) { transform: translateY(14px); }
.bulb:nth-child(11) { transform: translateY(19px); }
.bulb:nth-child(12) { transform: translateY(8px); }

/* Realisztikus izzó villogás animáció */
@keyframes bulbGlow {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
        box-shadow:
            0 0 10px 3px var(--bulb-glow),
            0 0 25px 6px rgba(255, 215, 0, 0.3),
            inset 0 -4px 8px rgba(139, 69, 19, 0.2),
            inset 0 4px 8px rgba(255, 255, 255, 0.6);
    }
    15% {
        opacity: 1;
        filter: brightness(1.2);
        box-shadow:
            0 0 15px 5px var(--bulb-glow),
            0 0 35px 10px rgba(255, 215, 0, 0.5),
            inset 0 -4px 8px rgba(139, 69, 19, 0.15),
            inset 0 4px 8px rgba(255, 255, 255, 0.7);
    }
    40% {
        opacity: 0.6;
        filter: brightness(0.7);
        box-shadow:
            0 0 5px 2px rgba(255, 215, 0, 0.3),
            0 0 12px 4px rgba(255, 215, 0, 0.15),
            inset 0 -4px 8px rgba(139, 69, 19, 0.3),
            inset 0 4px 8px rgba(255, 255, 255, 0.3);
    }
    55% {
        opacity: 0.85;
        filter: brightness(0.9);
    }
    70% {
        opacity: 1;
        filter: brightness(1.15);
        box-shadow:
            0 0 12px 4px var(--bulb-glow),
            0 0 30px 8px rgba(255, 215, 0, 0.4),
            inset 0 -4px 8px rgba(139, 69, 19, 0.2),
            inset 0 4px 8px rgba(255, 255, 255, 0.65);
    }
    85% {
        opacity: 0.75;
        filter: brightness(0.8);
    }
}

/* Csillogó részecskék container */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Egyedi sparkle elem */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(
        circle,
        var(--christmas-gold-light) 0%,
        rgba(255, 215, 0, 0.6) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: sparkleFloat 6s ease-in-out infinite;
}

/* Sparkle csillag alakú sugarak */
.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        var(--christmas-gold-light),
        transparent
    );
}

.sparkle::before {
    width: 2px;
    height: 16px;
}

.sparkle::after {
    width: 16px;
    height: 2px;
}

/* Sparkle pozíciók és késleltetések */
.sparkle:nth-child(1) {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.sparkle:nth-child(2) {
    top: 65%;
    left: 88%;
    animation-delay: 1.2s;
    animation-duration: 6s;
}

.sparkle:nth-child(3) {
    top: 35%;
    left: 78%;
    animation-delay: 2.4s;
    animation-duration: 5.5s;
}

.sparkle:nth-child(4) {
    top: 75%;
    left: 18%;
    animation-delay: 0.8s;
    animation-duration: 6.5s;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1.8s;
    animation-duration: 5.8s;
}

/* Sparkle animáció - twinkle effekt */
@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    10% {
        opacity: 0.3;
    }
    30% {
        opacity: 1;
        transform: scale(1) rotate(90deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.8) rotate(180deg);
    }
    70% {
        opacity: 1;
        transform: scale(1.1) rotate(270deg);
    }
    90% {
        opacity: 0.3;
    }
}

/* ============================================
   RÉNSZARVAS + SZÁN ANIMÁCIÓ
   ============================================ */

/* Szán container - csak a christmas-banner sávon belül marad */
.sleigh-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 90px;
    overflow: visible;
    pointer-events: none;
    z-index: 10;
}

/* Szán SVG animáció */
.sleigh-animation {
    position: absolute;
    width: 280px;
    height: 85px;
    left: -300px;
    animation: sleighRide 18s ease-in-out infinite;
    animation-delay: 2s;
    --random-offset: 0px; /* JS-sel beállítható */
}

/* Főanimáció - követi a fényfüzér ívét */
@keyframes sleighRide {
    0% {
        left: -300px;
        transform: translateY(0px);
    }
    12.5% {
        transform: translateY(15px);
    }
    25% {
        transform: translateY(20px);
    }
    37.5% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(3px);
    }
    62.5% {
        transform: translateY(12px);
    }
    75% {
        transform: translateY(18px);
    }
    87.5% {
        transform: translateY(6px);
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(0px);
    }
}

/* Rénszarvas láb animáció - futás */
.leg-front-group {
    transform-origin: 232px 58px;
    animation: legRunFront 0.35s ease-in-out infinite;
}

.leg-front-group-2 {
    transform-origin: 228px 58px;
    animation: legRunFront 0.35s ease-in-out infinite 0.175s;
}

.leg-back-group {
    transform-origin: 210px 58px;
    animation: legRunBack 0.35s ease-in-out infinite;
}

.leg-back-group-2 {
    transform-origin: 205px 58px;
    animation: legRunBack 0.35s ease-in-out infinite 0.175s;
}

@keyframes legRunFront {
    0%, 100% { transform: rotate(-12deg); }
    50% { transform: rotate(12deg); }
}

@keyframes legRunBack {
    0%, 100% { transform: rotate(12deg); }
    50% { transform: rotate(-12deg); }
}

/* Rudolf piros orr pulzálás */
.rudolf-nose {
    animation: noseGlow 1s ease-in-out infinite;
}

@keyframes noseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px #c41e3a);
    }
    50% {
        filter: drop-shadow(0 0 8px #ff0000) drop-shadow(0 0 12px #ff6666);
    }
}

/* Banner content - fehér üveghatás arany kerettel */
.christmas-banner .banner-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 8px 32px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    text-align: center;
}

/* ============================================
   BANNER DEKORÁCIÓ - FA + AJÁNDÉKOK
   ============================================ */

.banner-decoration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Nagy karácsonyfa */
.main-christmas-tree {
    width: 140px;
    height: 160px;
    filter: drop-shadow(0 4px 20px rgba(34, 139, 34, 0.4));
    animation: treeFloat 5s ease-in-out infinite;
}

.main-christmas-tree svg {
    width: 100%;
    height: 100%;
}

/* Csillag animáció */
.tree-top-star {
    animation: starTwinkle 2s ease-in-out infinite;
    transform-origin: 60px 18px;
}

@keyframes starTwinkle {
    0%, 100% {
        filter: drop-shadow(0 0 4px #FFD700);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 14px #FFD700) drop-shadow(0 0 24px #FFA500);
        transform: scale(1.15);
    }
}

/* Fa lebegés */
@keyframes treeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(0.3deg);
    }
    50% {
        transform: translateY(-2px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-0.3deg);
    }
}

/* Díszek pulzálás */
.main-christmas-tree .ornament {
    animation: ornamentGlow 3s ease-in-out infinite;
}

.main-christmas-tree .ornament-1 { animation-delay: 0s; }
.main-christmas-tree .ornament-2 { animation-delay: 0.3s; }
.main-christmas-tree .ornament-3 { animation-delay: 0.6s; }
.main-christmas-tree .ornament-4 { animation-delay: 0.9s; }
.main-christmas-tree .ornament-5 { animation-delay: 1.2s; }
.main-christmas-tree .ornament-6 { animation-delay: 1.5s; }
.main-christmas-tree .ornament-7 { animation-delay: 1.8s; }
.main-christmas-tree .ornament-8 { animation-delay: 2.1s; }
.main-christmas-tree .ornament-9 { animation-delay: 2.4s; }

@keyframes ornamentGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.4);
        transform: scale(1.15);
    }
}

/* Fényfüzér animáció */
.tree-lights {
    animation: lightsFlicker 1.5s ease-in-out infinite;
}

@keyframes lightsFlicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Ajándékok container */
.tree-gifts {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-top: -15px;
}

/* Ajándékok */
.tree-gift {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.tree-gift svg {
    width: 100%;
    height: 100%;
}

.tree-gift-large {
    width: 50px;
    height: 55px;
    animation: giftBob 3.5s ease-in-out infinite;
}

.tree-gift-medium {
    width: 40px;
    height: 45px;
    animation: giftBob 3s ease-in-out infinite 0.5s;
}

.tree-gift-small {
    width: 32px;
    height: 36px;
    animation: giftBob 4s ease-in-out infinite 1s;
}

@keyframes giftBob {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(1deg);
    }
}

/* Régi gift-box-icon kompatibilitás - már nem használt */
.gift-box-icon {
    display: none;
}

.gift-box-icon svg {
    width: 100%;
    height: 100%;
}

/* Ajándékdoboz alap */
.gift-base {
    fill: url(#goldGradient);
    stroke: var(--christmas-gold-dark);
    stroke-width: 1.5;
}

/* Ajándékdoboz tető */
.gift-lid {
    fill: url(#goldGradientLight);
    stroke: var(--christmas-gold-dark);
    stroke-width: 1.5;
}

.gift-lid-group {
    transform-origin: 50px 42px;
    animation: lidBounce 4s ease-in-out infinite;
}

/* Szalagok - piros kontraszt */
.gift-ribbon-v,
.gift-ribbon-h {
    fill: var(--christmas-ribbon);
    stroke: var(--christmas-ribbon-dark);
    stroke-width: 0.5;
}

/* Masni elemek */
.gift-bow-left,
.gift-bow-right {
    fill: var(--christmas-ribbon);
    stroke: var(--christmas-ribbon-dark);
    stroke-width: 0.5;
}

.gift-bow {
    transform-origin: 50px 28px;
}

.gift-bow-left {
    animation: bowWiggleLeft 3s ease-in-out infinite;
    transform-origin: 38px 28px;
}

.gift-bow-right {
    animation: bowWiggleRight 3s ease-in-out 0.15s infinite;
    transform-origin: 62px 28px;
}

.gift-bow-center {
    fill: var(--christmas-gold-light);
    stroke: var(--christmas-gold-dark);
    stroke-width: 1;
    animation: bowCenterPulse 2s ease-in-out infinite;
}

/* Ajándékdoboz lebegés animáció */
@keyframes giftFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(-1deg);
    }
    50% {
        transform: translateY(-2px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* Tető pattogás animáció */
@keyframes lidBounce {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    20% {
        transform: translateY(-3px) scaleY(1.02);
    }
    40% {
        transform: translateY(0) scaleY(0.98);
    }
    60% {
        transform: translateY(-2px) scaleY(1.01);
    }
    80% {
        transform: translateY(0) scaleY(1);
    }
}

/* Masni mozgás animációk */
@keyframes bowWiggleLeft {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.03);
    }
    50% {
        transform: rotate(2deg) scale(0.98);
    }
    75% {
        transform: rotate(-3deg) scale(1.01);
    }
}

@keyframes bowWiggleRight {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.03);
    }
    50% {
        transform: rotate(-2deg) scale(0.98);
    }
    75% {
        transform: rotate(3deg) scale(1.01);
    }
}

/* Masni közép pulzálás */
@keyframes bowCenterPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        filter: brightness(1.2);
    }
}

/* Banner cím - arany gradient shimmer */
.christmas-banner .banner-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(
        135deg,
        var(--christmas-gold-dark) 0%,
        var(--christmas-gold-light) 25%,
        var(--christmas-gold) 50%,
        var(--christmas-gold-light) 75%,
        var(--christmas-gold-dark) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldTextShimmer 4s ease-in-out infinite;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    position: relative;
}

@keyframes goldTextShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Banner alcím */
.christmas-banner .banner-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #5a5a5a;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.8px;
    animation: subtleFade 4s ease-in-out infinite;
}

@keyframes subtleFade {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

/* Reduced motion - akadálymentesség */
@media (prefers-reduced-motion: reduce) {
    .bulb,
    .gift-box-icon,
    .gift-lid-group,
    .gift-bow-left,
    .gift-bow-right,
    .gift-bow-center,
    .sparkle,
    .christmas-banner .banner-title,
    .christmas-banner .banner-subtitle,
    .christmas-banner::before,
    .sleigh-animation,
    .leg-front-group,
    .leg-front-group-2,
    .leg-back-group,
    .leg-back-group-2,
    .rudolf-nose,
    .main-christmas-tree,
    .tree-top-star,
    .main-christmas-tree .ornament,
    .tree-lights,
    .tree-gift {
        animation: none;
    }

    .bulb {
        opacity: 1;
        filter: brightness(1);
    }

    .sleigh-container {
        display: none;
    }

    .christmas-tree-decoration {
        animation: none;
    }

    .christmas-tree-decoration .tree-star,
    .christmas-tree-decoration .ornament {
        animation: none;
    }
}

/* ============================================
   KARÁCSONYFA DEKORÁCIÓ
   ============================================ */

.christmas-tree-decoration {
    position: absolute;
    top: -55px; /* Kilóg felfelé az előző section elé */
    left: 30px;
    width: 60px;
    height: 75px;
    z-index: 1; /* Alacsonyabb z-index - a termékek mögé kerül, de a section elé lóg */
    pointer-events: none;
    animation: treeFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(34, 139, 34, 0.3));
}

.christmas-tree-decoration svg {
    width: 100%;
    height: 100%;
}

/* Csillag ragyogás */
.christmas-tree-decoration .tree-star {
    animation: starGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px #FFD700);
}

@keyframes starGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px #FFD700);
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFA500);
        opacity: 0.9;
    }
}

/* Díszek pulzálás */
.christmas-tree-decoration .ornament {
    animation: ornamentPulse 3s ease-in-out infinite;
}

.christmas-tree-decoration .ornament:nth-child(odd) {
    animation-delay: 0.5s;
}

.christmas-tree-decoration .ornament:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes ornamentPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

/* Fa enyhe lengés */
@keyframes treeFloat {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(1deg) translateY(-2px);
    }
    75% {
        transform: rotate(-1deg) translateY(2px);
    }
}

/* ============================================
   RANDOM KARÁCSONYI DÍSZEK (PERKS)
   ============================================ */

.christmas-perks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.christmas-perk {
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    animation: perkFloat 8s ease-in-out infinite;
}

.christmas-perk svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Különböző animációk a díszeknek */
.perk-santa {
    animation: perkWobble 4s ease-in-out infinite;
}

.perk-candy-cane {
    animation: perkSwing 3s ease-in-out infinite;
}

.perk-lollipop {
    animation: perkSpin 6s linear infinite;
}

.perk-snowflake {
    animation: perkSnowfall 5s ease-in-out infinite, perkSparkle 2s ease-in-out infinite;
}

.perk-star {
    animation: perkTwinkle 2s ease-in-out infinite;
}

.perk-gift {
    animation: perkBounce 3s ease-in-out infinite;
}

.perk-bell {
    animation: perkRing 2.5s ease-in-out infinite;
}

.perk-holly {
    animation: perkFloat 6s ease-in-out infinite;
}

.perk-stocking {
    animation: perkDangle 4s ease-in-out infinite;
}

.perk-gingerbread {
    animation: perkDance 3s ease-in-out infinite;
}

/* Animációk */
@keyframes perkFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--rotation, 0deg));
    }
}

@keyframes perkWobble {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes perkSwing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes perkSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes perkSnowfall {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
    }
}

@keyframes perkSparkle {
    0%, 100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 3px rgba(135, 206, 235, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(135, 206, 235, 0.8));
    }
}

@keyframes perkTwinkle {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 4px #FFD700);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px #FFD700) drop-shadow(0 0 20px #FFA500);
        transform: scale(1.1);
    }
}

@keyframes perkBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
}

@keyframes perkRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(8deg);
    }
    75% {
        transform: rotate(-8deg);
    }
}

@keyframes perkDangle {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-3px);
    }
}

@keyframes perkDance {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-3px) rotate(-5deg);
    }
    75% {
        transform: translateX(3px) rotate(5deg);
    }
}

/* ============================================
   KARÁCSONYI ANIMÁCIÓK - MOBILE RESPONSIVE
   ============================================ */

/* Tablet - 768px */
@media (max-width: 768px) {
    .sleigh-container {
        top: 40px;
        height: 60px;
    }

    .sleigh-animation {
        width: 220px;
        height: 65px;
        animation-duration: 14s;
    }

    .christmas-tree-decoration {
        width: 50px;
        height: 65px;
        top: -45px;
        left: 20px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .sleigh-container {
        display: none; /* Teljesítmény miatt mobilon elrejtjük */
    }

    .christmas-tree-decoration {
        width: 40px;
        height: 52px;
        top: -35px;
        left: 15px;
    }

    .christmas-tree-decoration .tree-star {
        animation-duration: 3s; /* Lassabb animáció mobilon */
    }

    /* Kevesebb és kisebb díszek mobilon */
    .christmas-perk {
        opacity: 0.5 !important;
    }
}

/* Reduced motion - akadálymentesség a díszekhez */
@media (prefers-reduced-motion: reduce) {
    .christmas-perk {
        animation: none !important;
    }

    .christmas-perks-container {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-branding {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.hero-branding a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hero-branding a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

/* Social Proof - Live Visitors */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: rgba(0, 113, 227, 0.05);
    border-radius: var(--radius-md);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-in-out 0.3s both;
}

.social-proof svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.social-proof span {
    font-weight: 600;
    color: var(--color-text);
}

/* Info Section (moved from hero) */
.info-section {
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-xl);
}

.hero-notices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    max-width: 1000px;
    margin: 0 auto;
}

.availability-notice,
.keyboard-notice,
.discount-notice,
.delivery-notice,
.vat-notice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.availability-notice {
    background-color: var(--color-warning);
    color: white;
}

.keyboard-notice {
    background-color: var(--color-primary);
    color: white;
}

.discount-notice {
    background-color: var(--color-success);
    color: white;
}

.delivery-notice {
    background-color: #8e8e93;
    color: white;
}

.vat-notice {
    background-color: var(--color-primary); /* Same blue as keyboard notice */
    color: white;
}

/* Sales Statistics Section */
.sales-stats {
    background: linear-gradient(to bottom,
        rgba(245, 245, 247, 0.4) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(0, 113, 227, 0.02) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 113, 227, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-card-sold .stat-icon {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    color: var(--color-warning);
}

.stat-card-remaining .stat-icon {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
    color: var(--color-success);
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
    font-variant-numeric: tabular-nums;
    margin-bottom: 2px;
}

.stat-card-sold .stat-value {
    background: linear-gradient(135deg, var(--color-warning) 0%, #ff7b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-remaining .stat-value {
    background: linear-gradient(135deg, var(--color-success) 0%, #2da44e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: lowercase;
}

/* Career Card Specific Styles */
.stat-card-career {
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(155, 89, 182, 0.08) 100%);
    border-color: rgba(142, 68, 173, 0.15);
}

.stat-card-career:hover {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.08) 0%, rgba(155, 89, 182, 0.12) 100%);
    border-color: rgba(142, 68, 173, 0.3);
    transform: translateY(-3px);
}

.stat-card-career .stat-icon {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
    color: #8e44ad;
}

.stat-card-career .stat-label {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value-career {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.stat-sublabel {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.stat-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e44ad;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.stat-card-career:hover .stat-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Subtle pulse animation for sold stat */
@keyframes subtlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.01);
    }
}

.stat-card-sold {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sales-stats {
        padding: var(--spacing-md) 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-card {
        padding: var(--spacing-sm);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* Filters Section */
.filters {
    background-color: var(--color-background);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, position 0s;
    will-change: transform;
}

/* Filters become sticky when scrolling past statistics */
.filters.filters-sticky {
    position: sticky;
    top: 0;
}

.filters.hidden {
    transform: translateY(-100%);
}

.filters .container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: none;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    width: 18px;
    height: 18px;
}

#searchInput {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

#searchInput:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-group,
.sort-group,
.view-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.view-buttons {
    display: flex;
    gap: 4px;
    background-color: var(--color-background-secondary);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.view-btn {
    padding: 6px 10px;
    border: none;
    background-color: transparent;
    color: var(--color-text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background-color: var(--color-background);
    color: var(--color-text);
}

.view-btn.active {
    background-color: var(--color-background);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.filter-group label,
.sort-group label {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.875rem;
}

.category-buttons {
    display: flex;
    gap: var(--spacing-sm); /* 16px - same as desktop-filters gap */
    flex-wrap: wrap;
}

/* Checkbox Groups - Desktop with Collapse */
.filter-group-collapsible {
    flex-direction: column;
    align-items: flex-start !important;
    position: relative;
}

.filter-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    background-color: var(--color-background);
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 120px;
}

.filter-collapse-btn:hover {
    background-color: var(--color-background-secondary);
    border-color: var(--color-primary);
}

.filter-collapse-btn.expanded {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.filter-collapse-btn .collapse-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.filter-collapse-btn.expanded .collapse-icon {
    transform: rotate(180deg);
}

.checkbox-group {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    min-width: 280px;
    max-width: 400px;
    max-height: 320px;
    overflow-y: auto;
    padding: var(--spacing-sm);
    background-color: var(--color-background);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.checkbox-group-collapsed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background-color: var(--color-background-secondary);
}

.checkbox-group label:hover {
    background-color: var(--color-background);
    border-color: var(--color-border);
}

.checkbox-group input[type="checkbox"]:checked + * {
    font-weight: 500;
}

.checkbox-group label:has(input[type="checkbox"]:checked) {
    background-color: rgba(0, 113, 227, 0.1);
    border-color: var(--color-primary);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

/* Clear Filters Button - Desktop (X button) */
.filter-clear-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text-secondary);
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-clear-btn:hover {
    background-color: var(--color-background-secondary);
    color: var(--color-text);
    border-color: var(--color-primary);
}

.filter-clear-btn svg {
    flex-shrink: 0;
}

/* Hidden Export Button */
.hidden-export-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    margin-top: var(--spacing-md);
    background-color: transparent;
    color: var(--color-text-secondary);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.2s ease, transform 0.2s ease;
}

.hidden-export-btn:hover {
    opacity: 1;
    color: var(--color-success);
    transform: scale(1.1);
}

.hidden-export-btn.exported {
    opacity: 1;
    color: var(--color-primary);
    animation: exportPulse 0.5s ease;
}

@keyframes exportPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.hidden-export-btn svg {
    flex-shrink: 0;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    border: 1.5px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-text);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-btn:hover {
    background-color: var(--color-background-secondary);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

#sortSelect {
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    background-color: var(--color-background);
    cursor: pointer;
    transition: all 0.2s ease;
}

#sortSelect:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

/* Products Section */
.products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background-secondary);
}

.products .container {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-card {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.list-view .product-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    grid-template-areas: "image info actions";
    gap: var(--spacing-sm);
    align-items: start;
    padding: var(--spacing-sm);
}

.list-view .product-card:hover {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-primary);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background-color: var(--color-background-secondary);
    padding: var(--spacing-md);
}

.list-view .product-image {
    grid-area: image;
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    background-color: var(--color-background-secondary);
}

.list-view .product-content {
    grid-area: info;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.list-view .product-category {
    font-size: 0.7rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.list-view .product-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    color: var(--color-text);
}

/* Unified gray background container */
.list-view .product-specs-colors-wrapper {
    padding: var(--spacing-sm);
    background-color: var(--color-background-secondary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.list-view .product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}

.list-view .product-specs li {
    font-size: 0.75rem;
    padding: 0 var(--spacing-sm);
    background-color: transparent;
    border-radius: 0;
    white-space: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.list-view .product-specs li:last-child {
    border-right: none;
}

.list-view .product-specs li strong {
    display: block;
    font-size: 0.65rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.list-view .product-colors {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--spacing-sm);
}

.list-view .product-colors-title {
    font-size: 0.65rem;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--color-text-secondary);
}

.list-view .color-list {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-text);
}

.copy-btn {
    padding: 10px 16px;
    border: none;
    background-color: var(--color-success);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(52, 199, 89, 0.2);
}

.list-view .copy-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0;
    min-height: 44px;
}

.copy-btn:hover {
    background-color: var(--color-success-hover);
    box-shadow: 0 4px 8px rgba(52, 199, 89, 0.3);
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(52, 199, 89, 0.2);
}

.copy-btn.copied {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: white;
}

.copy-disclaimer {
    font-size: 0.75rem;
    color: #999999;
    margin-top: var(--spacing-xs);
    line-height: 1.4;
    text-align: center;
}

.list-view .copy-disclaimer {
    font-size: 0.65rem;
    text-align: left;
    margin-top: 4px;
    line-height: 1.3;
}

/* Direct Order Link */
.direct-order-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.direct-order-link:hover {
    background-color: rgba(0, 113, 227, 0.1);
    text-decoration: underline;
    transform: translateX(2px);
}

.product-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.product-specs {
    list-style: none;
    margin: var(--spacing-sm) 0;
    padding: 0;
}

.product-specs li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
}

.product-specs li::before {
    content: "•";
    margin-right: 8px;
    color: var(--color-primary);
}

.product-colors {
    margin: var(--spacing-sm) 0;
}

.product-colors-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.color-list {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.product-footer {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.list-view .product-footer {
    grid-area: actions;
    border-top: none;
    border-left: 1px solid var(--color-border);
    padding: 0 0 0 var(--spacing-sm);
    margin: 0;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: stretch;
}

.list-view .product-stock {
    margin-bottom: 0;
    padding: 6px var(--spacing-xs);
    background-color: rgba(52, 199, 89, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.list-view .product-stock.low-stock {
    background-color: rgba(255, 149, 0, 0.1);
}

.list-view .product-stock.out-of-stock {
    background-color: rgba(255, 59, 48, 0.1);
}

.list-view .price-container {
    padding: var(--spacing-xs);
    background-color: var(--color-background-secondary);
    border-radius: var(--radius-md);
    align-items: center;
}

.list-view .discount-badge {
    font-size: 0.85rem;
    padding: 4px 10px;
    margin-bottom: 2px;
}

.list-view .original-price {
    font-size: 0.95rem;
    text-align: center;
}

.list-view .product-price {
    font-size: 1.6rem;
    text-align: center;
    color: var(--color-primary);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--color-success);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.product-stock svg {
    animation: stockPulseGreen 1.5s ease-in-out infinite; /* Slow pulse for high stock (doubled speed) */
}

.product-stock.low-stock {
    color: var(--color-warning);
}

.product-stock.low-stock svg {
    animation: stockPulseOrange 0.75s ease-in-out infinite; /* Medium pulse for low stock (doubled speed) */
}

.product-stock.out-of-stock {
    color: #ff3b30;
}

.product-stock.out-of-stock svg {
    animation: stockPulseRed 0.5s ease-in-out infinite; /* Fast pulse for out of stock (doubled speed) */
}

.product-stock.medium-stock {
    color: #ff9500;
}

.product-stock.medium-stock svg {
    animation: stockPulseOrange 1s ease-in-out infinite;
}

.product-stock.critical-stock {
    color: #ff3b30;
    font-weight: 700;
    animation: criticalStockPulse 1s ease-in-out infinite;
}

.product-stock.critical-stock svg {
    animation: stockPulseCritical 1s ease-in-out infinite;
}

@keyframes criticalStockPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Stock indicator pulse animations */
@keyframes stockPulseGreen {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes stockPulseOrange {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes stockPulseRed {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background-color: var(--color-success);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 2px;
    box-shadow: 0 2px 4px rgba(52, 199, 89, 0.2);
}

/* Stock Scarcity Badge */
/* ========================================
   UNIFIED BADGE SYSTEM - Consistent Design
   ======================================== */

/* Base Badge Styles - Shared by all badges */
.stock-badge,
.bestseller-badge,
.fast-selling-badge,
.slow-selling-badge,
.custom-badge {
    position: absolute;
    top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 11px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Stock badges - Right side (higher priority) */
.stock-badge {
    right: 12px;
    z-index: 10;
    color: white;
    font-weight: 700;
}

/* Performance badges - Left side */
.bestseller-badge,
.fast-selling-badge,
.slow-selling-badge,
.custom-badge {
    left: 12px;
    z-index: 9;
}

/* BESTSELLER Badge - Red gradient with pulse */
.bestseller-badge {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b58 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(255, 59, 48, 0.3);
    animation: bestsellerPulse 2s ease-in-out infinite;
}

/* Fast Selling Badge - Yellow/Orange gradient */
.fast-selling-badge {
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 170, 0, 0.25);
}

/* Slow Selling Badge - Gray gradient */
.slow-selling-badge {
    background: linear-gradient(135deg, #8e8e93 0%, #aeaeb2 100%);
    color: white;
    font-weight: 600;
    opacity: 0.9;
    box-shadow: 0 2px 10px rgba(142, 142, 147, 0.2);
}

/* Custom Badge - Green/Teal gradient for special features */
.custom-badge {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(52, 199, 89, 0.3);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .bestseller-badge,
    .stock-badge-warning,
    .stock-badge-critical {
        animation: none;
    }
}

/* Responsive badge sizing for small screens */
@media (max-width: 375px) {
    .bestseller-badge,
    .fast-selling-badge,
    .slow-selling-badge,
    .custom-badge {
        font-size: 0.65rem;
        padding: 5px 8px;
        top: 8px;
        left: 8px;
    }

    .stock-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
        top: 8px;
        right: 8px;
    }
}

/* Stock Badge Variants */
.stock-badge-warning {
    background: linear-gradient(135deg, var(--color-warning) 0%, #ff9f0a 100%);
    animation: stockPulseWarning 2s ease-in-out infinite;
}

.stock-badge-critical {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b58 100%);
    animation: stockPulseCritical 1.5s ease-in-out infinite;
}

/* Badge Animations - Unified pulse effect */
@keyframes bestsellerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 12px rgba(255, 59, 48, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(255, 59, 48, 0.45);
    }
}

@keyframes stockPulseWarning {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(255, 159, 10, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 14px rgba(255, 159, 10, 0.45);
    }
}

@keyframes stockPulseCritical {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 12px rgba(255, 59, 48, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 18px rgba(255, 59, 48, 0.55);
    }
}

/* Product card position relative for stock badge */
.product-card {
    position: relative;
}

.original-price {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Price Information */
.price-info {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-top: 2px;
}

.net-price-info {
    display: flex;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-xs);
    padding: 4px 0;
    border-top: 1px solid var(--color-border);
    justify-content: flex-start;
}

.net-price-info span {
    opacity: 0.7;
}

.net-price-info strong {
    color: var(--color-text);
}

/* EUR Price Section */
.eur-vat-note {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 2px;
    opacity: 0.8;
}

/* Delivery Info */
.delivery-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) 0;
    margin: var(--spacing-sm) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.delivery-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.no-results {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-background-secondary);
    border-radius: var(--radius-md);
    text-align: left;
}

.contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item a {
    font-size: 1.125rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.payment-info {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--color-background-secondary);
    border-radius: var(--radius-md);
    text-align: center;
}

.payment-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.payment-note {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-background);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.payment-method svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.faq-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-background-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.security-badge svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.security-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

/* FAQ Items */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: inherit;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-text-secondary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-sm) 0;
}

.faq-answer li {
    padding-left: var(--spacing-md);
    position: relative;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-secondary);
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: var(--spacing-sm);
    transition: all 0.2s ease;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-link svg {
    flex-shrink: 0;
}

/* Form Section */
.form-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background-secondary);
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-height: 800px;
}

.form-container iframe {
    min-height: 800px;
    width: 100%;
    border: none;
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    background-color: var(--color-text);
    color: var(--color-background-secondary);
}

.footer p {
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li a {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--color-background-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.company-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.company-info {
    font-size: 0.85rem;
    color: var(--color-background-secondary);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--color-primary);
    padding: 10px 14px;
    background-color: rgba(0, 119, 237, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(0, 119, 237, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(0, 119, 237, 0.12);
    border-color: rgba(0, 119, 237, 0.3);
}

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--color-primary);
    transition: transform 0.3s ease;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

.contact-item a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-lg) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-column h3 {
        margin-bottom: var(--spacing-sm);
    }
}

/* Footer Trust Badges */
.footer-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.footer-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-trust-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-trust-badge svg {
    color: var(--color-primary);
    min-width: 24px;
}

.footer-trust-badge strong {
    font-size: 0.875rem;
    margin-top: 4px;
}

.footer-trust-badge p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* Form Trust Section */
.form-trust-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: 0 auto var(--spacing-lg) auto;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 900px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0077ed 100%);
    border-radius: var(--radius-md);
    color: white;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.trust-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.trust-item strong {
    display: block;
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .footer-trust-badge {
        padding: var(--spacing-sm);
    }

    .form-trust-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-trust-badges {
        grid-template-columns: 1fr;
    }

    .form-trust-section {
        grid-template-columns: 1fr;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .trust-item {
        font-size: 0.9rem;
    }
}

/* Mobile Filter Drawer */
.filters-top-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    width: 100%;
}

.filter-menu-btn {
    display: none; /* Hidden on desktop, shown in mobile via media query */
    background: var(--color-primary);
    border: none;
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    min-width: 44px; /* Touch-friendly minimum size */
    min-height: 44px; /* Touch-friendly minimum size */
    align-items: center;
    justify-content: center;
}

.filter-menu-btn:hover {
    background-color: var(--color-primary-hover);
}

.filter-menu-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.filter-menu-btn svg {
    display: block;
}

.desktop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    width: 100%;
    margin-top: var(--spacing-sm);
}

.filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-background);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.filter-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-background-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    min-width: 44px; /* Touch-friendly minimum size */
    min-height: 44px; /* Touch-friendly minimum size */
    border-radius: var(--radius-sm);
}

.close-drawer-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-background-secondary);
}

.close-drawer-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.drawer-content {
    padding: var(--spacing-md);
}

.drawer-filter-group {
    margin-bottom: var(--spacing-lg);
}

.drawer-filter-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.drawer-category-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.drawer-filter-btn {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.drawer-filter-btn:hover {
    background-color: var(--color-background-secondary);
}

.drawer-filter-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.drawer-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--color-background);
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.drawer-view-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.drawer-view-btn {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.drawer-view-btn:hover {
    background-color: var(--color-background-secondary);
}

.drawer-view-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Checkbox Groups - Drawer */
.drawer-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.drawer-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    transition: all 0.2s ease;
}

.drawer-checkbox-group label:hover {
    background-color: var(--color-background-secondary);
    border-color: var(--color-primary);
}

.drawer-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.drawer-checkbox-group input[type="checkbox"]:checked + span {
    font-weight: 500;
    color: var(--color-primary);
}

/* Clear Filters Button - Drawer */
.drawer-clear-filters-container {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.drawer-clear-filters-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-background-secondary);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.drawer-clear-filters-btn:hover {
    background-color: var(--color-background);
    color: var(--color-text);
    border-color: var(--color-text-secondary);
}

.drawer-clear-filters-btn svg {
    flex-shrink: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Scroll to Top Floating Action Button */
.scroll-top-fab {
    position: fixed;
    bottom: var(--spacing-md); /* Bottom-most button */
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    z-index: 200;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.scroll-top-fab:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.02);
}

.scroll-top-fab:active {
    transform: translateY(0) scale(0.98);
}

.scroll-top-fab:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.scroll-top-fab svg {
    flex-shrink: 0;
}

.scroll-top-fab-text {
    white-space: nowrap;
}

/* Safe area support for scroll to top FAB */
@supports (padding: max(0px)) {
    .scroll-top-fab {
        bottom: max(var(--spacing-md), env(safe-area-inset-bottom));
        right: max(var(--spacing-md), env(safe-area-inset-right));
    }
}

/* Referral Floating Action Button */
.referral-fab {
    position: fixed;
    bottom: 96px; /* Scroll to Top button height (56px) + bottom position (24px) + gap (16px) = 96px */
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 16px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    z-index: 200;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.referral-fab:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.02);
}

.referral-fab:active {
    transform: translateY(0) scale(0.98);
}

.referral-fab:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.referral-fab svg {
    flex-shrink: 0;
}

.referral-fab-text {
    white-space: nowrap;
}

/* Safe area support for referral FAB */
@supports (padding: max(0px)) {
    .referral-fab {
        bottom: max(96px, calc(env(safe-area-inset-bottom) + 72px));
        right: max(var(--spacing-md), env(safe-area-inset-right));
    }
}

/* Order Form Floating Action Button */
.order-fab {
    position: fixed;
    bottom: 168px; /* Referral button height (56px) + bottom position (96px) + gap (16px) = 168px */
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 16px;
    background-color: var(--color-success);
    color: white;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    z-index: 200;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: ctaPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 4px 12px rgba(52, 199, 89, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(52, 199, 89, 0.2);
    }
    100% {
        box-shadow: 0 4px 12px rgba(52, 199, 89, 0.4);
        transform: scale(1);
    }
}

.order-fab:hover {
    background-color: var(--color-success-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.05);
    animation: none;
}

.order-fab:active {
    transform: translateY(0) scale(0.98);
}

.order-fab:focus {
    outline: 2px solid var(--color-success);
    outline-offset: 2px;
}

/* Order FAB Flash In Animation - when hidden FAB slides in to show CTA */
.order-fab.fab-flash-in {
    animation: fabFlashIn 1s ease-out forwards;
}

/* Order FAB positioned above WhatsApp when flashing in (WhatsApp at fab-scroll-active 24px) */
.order-fab.fab-flash-in,
.order-fab.fab-flash-out {
    bottom: 96px !important; /* Above WhatsApp FAB at scroll position (24px + 56px FAB + 16px gap) */
}

@keyframes fabFlashIn {
    0% {
        opacity: 0;
        transform: translateX(200px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translateX(0) scale(1.15);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Order FAB Flash Out Animation - slides out with reverse effect */
.order-fab.fab-flash-out {
    animation: fabFlashOut 1s ease-in forwards;
}

@keyframes fabFlashOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        transform: scale(1.05);
    }
    70% {
        opacity: 1;
        transform: translateX(0) scale(1.15);
    }
    100% {
        opacity: 0;
        transform: translateX(200px) scale(0.8);
    }
}

/* Order FAB Highlight Animation - when visible FAB gets attention */
.order-fab.fab-highlight {
    animation: fabHighlight 1.5s ease-in-out;
}

@keyframes fabHighlight {
    0%, 100% {
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }
    15% {
        box-shadow: 0 0 0 8px rgba(52, 199, 89, 0.3), var(--shadow-lg);
        transform: scale(1.1);
    }
    30% {
        box-shadow: 0 0 0 16px rgba(52, 199, 89, 0.2), var(--shadow-lg);
        transform: scale(1.05);
    }
    45% {
        box-shadow: 0 0 0 24px rgba(52, 199, 89, 0.1), var(--shadow-lg);
        transform: scale(1.08);
    }
    60% {
        box-shadow: 0 0 0 16px rgba(52, 199, 89, 0), var(--shadow-md);
        transform: scale(1.02);
    }
}

.order-fab svg {
    flex-shrink: 0;
}

.order-fab-text {
    white-space: nowrap;
}

/* Safe area support for order FAB */
@supports (padding: max(0px)) {
    .order-fab {
        bottom: max(168px, calc(env(safe-area-inset-bottom) + 144px));
        right: max(var(--spacing-md), env(safe-area-inset-right));
    }
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 240px; /* Order button height (56px) + bottom position (168px) + gap (16px) = 240px */
    right: var(--spacing-md);
    display: flex; /* Show on desktop and mobile */
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 16px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    z-index: 200;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
    overflow: hidden; /* Contain the shimmer effect */
}

/* Shimmer effect for WhatsApp button */
.whatsapp-fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%,
        transparent 100%
    );
    animation: whatsappShimmer 4s ease-in-out infinite;
    animation-delay: 1s; /* Start after 1 second */
    pointer-events: none; /* Don't interfere with clicks */
}

.whatsapp-fab:hover {
    background-color: #20BA5A; /* Darker WhatsApp green on hover */
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.02);
}

.whatsapp-fab:active {
    transform: translateY(0) scale(0.98);
}

.whatsapp-fab:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.whatsapp-fab svg {
    flex-shrink: 0;
}

.whatsapp-fab-text {
    white-space: nowrap;
}

/* WhatsApp button animation - gentle pulse */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
    }
}

/* WhatsApp button shimmer animation - subtle white light sweep */
@keyframes whatsappShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        left: 100%;
        opacity: 1;
    }
    30.1%, 100% {
        left: 100%;
        opacity: 0;
    }
}

/* WhatsApp position when other FABs are hidden (scrolled down) */
.whatsapp-fab.fab-scroll-active {
    bottom: var(--spacing-md); /* Move to bottom right when others hide */
}

/* WhatsApp FAB moves up when toast is shown */
.whatsapp-fab.toast-active {
    bottom: 340px; /* Move above toast (toast height ~100px + bottom 24px + margin) */
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Order FAB moves up when toast is shown and FABs are visible */
.order-fab.toast-visible {
    bottom: 200px !important; /* Move up above toast to prevent overlap */
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hide other FABs on scroll down */
.order-fab.fab-hidden,
.referral-fab.fab-hidden,
.scroll-top-fab.fab-hidden {
    transform: translateX(200px);
    opacity: 0;
    pointer-events: none;
}

/* Ensure drawer transform has priority when both are active */
.filter-drawer.open ~ .order-fab.fab-hidden,
.filter-drawer.open ~ .referral-fab.fab-hidden,
.filter-drawer.open ~ .scroll-top-fab.fab-hidden {
    transform: translateX(-280px);
}

/* Safe area support for WhatsApp FAB */
@supports (padding: max(0px)) {
    .whatsapp-fab {
        bottom: max(240px, calc(env(safe-area-inset-bottom) + 216px));
        right: max(var(--spacing-md), env(safe-area-inset-right));
    }

    .whatsapp-fab.fab-scroll-active {
        bottom: max(var(--spacing-md), env(safe-area-inset-bottom));
    }
}

/* Desktop: Hide text, show icons only for all FABs */
.referral-fab-text,
.scroll-top-fab-text,
.order-fab-text,
.whatsapp-fab-text {
    display: none;
}

.referral-fab,
.scroll-top-fab,
.order-fab,
.whatsapp-fab {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

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

/* Toast Notification - Apple Style */
.copy-toast {
    position: fixed;
    top: -200px;
    right: 24px;
    max-width: 420px;
    width: auto;
    min-width: 320px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.copy-toast.show {
    top: 24px;
    opacity: 1;
}

.toast-icon {
    flex-shrink: 0;
    color: var(--color-success);
    margin-top: 2px;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* Toast safe area support */
@supports (padding: max(0px)) {
    .copy-toast.show {
        top: max(24px, env(safe-area-inset-top));
        right: max(24px, env(safe-area-inset-right));
    }
}

/* Dark mode support for toast (optional) */
@media (prefers-color-scheme: dark) {
    .copy-toast {
        background: rgba(28, 28, 30, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .toast-title {
        color: #f5f5f7;
    }

    .toast-message {
        color: #a1a1a6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Toast - Mobile centered at top */
    .copy-toast {
        top: -200px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 420px;
        min-width: auto;
    }

    .copy-toast.show {
        top: 24px;
    }

    @supports (padding: max(0px)) {
        .copy-toast.show {
            top: max(24px, env(safe-area-inset-top));
        }
    }

    /* Karácsonyi Banner - Mobile */
    .christmas-banner {
        padding: var(--spacing-md) 0;
        padding-top: calc(var(--spacing-md) + 25px);
    }

    .christmas-banner .banner-content {
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 16px;
    }

    /* Minden második izzó elrejtése mobilon */
    .bulb:nth-child(2n) {
        display: none;
    }

    .bulb {
        width: 10px;
        height: 14px;
    }

    .bulb::before {
        width: 6px;
        height: 7px;
        top: -5px;
    }

    .bulb::after {
        top: -7px;
        height: 4px;
    }

    /* Banner dekoráció - tablet */
    .main-christmas-tree {
        width: 110px;
        height: 125px;
    }

    .tree-gifts {
        gap: 6px;
        margin-top: -10px;
    }

    .tree-gift-large {
        width: 40px;
        height: 44px;
    }

    .tree-gift-medium {
        width: 32px;
        height: 36px;
    }

    .tree-gift-small {
        width: 26px;
        height: 29px;
    }

    .christmas-banner .banner-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .christmas-banner .banner-subtitle {
        text-align: center;
        font-size: 0.85rem;
    }

    /* Sparkle csökkentés mobilon */
    .sparkle:nth-child(3),
    .sparkle:nth-child(5) {
        display: none;
    }

    /* Szán - tablet méret */
    .sleigh-container {
        top: 45px;
        height: 55px;
    }

    .sleigh-animation {
        width: 160px;
        height: 50px;
        animation-duration: 12s;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-notices {
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--spacing-sm);
    }

    .availability-notice,
    .keyboard-notice,
    .discount-notice,
    .delivery-notice,
    .vat-notice {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 8px 16px;
    }

    /* Mobile Filter Adjustments */
    .filter-menu-btn {
        display: flex; /* Show hamburger menu on mobile */
    }

    .desktop-filters {
        display: none; /* Hide desktop filters on mobile */
    }

    .search-box {
        flex: 1;
        max-width: none;
    }

    .filters .container {
        gap: var(--spacing-sm);
    }

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group,
    .sort-group,
    .view-toggle {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .category-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        min-width: fit-content;
    }

    #sortSelect,
    .view-buttons {
        width: 100%;
    }

    .list-view .product-card {
        flex-direction: column;
    }

    .list-view .product-image {
        width: 100%;
        height: 200px;
    }

    .list-view .product-specs {
        grid-template-columns: 1fr;
    }

    .list-view .product-specs li {
        border-right: none;
        padding-right: 0;
        padding-bottom: var(--spacing-xs);
    }

    .list-view .product-specs li:last-child {
        padding-bottom: 0;
    }

    .list-view .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .list-view .copy-btn {
        margin-left: 0;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact h2,
    .form-section h2 {
        font-size: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-methods {
        flex-direction: column;
    }

    .payment-method {
        justify-content: center;
    }

    /* Mobile: Keep icon-only styling (same as desktop for consistency) */
    .referral-fab,
    .scroll-top-fab,
    .order-fab,
    .whatsapp-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    /* Scroll to Top FAB mobile adjustments */
    .scroll-top-fab {
        bottom: var(--spacing-sm); /* Bottom-most button on mobile (16px) */
        right: var(--spacing-sm);
    }

    /* Move scroll to top FAB when drawer is open */
    .filter-drawer.open ~ .scroll-top-fab {
        transform: translateX(-280px);
    }

    /* Referral FAB mobile adjustments */
    .referral-fab {
        bottom: 88px; /* Scroll to Top height (56px) + bottom (16px) + gap (16px) = 88px */
        right: var(--spacing-sm);
    }

    /* Move FAB when drawer is open */
    .filter-drawer.open ~ .referral-fab {
        transform: translateX(-280px);
    }

    /* Order FAB mobile adjustments */
    .order-fab {
        bottom: 160px; /* Referral height (56px) + bottom (88px) + gap (16px) = 160px */
        right: var(--spacing-sm);
    }

    /* Move order FAB when drawer is open */
    .filter-drawer.open ~ .order-fab {
        transform: translateX(-280px);
    }

    /* WhatsApp FAB mobile adjustments */
    .whatsapp-fab {
        bottom: 232px; /* Order height (56px) + bottom (160px) + gap (16px) = 232px */
        right: var(--spacing-sm);
    }

    /* Move WhatsApp FAB when drawer is open */
    .filter-drawer.open ~ .whatsapp-fab {
        transform: translateX(-280px);
    }

    /* Safe area support for mobile */
    @supports (padding: max(0px)) {
        .referral-fab {
            bottom: max(var(--spacing-sm), calc(env(safe-area-inset-bottom) + 8px));
            right: max(var(--spacing-sm), calc(env(safe-area-inset-right) + 8px));
        }

        .scroll-top-fab {
            bottom: max(96px, calc(env(safe-area-inset-bottom) + 88px));
            right: max(var(--spacing-sm), calc(env(safe-area-inset-right) + 8px));
        }

        .order-fab {
            bottom: max(176px, calc(env(safe-area-inset-bottom) + 168px));
            right: max(var(--spacing-sm), calc(env(safe-area-inset-right) + 8px));
        }

        .whatsapp-fab {
            bottom: max(256px, calc(env(safe-area-inset-bottom) + 248px));
            right: max(var(--spacing-sm), calc(env(safe-area-inset-right) + 8px));
        }

        .whatsapp-fab.fab-scroll-active {
            bottom: max(var(--spacing-sm), calc(env(safe-area-inset-bottom) + 8px));
        }
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 24px;
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Karácsonyi Banner - Extra kis képernyő */
    .christmas-banner {
        padding-top: calc(var(--spacing-sm) + 20px);
    }

    /* Csak 4 izzó extra kis képernyőn */
    .bulb:nth-child(n+5) {
        display: none;
    }

    .string-lights {
        left: 10%;
        right: 10%;
    }

    /* Sparkle kikapcsolva */
    .sparkle-container {
        display: none;
    }

    /* Szán elrejtése kis mobilon */
    .sleigh-container {
        display: none;
    }

    /* Banner dekoráció - mobil */
    .main-christmas-tree {
        width: 90px;
        height: 102px;
    }

    .tree-gifts {
        gap: 5px;
        margin-top: -8px;
    }

    .tree-gift-large {
        width: 32px;
        height: 35px;
    }

    .tree-gift-medium {
        width: 26px;
        height: 29px;
    }

    .tree-gift-small {
        width: 22px;
        height: 25px;
    }

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

    .product-card {
        border-radius: var(--radius-md);
    }

    /* Referral FAB small mobile - icon only */
    .referral-fab-text {
        display: none; /* Hide text on small screens */
    }

    .referral-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%; /* Perfect circle */
    }

    /* Order FAB small mobile - icon only */
    .order-fab-text {
        display: none; /* Hide text on small screens */
    }

    .order-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%; /* Perfect circle */
    }

    /* WhatsApp FAB small mobile - icon only */
    .whatsapp-fab-text {
        display: none; /* Hide text on small screens */
    }

    .whatsapp-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%; /* Perfect circle */
    }
}

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

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

/* EUR Price Styling */
.price-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eur-price-section {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-border-light, rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eur-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary, #999);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-eur {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

/* List view EUR price adjustments */
.list-view .eur-price-section {
    margin-top: 4px;
    padding-top: 4px;
}

.list-view .eur-label {
    font-size: 0.7rem;
}

.list-view .product-price-eur {
    font-size: 1rem;
}

/* Tech Specs Modal / Popover */
.tech-specs-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.tech-specs-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-specs-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.tech-specs-popover {
    position: relative;
    z-index: 1001;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 560px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: popoverSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.tech-specs-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1002;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
    padding: 0;
}

.tech-specs-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
}

.tech-specs-close:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.tech-specs-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.tech-specs-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 28px 28px 0 28px;
    color: var(--color-text);
}

.tech-specs-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px 28px 28px;
    color: var(--color-text);
}

/* Scrollbar styling */
.tech-specs-body::-webkit-scrollbar {
    width: 8px;
}

.tech-specs-body::-webkit-scrollbar-track {
    background: transparent;
}

.tech-specs-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.tech-specs-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Tech Specs Content Styling */
.tech-spec-group {
    margin-bottom: 28px;
}

.tech-spec-group:last-child {
    margin-bottom: 0;
}

.tech-spec-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.tech-spec-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

.tech-spec-value.mono {
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Fira Mono', 'Roboto Mono', monospace;
    font-size: 0.95rem;
}

/* Info Icon Button */
.tech-specs-button,
.tech-specs-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 122, 255, 0.6);
    background-color: rgba(0, 122, 255, 0.08);
    color: rgba(0, 122, 255, 1);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tech-specs-trigger-text {
    font-style: italic;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    display: block;
}

.tech-specs-button:hover,
.tech-specs-trigger:hover {
    background-color: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.9);
    transform: scale(1.08);
}

.tech-specs-button:active,
.tech-specs-trigger:active {
    transform: scale(0.92);
    background-color: rgba(0, 122, 255, 0.2);
}

/* Tech Specs Table */
.tech-specs-table {
    margin-top: 24px;
}

.tech-spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tech-spec-row:first-child {
    padding-top: 0;
}

.tech-spec-row:last-child {
    border-bottom: none;
}

.tech-spec-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-spec-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

/* Recommendation Section */
.tech-specs-recommendation {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.recommendation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 20px 0;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.recommendation-card {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 18px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 122, 255, 0.15);
    background: #ffffff;
}

.recommendation-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.recommendation-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 6px 0;
}

.recommendation-card-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .tech-specs-popover {
        width: 95%;
        max-height: 85vh;
    }

    .tech-specs-title {
        font-size: 1.3rem;
        padding: 24px 20px 0 20px;
    }

    .tech-specs-body {
        padding: 16px 20px 20px 20px;
    }

    .tech-specs-close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .tech-spec-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .recommendation-grid {
        grid-template-columns: 1fr;
    }

    .recommendation-card {
        padding: 14px;
    }
}
