/*  Buttons Module */

.buttons-module{
  padding: 80px 60px;
}

/* v1*/
.buttons-module.buttons-v1 .buttons-header {
  text-align: center;
  margin-bottom: 40px;
}

.buttons-module.buttons-v1 .buttons-main-title {
  text-transform: uppercase;
  margin: 0;
}

.buttons-module.buttons-v1 .buttons-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.buttons-module.buttons-v1 .buttons-tabs-nav:has(.buttons-tab:nth-child(9)) {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
}

.buttons-module.buttons-v1 .buttons-tabs-nav:has(.buttons-tab:nth-child(9))::-webkit-scrollbar {
  display: none;
}
.buttons-module.buttons-v1 .buttons-tabs-nav:has(.buttons-tab:nth-child(9)) {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.buttons-module.buttons-v1 .buttons-tab {
  background: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  padding: 16px 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  max-width: 160px;
}

.buttons-module.buttons-v1 .buttons-tab .tab-icon {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-module.buttons-v1 .buttons-tab .tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buttons-module.buttons-v1 .buttons-tab .tab-title {
  text-align: center;
  text-transform: uppercase;
}

.buttons-module.buttons-v1 .buttons-tab.active {
  background: var(--color-primary);
}

.buttons-module.buttons-v1 .buttons-tab.active .tab-title {
  color: var(--color-background-white);
  font-weight: 700;
}

.buttons-module.buttons-v1 .buttons-swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.buttons-module.buttons-v1 .buttons-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.buttons-module.buttons-v1 .slide-content-wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 24px;
}

.buttons-module.buttons-v1 .slide-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-module.buttons-v1 .slide-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buttons-module.buttons-v1 .slide-title {
  text-transform: uppercase;
  margin: 0;
}
.buttons-module.buttons-v1 .slide-cta,
.buttons-module.buttons-v1 .slide-cta:visited {
  margin-inline: auto;
  display: inline-flex; 
  align-items: center;  
  gap: 14px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.buttons-module.buttons-v1 .slide-cta::after {
  content: '';
  display: block;       
  width: 24px;
  height: 24px;
  flex-shrink: 0; 
  background-color: var(--color-primary);
  mask-image: url('../../assets/east.svg');
  -webkit-mask-image: url('../../assets/east.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.buttons-module.buttons-v1 .buttons-controls {
  border-top: 1px solid var(--color-primary);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buttons-module.buttons-v1 .buttons-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buttons-module.buttons-v1 .pagination-bullet {
  background: transparent;
  border: none;
  color: var(--color-neutral-beige-dark);
  font-family: var(--typo-title-2-regular-font);
  font-size: var(--typo-title-2-size-regular);
  font-weight: var(--typo-title-2-regular-fw);
  line-height: var(--typo-title-2-regular-lh);
  letter-spacing: var(--typo-title-2-regular-ls);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}

.buttons-module.buttons-v1 .pagination-bullet:hover,
.buttons-module.buttons-v1 .pagination-bullet.active {
  color: var(--color-primary);
  font-weight: 700;
}

.buttons-module.buttons-v1 .buttons-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.buttons-module.buttons-v1 .buttons-nav-prev,
.buttons-module.buttons-v1 .buttons-nav-next {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.buttons-module.buttons-v1 .buttons-nav-prev svg,
.buttons-module.buttons-v1 .buttons-nav-next svg {
  width: 15px;
}

.buttons-module.buttons-v1 .buttons-nav-prev svg {
  transform: rotate(90deg);
}

.buttons-module.buttons-v1 .buttons-nav-next svg {
  transform: rotate(270deg);
}

.buttons-module.buttons-v1 .buttons-nav-prev.swiper-button-disabled,
.buttons-module.buttons-v1 .buttons-nav-next.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}

/* v2 */
.buttons-module.buttons-v2 .buttons-header {
  text-align: center;
  margin-bottom: 48px;
}

.buttons-module.buttons-v2 .buttons-main-title {
  text-transform: uppercase;
  margin: 0;
}

.buttons-module.buttons-v2 .buttons-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.buttons-module.buttons-v2 .buttons-tab {
  padding: 24px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

.buttons-module.buttons-v2 .buttons-tab .tab-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-module.buttons-v2 .buttons-tab .tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buttons-module.buttons-v2 .buttons-tab .tab-title {
  text-align: left;
  text-transform: uppercase;
  margin: 0;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
  .buttons-module.buttons-v2 .buttons-tabs-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 900px) {

  .buttons-module.buttons-v1 .buttons-tabs-nav {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .buttons-module.buttons-v1 .buttons-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .buttons-module.buttons-v2 .buttons-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .buttons-module{
    padding: 40px 20px;
  }
  .buttons-module.buttons-v2 .buttons-tab .tab-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .buttons-module.buttons-v2 .buttons-tabs-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}




