/* Kategorie */
:root {
  --gold: #b8791c;
}
.popular-categories__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  display: block;
  color: #000;
  text-decoration: none;
  text-align: center;
}

.category-card__image {
  width: 100%;
  aspect-ratio: 0.83;
  overflow: hidden;
  background: #f5f5f5;
}

.category-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.category-card h3 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.category-card:hover .category-card__image img {
  transform: scale(1.035);
}

.category-card:hover h3 {
  color: var(--gold);
}

/* Tlačítko */

.popular-categories__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}



/* Tablet */

@media (max-width: 1200px) {
  .popular-categories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
  }
}

/* Mobil */

@media (max-width: 700px) {
  .popular-categories {
    padding: 32px 16px;
  }

  .popular-categories__heading h2 {
    font-size: 24px;
  }

  .popular-categories__divider > span:not(.popular-categories__heart) {
    width: 65px;
  }

  .popular-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
  }

  .category-card h3 {
    font-size: 13px;
  }

  .popular-categories__footer {
    margin-top: 24px;
  }
}





.social-section {
  position: relative;
  overflow: hidden;

  min-height: 205px;

  background: rgba(184, 121, 28, 0.035);
    padding: 20px 40px;
margin-bottom: 40px;
}

.social-section__container {
  min-height: 205px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

/* Levá část */

.social-section__content {
  flex: 1;
  padding: 28px 0;
}


.social-section__content p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* Ikony */

.social-section__icons {
  display: flex;
  align-items: center;

  gap: 20px;
}

.social-icon-custom {
  width: 52px;
  height: 52px;

  display: inline-flex!important;
  align-items: center;
  justify-content: center;
	color: var(--gold)!important;
  border: 1px solid var(--gold);
  border-radius: 50%;


  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.social-icon-custom:hover {
  background: var(--gold);
  color: #fff!important;

  transform: translateY(-3px);
}


/* Pravá vizuální část */

.social-section__visual {
  position: relative;

  width: 405px;

  flex: 0 0 405px;
}





/* Tablet */

@media (max-width: 768px) {
  .social-section__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-section__visual {
    align-self: center;
  }

  .social-section__content {
    width: 100%;
    text-align: center;
  }

  .social-section__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .social-section__icons {
    justify-content: center;
  }
}

/* Mobil */

@media (max-width: 768px) {

  .social-section__container {
  }


  .social-section__icons {
    gap: 12px;
  }

  .social-icon {
    width: 44px;
    height: 44px;

    font-size: 24px;
  }

  .social-section__visual {
  width: 100%;
  flex: 0 0 auto;
  }


}

/* Nadpis */

.heart-heading {
  text-align: center;
  margin-bottom: 22px;
}
.heart-heading.left {
text-align: left;
}
@media (max-width: 768px) {
.heart-heading.left {
text-align: center;
}
}
.heart-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
}

.heart-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.heart-heading.left .heart-heading-divider {
justify-content: flex-start;
}
@media (max-width: 768px) {
.heart-heading.left .heart-heading-divider {
justify-content: center;
}
}
.heart-heading-divider > span:not(.heart-heading-heart) {
  display: block;
  width: 96px;
  height: 1px;
  background: var(--gold);
}

.heart-heading-heart {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}


.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.contact-section .headline {
  color: var(--gold);
  font-size: 20px;
}
.contact-section .info-section {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-section .contact-item {
display: flex;
gap: 10px;
}
.contact-section .contact-text a {
margin-bottom: 5px;
}
.contact-section .contact-text span, .contact-section .contact-text a {
display: block;
}
.contact-section .social-icon-custom {
height: 44px;
width: 44px;
}
.contact-section .contacts {
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-section .form-native > p {
display: none;
}
.social-icon-custom.no-hover:hover {
background: #fff;
    color: var(--gold) !important;
    transform: translateY(0);
}
.contact-section .contact-info {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 20px;
}
@media (max-width: 768px) {
.contact-section {
    grid-template-columns: repeat(1, 1fr);
}
}
.custom-footer .footer-banner {
display: flex;
flex-direction: column;
gap: 20px;
}
.custom-footer .footer-banner .social-icon-custom {
width: 32px;
height: 32px;
}
.custom-footer .footer-banner .social-section__icons {
justify-content: flex-start;
}

.custom-footer .footer-banner h5{
color: var(--gold);
text-transform: uppercase;
font-size: 20px;
font-weight: 500;

}
.custom-footer .pageElement__heading {
text-transform: uppercase;
font-size: 20px;
font-weight: 500;
}


