html {

}
body {
 font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 0.9rem;
  background-color: #fff;

}


/*tw logo*/
.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-glow {
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.hover-scale {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
}



/* menü */
#navmenu{
	font-size:0.95rem;
}



/* Sötét dropdown menü */
.navbar .dropdown-menu {
    background-color: #232f3e;
    font-size: 0.875rem; /* kisebb betűméret */
}

/* Menüpont szöveg színe */
.navbar .dropdown-menu .dropdown-item {
    color: #ffffff;
}

/* Hover szín sötét háttérhez */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #3a4553;
    color: #ffc107; /* pl. sárgás kiemelés */
}

/* Választható: divider stílus is sötét */
.navbar .dropdown-divider {
    border-top: 1px solid #444;
}


.logo-icon {
  height: 0.9em;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}



/*topkateg*/
.category-icon {
  max-width: 150px;
  height: 80px;
  object-fit: contain;
  border-radius: 0.5rem;
}


a.nav-link, a.dropdown-item{
	
	color:#fff;
}





.category-card {
    transition: box-shadow 0.2s ease, border 0.2s ease;
    cursor: pointer;
	    --animate-delay: 0s;
    animation-delay: var(--animate-delay);
    opacity: 0;

}

.category-card:hover {
    border: 1px solid #ffc107; /* sárga keret */
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.category-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;        /* lekerekítés */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* finom árnyék */
}

.category-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}


.category-product-thumb:hover {
    border: 1px solid #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}
.category-card:hover .category-product-thumb {
    opacity: 1;
    transform: translateY(0);
}




/*Cart*/

.cart-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex; /* vagy inline-flex, ha kell */
  align-items: center;
  justify-content: flex-end; /* 👉 ez tolja jobbra a belső tartalmat */
  position: relative;
  width:200px;
}


.cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  width: 300px;
  z-index: 1000;
  border-radius: 6px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.12); 
}


@keyframes rotateY {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

#cartIcon {
  display: inline-block;
  text-shadow: 4px 4px 10px rgba(255, 193, 7, 0.6); /* sárgás árnyék */

}



#cartIcon:hover {
  animation: rotateY 0.6s linear;
}

.wishlist-header-icon {
    font-size: 1.6rem;
}



/*atrributumok-prduct oldal*/
.pr_attrib h6{
	font-size:0.9rem !important;
}

/* --- Product attribute options --- */

.attribute-options input[type="radio"] {
  display: none;
}

.attribute-options label {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hoverre: balról jobbra feltöltődés */
.attribute-options label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #16a34a);
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 0;
  border-radius: inherit;
}

/* Hover állapot */
.attribute-options label:hover::before {
  left: 0;
  opacity: 0.2;
}

/* Tartalom mindig a fedőréteg fölött marad */
.attribute-options label * {
  position: relative;
  z-index: 1;
}

/* Hover fény */
.attribute-options label:hover {
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

/* ✅ Kiválasztott (checked) elem – maradjon ugyanaz az átmenetes zöld */
.attribute-options input[type="radio"]:checked + label {
  color: #0d6efd;
  border-color: #16a34a;
  background-color: #d8f5e3;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}


/*checkout- vásárlásbefejezése űrlap*/
#checkoutOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none; 
}

  /* Nagyobb checkbox */
  #obligatory-check.form-check-input.big-checkbox {
    width: 1.4em;
    height: 1.4em;
    margin-top: 0.25em;
  }

  /* Igazítás a szöveghez */
  #obligatory-check.form-check-label {
    margin-left: 0.5em;
    font-size: 1.05rem;
  }

.is-invalid { border-color: #dc3545 !important; }
.bg-danger-subtle { background-color: #f8d7da !important; }


.pulse-border {
  animation: pulseBorder 1s infinite;
  border-color: #dc3545 !important;
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(220, 53, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.accordion-header {
  position: relative;
}

.accordion-valid-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #198754; /* Bootstrap zöld */
  font-size: 1.2rem;
  display: none;
}
.accordion-header.valid .accordion-valid-icon {
  display: inline;
}


.payment-logo {
  height: 7vh;

  }

/*checkout- vásárlásbefejezése űrlap*/

a.mainlogo{
	text-decoration:none;
	
}
  .s_bar {
      background-color: #343a40;
    }

    #navsrc {
      max-width: 400px;
    }

    img.catimg:hover {
      transform: scale(1.1);
      cursor: pointer;

    }

    p.small {
      font-size: 12px;

    }

    .starchecked {
      color: orange;
    }

    .s_bar {
      background-color: #343a40;
    }

    #navsrc {
      max-width: 400px;
    }

    img.catimg:hover {
      transform: scale(1.1);
      cursor: pointer;

    }

    p.small {
      font-size: 12px;

    }

    .starchecked {
      color: orange;
    }

    .b1,
    .j1 {
      min-height: 500px;

    }

    .b1 {
      background-color: #fff;
    }

    .j1 {
      background-color: aqua;
    }
	



   /*képvalto -product*/
   .image-viewer {
    max-width: 600px; /* vagy 100% */
    width: 100%;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 arány, működik ha a szélesség ismert */
    overflow: hidden;
    background-color: #f4f4f4; /* csak teszteléshez, később kivehető */
}


.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.thumbnails-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 10px;
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    z-index: 2;
}

