/* Mobile fixes for ggtest */

/* Task 5: Business Profitability - text under button on mobile */
@media all and (max-width: 1120px) {
  .tabs__row {
    flex-direction: column;
  }
  
  .tabs__row .col:first-child {
    order: 2;
  }
  
  .tabs__row .col:last-child {
    order: 1;
    margin-bottom: 20px;
  }
  
  .tabs__img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .tabs__item {
    padding: 20px 15px;
  }
  
  .tabs__text {
    margin-bottom: 15px;
  }
  
  .tabs__content {
    height: auto;
    min-height: auto;
  }
}

/* Task 6: Remove GGP Brands buttons that don't work */
.products__btn-wrap {
  display: none !important;
}

/* Social buttons styling */
.hero-social {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.hero-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-social__link:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.hero-social__link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media all and (max-width: 768px) {
  .hero-social {
    position: fixed;
    bottom: 20px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 20px;
  }
  
  .hero-social__link {
    width: 45px;
    height: 45px;
  }
}
