/* --- BELENGŐ ANIMÁCIÓ HOVER --- */
#category-nav .nav-item.item.category-list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,51,204,0.18);
    background: rgba(0,51,204,0.06);
}

/* --- IKON --- */
#category-nav .nav-item.item.category-list img {
    width: 36px !important;
    height: auto !important;
    margin-bottom: 6px;
    transition: transform 0.35s ease, filter 0.35s ease !important;
}

/* --- IKON HOVER ANIMÁCIÓ --- */
#category-nav .nav-item.item.category-list:hover img {
    transform: scale(1.22) translateY(-4px) !important;
    filter: brightness(1.25) drop-shadow(0 6px 8px rgba(0,0,0,0.25)) !important;
}

/* --- SZÖVEG --- */
#category-nav .nav-item.item.category-list > a.nav-link {
    color: #0033cc !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2em;
    width: 100%;
    display: block;
    transition: 0.3s ease;
}

/* --- SZÖVEG HOVER --- */
#category-nav .nav-item.item.category-list:hover > a.nav-link {
    color: #001a66 !important;
    transform: translateY(2px);
}

/* --- Modern animált keresőmező --- */
.header-navbar-search .search-module__input {
    height: 42px !important;
    border-radius: 30px !important;
    padding: 0 42px 0 18px !important;
    border: 2px solid rgba(0,0,0,0.15) !important;
    background: #ffffff;
    transition: 0.35s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

/* Hover effekt */
.header-navbar-search .search-module__input:hover {
    border-color: #0033cc !important;
    box-shadow: 0 0 10px rgba(0,51,204,0.25);
}

/* Fókusz animáció – fény fut végig */
.header-navbar-search .search-module__input:focus {
    border-color: #0066ff !important;
    box-shadow: 0 0 18px rgba(0,102,255,0.45);
    transform: scale(1.03);
    outline: none !important;
}

/* Bővülő animáció fókuszkor */
.header-navbar-search .search-module__input:focus {
    width: 260px !important;
}

/* Keresés ikon beszúrása */
.header-navbar-search .search-button-append {
    right: 12px !important;
}

.header-navbar-search .search-button-append::after {
    content: "🔍";
    font-size: 18px;
    position: absolute;
    top: 8px;
    right: 10px;
    opacity: 0.7;
}

/* Hover ikon */
.header-navbar-search .search-button-append:hover::after {
    opacity: 1;
    transform: scale(1.15);
    transition: 0.25s ease;
}

/* --- PULZÁLÓ FÉNY ANIMÁCIÓ IKON KÖRÜL --- */
#category-nav .nav-item.item.category-list:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        rgba(0, 102, 255, 0.45),
        rgba(0, 102, 255, 0)
    );
    animation: glowPulse 1.6s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

/* --- PULZÁLÓ ANIMÁCIÓ KEYFRAMES --- */
@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.45;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.7;
    }
}

/* --- IKON ANIMÁCIÓ --- */
#category-nav .nav-item.item.category-list img {
    width: 36px !important;
    height: auto !important;
    margin-bottom: 6px;
    transition: transform 0.35s ease, filter 0.35s ease !important;
    z-index: 2;
    position: relative;
}

/* --- HOVER IKON --- */
#category-nav .nav-item.item.category-list:hover img {
    transform: scale(1.2) translateY(-3px) !important;
    filter: brightness(1.25);
}

/* --- SZÖVEG --- */
#category-nav .nav-item.item.category-list > a.nav-link {
    color: #0033cc !important;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 1.2em;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

/* --- SZÖVEG HOVER --- */
#category-nav .nav-item.item.category-list:hover > a.nav-link {
    color: #001a66 !important;
}


/* BELSŐ doboz – neon keretes */
#customcontent11 {
    background: #ffffff !important;
    border-radius: 18px !important;
    padding: 22px !important;
    position: relative;
    overflow: hidden; /* hogy a fény ne lógjon ki */
    margin: 20px auto;
}

/* Neon keret */
#customcontent11::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #00aaff, #0066ff, #00ddff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: glow 3s linear infinite;
}