.thumbnails-overlay::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.thumbnail {
    width: 60px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.selected-thumb {
    border-color: yellow;
}

.lightbox-wrapper {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

   /*képvalto -product*/
	

	



.card.compact-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/*kosar*/
#cartPageTotals{
	font-size:1rem;
}

#cartDropdown {
            background: white;
            border: 1px solid #ccc;
        }
		
@media (max-width: 768px) {
  #cartContent table {
    font-size: 0.9rem;
  }

  #cartContent table td,
  #cartContent table th {
    white-space: nowrap;
  }

  #cartContent .input-group {
    max-width: 100px;
  }

  #cartContent .btn {
    padding: 0.25rem 0.4rem;
  }

  #cartContent .form-control {
    padding: 0.25rem 0.3rem;
    font-size: 0.85rem;
  }
}

#cartContent .input-group input {
  max-width: 50px;
}


@media (max-width: 576px) {
  #cartContent .flex-shrink-0 {
    width: 100% !important;
  }
}

	

/*add to cart*/


.cart-added-modal .modal-dialog{
  max-width: 760px;
  width: calc(100% - 24px);
}

.cart-added-modal__content{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  position: relative;
  background: #fff;
}

.cart-added-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background-size: 12px;
}

.cart-added-modal__top{
  padding: 28px 28px 18px;
  border-bottom: 1px solid #ececec;
}

.cart-added-modal__status{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cart-added-modal__status-icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f8ef;
  color: #119c63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 48px;
}

.cart-added-modal__status-title{
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.15;
}

.cart-added-modal__status-sub{
  font-size: 15px;
  color: #6b7280;
  margin-top: 3px;
}

.cart-added-modal__product-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #f8f9fa;
  border-radius: 18px;
  padding: 18px 18px;
  margin-bottom: 18px;
}

.cart-added-modal__product-info{
  min-width: 0;
  flex: 1 1 auto;
}

