/* kategória ajánló */


.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Desktop */
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: #222;
 transition: transform 0.25s ease;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
	  transition: opacity 0.25s ease;
}

.category-card:hover img {
  opacity: 0.75;
}


.category-card span {
  font-size: 14px;
  line-height: 1.3;
}

.category-card:hover span {
  text-decoration: underline;
}


.category-card:hover {
  transform: translateY(-2px);
}


@media (max-width: 767px) {
  .category-grid{
    justify-items: center;      
    gap: 12px;                 
  }

  .category-card{
    align-items: center;       
  }

  .category-card img{
    width: clamp(56px, 18vw, 92px);  
    max-width: 92px;
    margin-bottom: 6px;
  }

  .category-card span{
    font-size: 13px;
    max-width: 90px;            
    white-space: normal;
    word-break: break-word;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .category-grid{
    gap: 18px;
    justify-items: center;
  }

  .category-card{
    align-items: center;
  }

  .category-card img{
    width: clamp(64px, 9vw, 96px);
    margin-bottom: 8px;
  }

  .category-card span{
    font-size: 14px;
    max-width: 110px;
    white-space: normal;
    word-break: break-word;
  }
}


@media (min-width: 1025px) {
  .category-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.category-card span {
  white-space: normal;        
  word-break: keep-all;      
  overflow-wrap: normal;    
  hyphens: none;             
}

/* modulok közötti tér */

.main-content .module:not(.module-search-criteria) {
margin-bottom: 80px;
}

@media (max-width: 576px) {
.main-content .module:not(.module-search-criteria) {
    margin-bottom: 40px;
}
}

/* hírlevél feliratkozás */

.module-newsletter_subscribe-wrapper .home-position {
    background: url('/custom/gbeauty1/image/data/design/hirlevel-bg.jpg') no-repeat center center;
    background-size: cover;
}

.module-newsletter_subscribe-wrapper .home-position .module-body, .module-newsletter_subscribe-wrapper .home-position .module-head-title {
    max-width: 750px;
    margin-left: auto;
    margin-right: initial;
    text-align: left;
    padding: 20px;
    border-radius: 30px;
}

/* lokáció modul */

.location-placeholder {
    width: 500px !important;
}

.location-wrapper-box-right {
border-radius: 0px;
}

.location-pic {
    width: 100%;             
    height: auto;            
    aspect-ratio: 1 / 1;      
    object-fit: cover;        
    max-width: 500px;         
    border-radius: 10px;      
}

.location-wrapper-box-right {
    border-radius: 0px;
    border: 0px;
}

/* termékoldali előnyök  */

img.product-advantages-item__image
 {
    border-radius: 20px;
}