/* Neon pulzálás animáció */
@keyframes glow {
    0%   { filter: brightness(1) drop-shadow(0 0 4px #00aaff); }
    50%  { filter: brightness(1.5) drop-shadow(0 0 12px #00ddff); }
    100% { filter: brightness(1) drop-shadow(0 0 4px #00aaff); }
}

/* Kép igazítása */
#customcontent11 img {
    max-width: 100%;
    border-radius: 14px;
    margin: 0 auto;
    display: block;
}

/* Szövegek igazítása */
#customcontent11 h3,
#customcontent11 p {
    text-align: center;
}
#customcontent11::before {
    pointer-events: none !important;
}
#customcontent11::after {
    pointer-events: none !important;
}







/* BELSŐ doboz – neon keretes (MODUL 3) */
#customcontent3 {
    background: #ffffff !important;
    border-radius: 18px !important;
    padding: 22px !important;
    position: relative;
    overflow: hidden; /* hogy a fény ne lógjon ki */
    margin: 20px auto;
}

/* Neon keret */
#customcontent3::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #00aaff, #0066ff, #00ddff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: glow3 3s linear infinite;
}

/* Neon pulzálás animáció (külön név, hogy ne ütközzön a 11-esével) */
@keyframes glow3 {
    0%   { filter: brightness(1) drop-shadow(0 0 4px #00aaff); }
    50%  { filter: brightness(1.5) drop-shadow(0 0 12px #00ddff); }
    100% { filter: brightness(1) drop-shadow(0 0 4px #00aaff); }
}

/* Kép igazítása */
#customcontent3 img {
    max-width: 100%;
    border-radius: 14px;
    margin: 0 auto;
    display: block;
}

/* Szöveg igazítása */
#customcontent3 h3,
#customcontent3 p {
    text-align: center;
}
#customcontent3::before {
    pointer-events: none !important;
}
#customcontent3::after {
    pointer-events: none !important;
}




/* === STOCKFILTER – PIROS neon keretes modul === */
#stockfilter {
    background: #ffffff !important;
    border-radius: 18px !important;
    padding: 22px !important;
    position: relative;
    overflow: hidden; /* neon ne lógjon ki */
    margin: 20px auto;
    z-index: 1;
}

/* Piros neon keret – teljesen különálló */
#stockfilter::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #ff3333, #ff0000, #ff6666);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: glowRedSF 3s linear infinite;
    pointer-events: none !important; /* hogy ne blokkolja kattintást */
}

/* Piros neon animáció – külön név! */
@keyframes glowRedSF {
    0%   { filter: brightness(1) drop-shadow(0 0 4px #ff3333); }
    50%  { filter: brightness(1.7) drop-shadow(0 0 12px #ff6666); }
    100% { filter: brightness(1) drop-shadow(0 0 4px #ff3333); }
}

/* Biztonsági pointer-events */
#stockfilter::after,
#stockfilter::before {
    pointer-events: none !important;
}





/* === Telefon box – PIROS neon keret === */

.header-middle__phone {
    position: relative;
    display: inline-block;
    border-radius: 14px;
    padding: 12px 22px !important;
    background: #ffffff !important;
    overflow: hidden;
    z-index: 1;
}

/* Neon keret animációval */
.header-middle__phone::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;

    background: linear-gradient(135deg, #ff0000, #ff4d4d, #ff0000);
    background-size: 200% 200%;
    animation: phoneRedGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none; /* hogy kattintható maradjon */
}

/* Anime – piros fény körbefutása */
@keyframes phoneRedGlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}






/* Finom pulzáló fény a telefonszámra */
.header-middle__phone span,
.header-middle__phone {
    animation: phonePulse 2.8s ease-in-out infinite;
}

@keyframes phonePulse {
    0%   { color: #333; text-shadow: 0 0 0px rgba(255, 50, 50, 0.0); }
    50%  { color: #ff3333; text-shadow: 0 0 8px rgba(255, 50, 50, 0.4); }
    100% { color: #333; text-shadow: 0 0 0px rgba(255, 50, 50, 0.0); }
}




/* Belépés ikon – erősebb fényhatás + látványos pulzálás */
#header-middle-login svg,
#header-middle-login i {
    stroke: #0070ff !important;        /* erősebb kék kontúr */
    stroke-width: 2.2px !important;
    fill: none !important;
    animation: loginPulseStrong 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0,112,255,0.8)); /* alapfény */
}

@keyframes loginPulseStrong {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(0,112,255,0.6));
    }
    50% {
        transform: scale(1.20); /* nagyobb pulzálás */
        filter: drop-shadow(0 0 15px rgba(0,112,255,1)); /* erős fény */
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(0,112,255,0.6));
    }
}






/* Kedvencek ikon – piros szín + finom pulzálás */
#header-middle-wishlist svg,
#header-middle-wishlist i {
    fill: #ff3333 !important;
    stroke: #ff3333 !important;
    animation: heartPulse 1.8s ease-in-out infinite;
}