.cart-added-modal__product-name{
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cart-added-modal__product-note{
  font-size: 14px;
  color: #6b7280;
}

.cart-added-modal__product-image-wrap{
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
}

.cart-added-modal__product-image{
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}

.cart-added-modal__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-added-modal__btn{
  min-height: 50px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-added-modal__btn--light{
  background: #f3f4f6;
  color: #1f2937;
  border: 1px solid #e5e7eb;
}

.cart-added-modal__btn--light:hover{
  background: #e9ecef;
}



.cart-added-modal__bottom{
  padding: 22px 28px 28px;
}

.cart-added-modal__related-title{
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 22px;
}

.cart-added-modal__related-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cart-added-modal__related-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #f8f9fa;
  transition: .2s ease;
  min-height: 92px;
}

.cart-added-modal__related-card:hover{
  background: #eef1f4;
  transform: translateY(-1px);
}

.cart-added-modal__related-img-wrap{
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  overflow: hidden;
}

.cart-added-modal__related-img{
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.cart-added-modal__related-name{
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}
.cart-added-modal__related-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:14px;
  background:#f8f9fa;
}

.cart-added-modal__related-link{
  min-width:0;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.cart-added-modal__related-link:hover{
  text-decoration:none;
}

.modal-add-related{
  flex:0 0 auto;
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}


@media (max-width: 767.98px){
  .cart-added-modal__top{
    padding: 20px 16px 16px;
  }

  .cart-added-modal__bottom{
    padding: 18px 16px 20px;
  }

  .cart-added-modal__status-title{
    font-size: 18px;
  }

  .cart-added-modal__status-sub{
    font-size: 13px;
  }

  .cart-added-modal__product-row{
    flex-direction: column-reverse;
    text-align: center;
    padding: 14px;
  }

  .cart-added-modal__product-name{
    font-size: 17px;
  }

  .cart-added-modal__actions{
    grid-template-columns: 1fr;
  }

  .cart-added-modal__related-title{
    font-size: 16px;
  }

  .cart-added-modal__related-grid{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 576px){
	
	body.modal-open {
  padding-right: 0 !important;
}

    .cart-added-modal .modal-dialog{
    max-width: 350px;   /* 🔥 fix szélesség */
    margin: 12px auto;  /* középre */
  }

  .cart-added-modal__top{
    padding: 12px 10px 10px;
  }

  /* Header */
  .cart-added-modal__status{
    gap: 8px;
    margin-bottom: 10px;
  }

  .cart-added-modal__status-icon{
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cart-added-modal__status-title{
    font-size: 14px;
    line-height: 1.2;
  }

  .cart-added-modal__status-sub{
    font-size: 11px;
  }

  /* Termék */
  .cart-added-modal__product-row{
    padding: 8px;
    gap: 6px;
  }

  .cart-added-modal__product-name{
    font-size: 13px;
  }

  .cart-added-modal__product-note{
    font-size: 11px;
  }

  .cart-added-modal__product-image{
    max-width: 120px;
    max-height: 120px;
  }

  /* Gombok */
  .cart-added-modal__actions{
    gap: 6px;
  }

  .cart-added-modal__btn{
    min-height: 38px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* Bottom */
  .cart-added-modal__bottom{
    padding: 10px 10px 12px;
  }

  .cart-added-modal__related-title{
    font-size: 12px;
    margin-bottom: 8px;
  }

  .cart-added-modal__related-card{
    padding: 8px;
    gap: 8px;
    min-height: 60px;
  }

  .cart-added-modal__related-img-wrap{
    width: 40px;
    height: 40px;
  }

  .cart-added-modal__related-img{
    width: 34px;
    height: 34px;
  }

  .cart-added-modal__related-name{
    font-size: 12px;
    line-height: 1.2;
  }
  
   .modal-add-related{
    width:34px;
    height:34px;
  }
}


/*add to cart end*/	
		
		/*keresés*/
		
#searchResults {
    position: absolute;
    z-index: 2000;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item img {
    flex-shrink: 0;
}

#navsrc {
    position: relative;
}

.nav-search-input{
    border-radius: 5px;
    padding-right: 35px; /* spinner helye */
}

.live-search-spinner{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    display:none;
    z-index:10;
    width:1rem;
    height:1rem;
    pointer-events:none;
}


.star-rating .fa-star {
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating .fa-star.hovered,
.star-rating .fa-star.selected {
  color: #f0ad4e;
}

.rating-status {
  transition: opacity 0.3s ease;
  opacity: 0;
}


/*product oldal*/
.attr-option-label.is-disabled {
  opacity: .55;
  cursor: not-allowed;
}
.attr-option-label.is-disabled small.text-muted {
  font-style: italic;
}

.attribute-options .btn-outline-secondary {
    border-radius: 0.4rem;
    padding: 0.3rem 0.8rem;
    min-width: 80px;
    text-align: center;
}


.attribute-options input[type="radio"] {
    display: none;
}

.attribute-options label {
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    border: 1px solid #0d6efd; 
    border-radius: 0.2rem;
    background-color: #fff;
    color: #0d6efd;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
}




.stock-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    user-select: none;
}

/* Állapot: Raktáron */
.stock-status-pill.in-stock {
    background-color: #ebf9ee;
    border: 1px solid #b8e4c0;
    color: #00b221;
}

.stock-status-pill.in-stock .dot {
    background-color: #00b221;
}

/* Állapot: Külső raktárról */
.stock-status-pill.external-stock {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    color: #ffc107;
}

.stock-status-pill.external-stock .dot {
    background-color: #ffc107;
}

/* Állapot: Nincs készleten */
.stock-status-pill.out-of-stock {
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #dc3545;
}

.stock-status-pill.out-of-stock .dot {
    background-color: #dc3545;
}

.stock-status-pill .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

@keyframes flash-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
  50% { box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.6); }
}

.highlight {
  animation: flash-border 0.4s ease-in-out 3;
}


.single-product-rating {
  font-size: 1.0rem;
  color: #ffd700; /* arany-sárga a kiválasztott csillagoknak */
}

.single-product-rating .fa-star {
  margin-right: 0.1rem;
  color: #ddd;    /* alap csillagok színe */
}

.single-product-rating .fa-star.selected {
  color: #ffc107; /* kitöltött csillag színe */
}

.prods{
  flex: 1 1 auto;
  max-height: 320px;  
  overflow-y: auto;
}

.tshDesc img{
	max-height:5rem;
}

.tshDesc p{
	text-align:justify;
}


.tDesc p{	
	font-size:1rem;
}


/*képváltó product aloldal*/
#productCarousel .carousel-item {
  height: 300px;   
  overflow: hidden;  
}

#productCarousel .carousel-item img,
#productCarousel .carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#productCarousel {
  margin-top: -1.95rem; /* finoman feljebb tolja a képrészt */
}