@keyframes heartPulse {
    0%   { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255,50,50,0.0)); }
    50%  { transform: scale(1.13); filter: drop-shadow(0 0 8px rgba(255,50,50,0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255,50,50,0.0)); }
}


.btn:hover,
.button:hover,
a.btn-default:hover,
a.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 18px rgba(0,102,255,0.55);
    background: linear-gradient(135deg, #0099ff, #33ccff);
}


.product-card:hover,
.product-thumb:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}





/* === TERMÉKKÉP FUTÓFÉNY EFFEKT — MŰKÖDŐ A BUDAPEST SABLONHOZ === */

.product-card-image {
    position: relative !important;
    overflow: hidden !important;
}

.product-card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
    120deg,
    rgba(0,153,255,0) 0%,
    rgba(0,153,255,0.5) 50%,
    rgba(0,153,255,0) 100%
);

    transform: skewX(-25deg);
    opacity: 0;
    transition: 0.8s;
    pointer-events: none !important;
}

.product-card:hover .product-card-image::before {
    left: 150%;
    opacity: 1;
}




/* Hover ár kiemelés – KIZÁRÓLAG a termékkártyára hat */
.card.product-card:hover .snapshot-price.snapshot-price--regular {
    color: #0088ff !important;
    text-shadow: 0 0 6px rgba(0, 136, 255, 0.8),
                 0 0 14px rgba(0, 136, 255, 0.5),
                 0 0 22px rgba(0, 136, 255, 0.4);
    transform: scale(1.12);
    transition: 0.25s ease-in-out;
}



/* SEO H1 modul finom lejjebb tolása */
.module.seoh1-module.home-position.container {
    margin-top: 70px !important;     /* finomabb távolság */
    padding-top: 10px !important;    /* kisebb felső kitöltés */
    position: relative !important;
    display: block !important;
    z-index: 20 !important;
}

/* H1 animáció – finoman beúszik */
.module.seoh1-module.home-position.container h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: h1FadeIn 1s ease-out forwards;
}

@keyframes h1FadeIn {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}





/* KÉK fényfutás animáció */
.module.seoh1-module.home-position.container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    border-radius: 40px;

    /* tiszta kék fényátmenet */
    background: linear-gradient(
        90deg,
        rgba(0, 102, 255, 0) 0%,
        rgba(0, 102, 255, 0.2) 25%,
        rgba(0, 102, 255, 0.45) 50%,
        rgba(0, 102, 255, 0.2) 75%,
        rgba(0, 102, 255, 0) 100%
    );
    background-size: 300% 100%;

    animation: blueSweep 5s linear infinite;
    filter: blur(22px);
    z-index: -1;
}

/* Kék fényfutás */
@keyframes blueSweep {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* H1 beúszó animáció */
.module.seoh1-module.home-position.container h1 {
    opacity: 0;
    transform: translateY(35px);
    animation: h1Rise 1s ease-out forwards;
}

@keyframes h1Rise {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobil optimalizáció */
@media (max-width: 768px) {
    .module.seoh1-module.home-position.container::before {
        width: 90%;
        height: 80px;
        filter: blur(14px);}
}





.product-collateral-list__item {
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.product-collateral-list__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}






/* Alap stílusok */
.product-collateral-list__item {
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: 0.2s;
}

/* Hover */
.product-collateral-list__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  border-color: #007AFF;
}

/* --- AKTÍV állapot --- */

/* keret + háttér */
.product-collateral-list__item.active {
  border-color: #007AFF !important;
  background: #f0f7ff !important;
}

/* név kiemelése */
.product-collateral-list__item.active .product-collateral-list__item-name {
  color: #007AFF !important;
  font-weight: 700 !important;
}

/* ár kiemelése */
.product-collateral-list__item.active .product-collateral-list__item-price {
  color: #007AFF !important;
  font-weight: 700 !important;
  font-size: 1.1em !important;
}

/* checkbox/ikon */
.product-collateral-list__item.active .product-collateral-list__item-checkbox {
  color: #007AFF !important;
  border-color: #007AFF !important;
}

.product-collateral-list__item.active .product-collateral-list__item-checkbox i,
.product-collateral-list__item.active .product-collateral-list__item-checkbox svg {
  fill: #007AFF !important;
  color: #007AFF !important;
}




.product-cart-box span.product-price,
.product-cart-box span.product-price--regular {
  display: inline-block !important;
  padding: 10px 20px !important;
  background: #ffffff !important;
  color: #003A5D !important;
  font-size: 2.4rem !important;
  font-weight: 900 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 20px !important;
}

.product-cart-box span.product-price {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25) !important;
}

.product-cart-box h6 {
  margin-top: 10px !important;
  margin-bottom: 18px !important;
}


.product-cart-box label {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  opacity: 0.9;
  margin-bottom: 6px;
  display: inline-block;
}

.product-cart-box {
  background: linear-gradient(145deg, #0f3554 0%, #082238 100%) !important;
}



.product-cart-box button.add-to-cart {
  padding: 14px 28px !important;
  font-size: 1.4rem !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
  font-weight: 700 !important;
}





.page-head-title .product-page-product-name {
  font-size: 2.1rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  color: #0f3554 !important;
  text-transform: none !important;
}



/* Sorok általános stílusa */
.product-parameter {
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0;
}

/* Bal oldali cím (label) */
.product-parameter__label {
  font-weight: 600;
  color: #0F3554;
  padding: 6px 0;
  width: 160px; /* igazított oszlop */
}

/* Jobb oldali érték (value) */
.product-parameter__value {
  font-weight: 500;
  color: #333;
  padding: 6px 0;
}

/* Elérhetőség – zöld */
.product-parameter__stock .product-parameter__value {
  color: #2E7D32 !important;
  font-weight: 700 !important;
}

/* Külön status id színek */
.product-parameter__stock[data-stock-status-id="8"] .product-parameter__value {
  color: #E53935 !important;
}
.product-parameter__stock[data-stock-status-id="10"] .product-parameter__value {
  color: #F57C00 !important;
}





/* Kártya konténer */
.product-parameters-table {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

/* Sorok */
.product-parameters-table .product-parameter {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 10px 0;
}

/* Bal oldali cím */
.product-parameter__label {
  font-weight: 600 !important;
  color: #0F3554 !important;
  opacity: 0.85;
  padding-right: 20px;
  width: 160px;
}

/* Jobb oldali érték */
.product-parameter__value {
  font-weight: 500;
  color: #222 !important;
}

/* Elérhetőség badge stílus */
.product-parameter__stock .product-parameter__value {
  background: #E8F5E9;
  color: #2E7D32 !important;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
}

/* Opció: kis ikon a címek előtt */
.product-parameter__label::before {
  content: "• ";
  color: #007AFF;
  font-size: 1.2rem;
  margin-right: 4px;
}



/* Bármelyik szív ikon - alapállapotban piros */
.js-add-to-wishlist .icon-heart__filled.icon-heart,
.js-add-to-wishlist .icon-heart__empty.icon-heart {
  width: 24px !important;
  height: 24px !important;
  color: #e53935 !important;         /* piros kitöltés */
  stroke: #7bb7ff !important;        /* világoskék kontúr */
  stroke-width: 2px !important;
  transition: 0.25s ease;
}

/* Pulzálás */
.js-add-to-wishlist .icon-heart__filled.icon-heart,
.js-add-to-wishlist .icon-heart__empty.icon-heart {
  animation: wishlist-pulse 1.8s ease-in-out infinite;
}

@keyframes wishlist-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Hoverkor erősebb piros és kontúr */
.js-add-to-wishlist:hover .icon-heart__filled.icon-heart,
.js-add-to-wishlist:hover .icon-heart__empty.icon-heart {
  color: #ff1f3d !important;
  stroke: #5aa2ff !important;
  transform: scale(1.25);
}





.module-head-title {
  animation: neonPulse 2.5s ease-in-out infinite;
}

@keyframes neonPulse {
  0% {
    text-shadow: 
      0 0 4px rgba(0,122,255,0.4),
      0 0 10px rgba(0,122,255,0.3),
      0 0 20px rgba(0,122,255,0.2);
  }
  50% {
    text-shadow:
      0 0 8px rgba(0,122,255,0.8),
      0 0 20px rgba(0,122,255,0.6),
      0 0 35px rgba(0,122,255,0.4);
  }
  100% {
    text-shadow:
      0 0 4px rgba(0,122,255,0.4),
      0 0 10px rgba(0,122,255,0.3),
      0 0 20px rgba(0,122,255,0.2);
  }
}

.ugyfelszolgalat-box {
    background: #f8faff;
    padding: 20px;
    border-radius: 10px;
    border: 4px solid #007bff;
    margin-top: 20px;
}

.ugyfelszolgalat-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blue-link {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}











.status-btn{
	display:inline-block;
	padding:10px 22px;
	border-radius:999px;
	font-weight:700;
	font-size:14px;
	text-decoration:none;
	color:#ffffff;
	animation:pulse 3.5s infinite;
}

.status-btn.open{ background:#28a745; }
.status-btn.closed{ background:#dc3545; }

@keyframes pulse{
	0%{transform:scale(1);box-shadow:0 0 0 0 rgba(0,0,0,.25);}
	50%{transform:scale(1.04);box-shadow:0 0 0 10px rgba(0,0,0,0);}
	100%{transform:scale(1);box-shadow:0 0 0 0 rgba(0,0,0,0);}
}






@keyframes pulseArrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

#module_latest_wrapper .slick-prev,
#module_latest_wrapper .slick-next {
    animation: pulseArrow 2.5s infinite;
}





#module_latest_wrapper .slick-prev::after,
#module_latest_wrapper .slick-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(11,58,91,0.35);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}




/* 🔧 Slick alap elrejtések felülírása */
#module_latest_wrapper .slick-prev,
#module_latest_wrapper .slick-next {
    text-indent: 0 !important;
    overflow: visible !important;
}

/* Nyíl ikon – KÉNYSZERÍTETT MEGJELENÍTÉS */
#module_latest_wrapper .slick-prev::before,
#module_latest_wrapper .slick-next::before {
    content: "←" !important;          /* bal nyíl */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 700;
    color: #0b3a5b;
    z-index: 2;
    opacity: 1 !important;
    line-height: 1;
}

/* Jobb nyíl külön */
#module_latest_wrapper .slick-next::before {
    content: "→" !important;
}