@media (max-width: 992px) {
  .prod_bal #productCarousel {
    margin-top: -1.2rem; /* mobilon ne tolja össze */
  }
}
/*  Sötét nyilak fehér háttérhez */
.carousel-control-prev-icon.dark-arrow,
.carousel-control-next-icon.dark-arrow {
  filter: invert(1) grayscale(100%) brightness(0.3); /* sötét szürke nyíl fehér háttérhez */
}

/*  Hover-re kicsit világosabb */
.carousel-control-prev:hover .dark-arrow,
.carousel-control-next:hover .dark-arrow {
  filter: invert(0.9) grayscale(50%) brightness(0.6);
}

/*  Nyilak mérete és elhelyezése */
.custom-control {
  width: 5%;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.custom-control:hover {
  opacity: 1;
}

/* 🔹 Kis pöttyök */
.carousel-indicators [data-bs-target] {
  background-color: #666;
}
.carousel-indicators .active {
  background-color: #000;
}

/*IMG Zoomer*/
.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: #f8f9fa;
}

.zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease;
    will-change: transform;
}
/* =========================
   MODAL NAV (maradhat)
========================= */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all .2s ease;
}

.modal-nav:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev { left: 10px; }
.modal-nav.next { right: 10px; }


/* =========================
   DESKTOP
========================= */
#imageModal .modal-body {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

#imageModal #modalImage {
    max-height: 75vh;
    width: auto;
    object-fit: contain;
}


/* =========================
   MOBIL
========================= */
@media (max-width: 768px) {

    #imageModal .modal-dialog {
        margin: 0.5rem;
    }

    #imageModal .modal-body {
        min-height: auto;            /* EZ A LÉNYEG */
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #imageModal #modalImage {
        max-height: 60vh;            /* ne legyen túl magas */
        width: 100%;
        height: auto;
    }

    /* kisebb nyilak */
    .modal-nav {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .modal-nav.prev { left: 6px; }
    .modal-nav.next { right: 6px; }
}


/*termékspecifikaciok*/
.product-specs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  border-radius: 5px;
  padding:10px 5px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-specs .spec-item {
  text-align: center;
  width: 22%;
  min-width: 100px;
  margin: 8px 0;
  transition: transform 0.2s ease;
}

.product-specs .spec-item:hover {
  transform: translateY(-4px);
}

.product-specs img {
  width: 28px;
  height: 28px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.spec-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #222;
}

.spec-label {
  font-size: 0.75rem;
  color: #777;
  letter-spacing: 0.3px;
}



/*Mobilnézet*/

/*kosár*/
@media (max-width: 576px) {
  #cartContent .table {
    min-width: 600px; 
  }

  .table-responsive {
    -webkit-overflow-scrolling: touch; 
  }
}


/*szűrődoboz*/
/* Letisztultabb szűrődoboz dizájn */
.filter-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* Offcanvas testreszabás */
.offcanvas {
    background-color: #fdfdfd;
}

.offcanvas .form-control,
.offcanvas .form-select {
    background-color: #fff;
    border-radius: 6px;
}

.btn-dark {
    background-color: #333;
    border: none;
}

.btn-outline-dark {
    border-color: #aaa;
    color: #333;
}
.form-range {
    accent-color: #333 !important;
}

.form-check-label {
    font-size: 0.9rem;
    color: #555;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    border: none;
}





/*slider fo oldal*/
.image-slider {
  position: relative;
}

/* Képek váltása */
.image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.image-slider img.active {
  opacity: 1;
  z-index: 2;
}

/* Főkép szöveg új stílusa */

.auto-slide .slider-caption {
  position: absolute;
  bottom: 10%;
  left: 20px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  z-index: 3;
  text-align: left;
  padding-right: 1rem;
  max-width: 80%;
}



/* Kisképeken szintén overlay caption */
.image-slider.hover-slide .slider-caption {
  position: absolute;
  bottom: 10%;
  left: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  z-index: 3;
  text-align: left;
  padding-right: 1rem;
  max-width: 80%;
  pointer-events: none;
}