/* Biztosítás: a gomb ne takarjon */
#module_latest_wrapper .slick-prev::after,
#module_latest_wrapper .slick-next::after {
    pointer-events: none;
}


/* =========================================================
   BESTSELLER MODUL – SLIDER NYILAK STÍLUSA
   ========================================================= */

/* Nyíl mögötti fehér gomb */
#module_bestseller_wrapper .slick-prev::after,
#module_bestseller_wrapper .slick-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(11,58,91,0.35);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Slick alap elrejtések felülírása */
#module_bestseller_wrapper .slick-prev,
#module_bestseller_wrapper .slick-next {
    text-indent: 0 !important;
    overflow: visible !important;
}

/* Nyíl ikon – bal */
#module_bestseller_wrapper .slick-prev::before {
    content: "←" !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 700;
    color: #0b3a5b;
    z-index: 2;
    opacity: 1 !important;
    line-height: 1;
}

/* Nyíl ikon – jobb */
#module_bestseller_wrapper .slick-next::before {
    content: "→" !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 700;
    color: #0b3a5b;
    z-index: 2;
    opacity: 1 !important;
    line-height: 1;
}

/* =========================================================
   BESTSELLER MODUL – PULZÁLÓ NYÍL GOMB
   ========================================================= */

@keyframes pulseArrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Pulzálás CSAK a gomb háttérre */
#module_bestseller_wrapper .slick-prev::after,
#module_bestseller_wrapper .slick-next::after {
    animation: pulseArrow 2.5s ease-in-out infinite;
}





/* =========================================================
   TERMÉK ADATLAP – FŐKÉP FELEMELKEDŐ HOVER (PROFI)
   ========================================================= */