.image-slider.hover-slide .slider-caption p {
  margin: 0;
}

.auto-slide .slider-caption p {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.auto-slide .slider-caption p.visible {
  opacity: 1;
}




/*slider fo oldal*/



/*checkout*/
/* 🔘 Alap stílus */
.btn-check + .btn {
  border: 2px solid #dee2e6; /* halvány szürke szegély */
  background-color: #fff;
  color: #212529;
  transition: all 0.2s ease-in-out;
}

/* 🖱 Hover állapot */
.btn-check + .btn:hover {
  background-color: #f8f9fa;       /* világos szürke */
  border-color: var(--bs-success); /* zöld szegély */
}

/* ✅ Kijelölve (checked) */
.btn-check:checked + .btn {
  background-color: #f8f9fa;        /* világos szürke háttér */
  border-color: var(--bs-success); /* zöld szegély */
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.3); /* success árnyék */
  color: #212529;
}



/*checkout*/


/*single product kép*/
#desc img.balra {
  float: left;          
  max-width: 50%;        
  height: auto;           
  margin: 0 1rem 1rem 0;   
  object-fit: contain;
	
}

#desc img.jobbra {
    float: right;
    margin: 0 0 1rem 1rem;
    max-width: 50%;
	
}
#desc img.center {
    display: block;
    margin: 0.5rem auto;
    max-width: 50%;

}

#desc p{
	margin-bottom:2px;
	text-align:justify;
	color:#6c757d;
	margin-bottom:10px;
}


/*top products*/

.top-products-header h2 {
  font-weight: 800;
  font-size: 2.2rem;
  color: #232f3e;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  position: relative;
}

.top-products-header .underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fa4616 0%, #ff9f45 100%);
  border-radius: 2px;
  margin-top: 8px;
}


/*footer*/


.teya-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.08); /* halvány zöld háttér */
  border: 1px solid rgba(34, 197, 94, 0.35); /* zöld keret */
}

.teya-badge img{
  height: 28px;
  object-fit: contain;
}

/*B1 jobb oszlop*/

.right-sidebar-scroll {
    max-height: 100%;
    overflow-y: auto;
}

/*bankkártya redirect oldal:*/

#loadingSpinner {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  /* Pulsáló gömbök */
  .pulse-loader {
    display: flex;
    gap: 0.5rem;
  }
  .pulse-loader .dot {
    width: 1rem;
    height: 1rem;
    background: #0d6efd; /* bootstrap primary */
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
  }
  .pulse-loader .dot:nth-child(2) {
    animation-delay: 0.2s;
  }
  .pulse-loader .dot:nth-child(3) {
    animation-delay: 0.4s;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.5; }
  }
  
  
  /*cookie consent*/
  .cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 9999;
}

.cookie-consent .cookie-content {
    background-color: #fff;
    border: 1px solid #ccc;
}


/*blog*/
  .blog-card {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  
 section.blog{
	 
	background:#fff;
 }
 
 
 img#blogcover{
	 max-height:300px;
 }

.blog-content{
	
	text-align:justify;
}

.adatlap-btn {
  position: relative;
  overflow: hidden;

  border: 1px solid #199588;
  background: #fff !important;
  color: #199588 !important;

  border-radius: 0.4rem;
  transition: all 0.25s ease-in-out;
}

/* bootstrap tiltás */
.adatlap-btn.btn-outline-success:hover,
.adatlap-btn.btn-outline-success:focus,
.adatlap-btn.btn-outline-success:active {
  background: #fff !important;
  color: #166534 !important;
  border-color: #199588 !important;
}

/* 🔥 egyszínű halvány zöld overlay */
.adatlap-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: inherit;

  background: rgba(34, 197, 94, 0.12); /* ← EZ A LÉNYEG */

  transition: left 0.4s ease;
  z-index: 0;
}

.adatlap-btn:hover::before {
  left: 0;
}

/* tartalom felül */
.adatlap-btn > * {
  position: relative;
  z-index: 1;
}

/* finom glow */
.adatlap-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.08),
    0 0 8px rgba(34,197,94,0.18),
    0 4px 10px rgba(34,197,94,0.12);
}
.adatlap-btn i {
  transition: transform 0.25s ease-in-out;
}

.adatlap-btn:hover i {
  transform: translateX(3px);
}


/*track*/
@media (min-width: 768px) {
  .row.g-4 {
    align-items: stretch;
  }
}