.product-image__main-wrapper {
    position: relative;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Hover – természetes felemelkedés */
@media (hover: hover) and (pointer: fine) {
    .product-image__main-wrapper:hover {
        transform: translateY(-10px);
        box-shadow:
            0 22px 40px rgba(0,0,0,0.22),
            0 8px 16px rgba(0,0,0,0.14);
    }
}




/* =========================================================
   MOBIL – ÚJ TERMÉKEK MODUL
   MÉG KOMPAKTABB, STABIL SLIDER
   ========================================================= */

@media (max-width: 768px) {

    /* Modul környezet */
    #module_latest_wrapper {
        padding: 0 8px;
    }

    /* Termékkártya – SZŰKEBB */
    #module_latest_wrapper .product,
    #module_latest_wrapper .product-card {
        padding: 8px !important;
        margin: 0 !important;
    }

    /* KÉP – kisebb */
    #module_latest_wrapper img {
        max-height: 95px !important;
        width: 100% !important;
        object-fit: contain;
        margin-bottom: 6px;
    }

    /* Terméknév – tömörebb */
    #module_latest_wrapper h3,
    #module_latest_wrapper .product-name {
        font-size: 14px !important;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    /* Ár – hangsúlyos, de nem magas */
    #module_latest_wrapper .price {
        font-size: 18px !important;
        font-weight: 800;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    /* Részletek / Kosár gomb – kisebb */
    #module_latest_wrapper .btn-outline,
    #module_latest_wrapper .btn-secondary {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Kosár rész – szorosabb */
    #module_latest_wrapper .product-cart {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    #module_latest_wrapper .product-cart input {
        width: 44px;
        height: 34px;
        text-align: center;
        font-size: 13px;
    }

    #module_latest_wrapper .product-cart button {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Lapozó nyilak – diszkrétebb */
    #module_latest_wrapper .slick-prev,
    #module_latest_wrapper .slick-next {
        width: 32px;
        height: 32px;
        opacity: 0.75;
    }

    /* Árnyék – kisebb vizuális tömeg */
    #module_latest_wrapper .product-card {
        box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    }
}



/* =========================================================
   MOBIL – MOTOROK KÍNÁLATUNKBAN (BESTSELLER MODUL)
   KOMPAKT, STABIL SLIDER – AZ ÚJ TERMÉKEKKEL AZONOS MÉRET
   ========================================================= */

@media (max-width: 768px) {

    /* Modul környezet */
    #module_bestseller_wrapper {
        padding: 0 8px;
    }

    /* Termékkártya – kompakt */
    #module_bestseller_wrapper .product,
    #module_bestseller_wrapper .product-card {
        padding: 8px !important;
        margin: 0 !important;
    }

    /* KÉP – azonos méret */
    #module_bestseller_wrapper img {
        max-height: 95px !important;
        width: 100% !important;
        object-fit: contain;
        margin-bottom: 6px;
    }

    /* Terméknév – tömör */
    #module_bestseller_wrapper h3,
    #module_bestseller_wrapper .product-name {
        font-size: 14px !important;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    /* Ár – hangsúlyos */
    #module_bestseller_wrapper .price {
        font-size: 18px !important;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 6px;
        color: #0b3a5b;
    }

    /* Részletek / gombok */
    #module_bestseller_wrapper .btn-outline,
    #module_bestseller_wrapper .btn-secondary {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Kosár rész – szoros */
    #module_bestseller_wrapper .product-cart {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    #module_bestseller_wrapper .product-cart input {
        width: 44px;
        height: 34px;
        text-align: center;
        font-size: 13px;
    }

    /* Kosár gomb – UGYANAZ a neon-tap élmény */
    #module_bestseller_wrapper .product-cart button {
        background: #1e88e5;
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 10px rgba(30,136,229,0.35);
        transition: all 0.25s ease;
    }

    #module_bestseller_wrapper .product-cart button:active {
        background: linear-gradient(135deg, #00bfff, #1e90ff);
        box-shadow:
            0 0 14px rgba(0,191,255,0.95),
            0 6px 18px rgba(30,144,255,0.7);
        transform: scale(0.98);
    }

    /* Árnyék – finom */
    #module_bestseller_wrapper .product-card {
        box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    }

    /* Lapozó nyilak finomítása */
    #module_bestseller_wrapper .slick-prev,
    #module_bestseller_wrapper .slick-next {
        width: 32px;
        height: 32px;
        opacity: 0.75;
    }
}