/* ============================================
   ABSLIM - ХЕДЕР (РОЗОВЫЙ), МОБИЛЬНОЕ МЕНЮ, ФУТЕР
   ============================================ */

/* ---------- ХЕДЕР (ДЕСКТОП И МОБИЛКА) - РОЗОВЫЙ ФОН, БЕЛЫЕ БУКВЫ ---------- */
.abslim-header-nav {
  background: #df6092;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.abslim-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.abslim-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.abslim-nav-item {
  margin: 0;
}

.abslim-nav-link {
  display: block;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 0;
  position: relative;
  transition: opacity 0.3s ease;
}

.abslim-nav-link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.abslim-nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.abslim-nav-link:hover::after {
  width: 100%;
}

/* ---------- КНОПКА БУРГЕР (МОБИЛЬНАЯ) - БЕЛАЯ С РОЗОВЫМИ ПОЛОСКАМИ ---------- */
.abslim-mobile-toggle {
  display: none;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px 15px;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.abslim-mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #df6092;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.abslim-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.abslim-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.abslim-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- МОБИЛЬНОЕ МЕНЮ (РАСКРЫТИЕ) - РОЗОВЫЙ ФОН, БЕЛЫЕ БУКВЫ ---------- */
@media screen and (max-width: 768px) {
  .abslim-nav-container {
    justify-content: flex-start;
  }
  
  .abslim-mobile-toggle {
    display: block;
  }
  
  .abslim-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #df6092;
    padding: 15px 0;
    margin: 0;
    z-index: 999;
    gap: 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .abslim-nav-menu.active {
    display: flex;
  }
  
  .abslim-nav-item {
    width: 100%;
    text-align: center;
  }
  
  .abslim-nav-link {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
  }
  
  .abslim-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    opacity: 0.9;
  }
  
  .abslim-nav-link::after {
    display: none;
  }
  
  .abslim-nav-item:last-child .abslim-nav-link {
    border-bottom: none;
  }
}

/* ---------- ФУТЕР (ДЕСКТОП) ---------- */
.abslim-footer-container {
  background: #1a1a2e;
  padding: 45px 0 35px;
  border-top: 3px solid #df6092;
}

.abslim-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.abslim-footer-nav {
  margin-bottom: 25px;
}

.abslim-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.abslim-footer-item {
  margin: 0;
}

.abslim-footer-link {
  color: #e0e0e0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.abslim-footer-link:hover {
  color: #df6092;
}

.abslim-footer-copyright {
  color: #888888;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- ФУТЕР (МОБИЛЬНЫЙ) ---------- */
@media screen and (max-width: 768px) {
  .abslim-footer-container {
    padding: 35px 0 25px;
  }
  
  .abslim-footer-menu {
    flex-direction: column;
    gap: 15px;
  }
  
  .abslim-footer-link {
    font-size: 14px;
  }
  
  .abslim-footer-copyright {
    font-size: 12px;
  }
}





/* ============================================
   ABSLIM - СТРАНИЦА КОНТАКТОВ
   ============================================ */

.abslim-contact-page {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 60vh;
}

.abslim-contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.abslim-contact-heading {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.abslim-contact-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #2E8B57;
  border-radius: 2px;
}

.abslim-contact-intro {
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.abslim-contact-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.abslim-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.abslim-contact-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.abslim-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(223, 96, 146, 0.15);
  border-color: rgba(223, 96, 146, 0.3);
  background: #ffffff;
}

.abslim-contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.abslim-contact-item-title {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

.abslim-contact-item-text {
  color: #555;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.abslim-contact-link {
  color: #2E8B57;
  text-decoration: none;
  transition: color 0.3s ease;
}

.abslim-contact-link:hover {
  color: #df6092;
  text-decoration: underline;
}

.abslim-contact-hours {
  color: #888;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 10px;
}

.abslim-contact-note {
  margin-top: 40px;
  padding: 25px 30px;
  background: rgba(46, 139, 87, 0.05);
  border-radius: 12px;
  border-left: 4px solid #2E8B57;
}

.abslim-contact-note-text {
  color: #555;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ========== */
@media screen and (max-width: 992px) {
  .abslim-contact-heading {
    font-size: 38px;
  }
  
  .abslim-contact-grid {
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .abslim-contact-page {
    padding: 50px 0;
  }
  
  .abslim-contact-heading {
    font-size: 32px;
  }
  
  .abslim-contact-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .abslim-contact-wrapper {
    padding: 30px;
  }
  
  .abslim-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .abslim-contact-item {
    padding: 25px 20px;
  }
  
  .abslim-contact-item-title {
    font-size: 20px;
  }
  
  .abslim-contact-item-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .abslim-contact-heading {
    font-size: 28px;
  }
  
  .abslim-contact-heading::after {
    width: 80px;
  }
  
  .abslim-contact-wrapper {
    padding: 20px;
  }
  
  .abslim-contact-icon {
    font-size: 40px;
  }
  
  .abslim-contact-item-title {
    font-size: 19px;
  }
  
  .abslim-contact-note {
    padding: 18px 20px;
  }
  
  .abslim-contact-note-text {
    font-size: 14px;
  }
}



/* ============================================
   ABSLIM - ЮРИДИЧЕСКИЕ СТРАНИЦЫ (COOKIE, PRIVACY, TERMS)
   ============================================ */

.abslim-legal-page {
  padding: 60px 0;
  background: #ffffff;
}

.abslim-legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.abslim-legal-heading {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.abslim-legal-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #2E8B57;
}

.abslim-legal-updated {
  color: #888;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}

.abslim-legal-body {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.abslim-legal-body h3 {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
}

.abslim-legal-body h4 {
  color: #2E8B57;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
}

.abslim-legal-body p {
  margin-bottom: 20px;
}

.abslim-legal-body div {
  margin-bottom: 20px;
}

.abslim-legal-body ul,
.abslim-legal-body ol {
  margin: 20px 0;
  padding-left: 40px;
}

.abslim-legal-body li {
  margin-bottom: 10px;
}

.abslim-legal-body strong {
  font-weight: 700;
  color: #df6092;
}

.abslim-legal-body a {
  color: #2E8B57;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.abslim-legal-body a:hover {
  color: #df6092;
  border-bottom-color: #df6092;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .abslim-legal-page {
    padding: 40px 0;
  }
  
  .abslim-legal-heading {
    font-size: 32px;
  }
  
  .abslim-legal-heading::after {
    width: 70px;
  }
  
  .abslim-legal-body {
    font-size: 15px;
  }
  
  .abslim-legal-body h3 {
    font-size: 22px;
  }
  
  .abslim-legal-body h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .abslim-legal-heading {
    font-size: 28px;
  }
  
  .abslim-legal-body {
    font-size: 14px;
  }
  
  .abslim-legal-body h3 {
    font-size: 20px;
  }
  
  .abslim-legal-body h4 {
    font-size: 17px;
  }
  
  .abslim-legal-body ul,
  .abslim-legal-body ol {
    padding-left: 25px;
  }
}


/* ============================================
   ABSLIM - СТРАНИЦА ОТЗЫВОВ
   ============================================ */

.abslim-reviews-page {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.abslim-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.abslim-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.abslim-reviews-title {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.abslim-reviews-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #2E8B57;
}

.abslim-reviews-highlight {
  color: #2E8B57;
}

.abslim-reviews-description {
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.abslim-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.abslim-review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 139, 87, 0.1);
  transition: all 0.3s ease;
}

.abslim-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(223, 96, 146, 0.1);
  border-color: rgba(223, 96, 146, 0.3);
}

.abslim-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.abslim-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df6092, #2E8B57);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abslim-reviewer-name {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.abslim-verified-badge {
  background: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

.abslim-review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.abslim-stars {
  color: #f5b342;
  font-size: 18px;
  letter-spacing: 2px;
}

.abslim-rating-label {
  color: #888;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.abslim-review-content {
  color: #444;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.abslim-back-to-home {
  text-align: center;
  margin: 50px 0;
}

.abslim-home-button {
  display: inline-block;
  background: #df6092;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.abslim-home-button:hover {
  background: #2E8B57;
  transform: translateY(-3px);
}

/* Форма отзыва */
.abslim-review-form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 139, 87, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.abslim-form-heading {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.abslim-form-description {
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.abslim-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.abslim-form-group {
  margin-bottom: 20px;
}

.abslim-form-label {
  display: block;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.abslim-required-mark {
  color: #df6092;
}

.abslim-form-input,
.abslim-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  transition: border 0.3s;
}

.abslim-form-input:focus,
.abslim-form-textarea:focus {
  outline: none;
  border-color: #df6092;
}

.abslim-rating-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.abslim-rating-select input {
  display: none;
}

.abslim-rating-select label {
  color: #ddd;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.abslim-rating-select label:hover,
.abslim-rating-select label:hover ~ label,
.abslim-rating-select input:checked ~ label {
  color: #f5b342;
}

.abslim-privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abslim-privacy-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.abslim-privacy-checkbox .abslim-form-label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
}

.abslim-link {
  color: #2E8B57;
  text-decoration: none;
}

.abslim-link:hover {
  color: #df6092;
  text-decoration: underline;
}

.abslim-submit-button {
  width: 100%;
  background: #df6092;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.abslim-submit-button:hover {
  background: #2E8B57;
  transform: translateY(-2px);
}

/* Мобильная адаптация */
@media (max-width: 992px) {
  .abslim-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abslim-reviews-page {
    padding: 40px 0;
  }
  
  .abslim-reviews-title {
    font-size: 32px;
  }
  
  .abslim-reviews-description {
    font-size: 16px;
  }
  
  .abslim-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .abslim-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .abslim-review-form-section {
    padding: 25px;
  }
  
  .abslim-form-heading {
    font-size: 24px;
  }
  
  .abslim-home-button {
    font-size: 16px;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .abslim-reviews-title {
    font-size: 28px;
  }
  
  .abslim-review-header {
    flex-direction: column;
    text-align: center;
  }
  
  .abslim-review-rating {
    justify-content: center;
  }
}





/* ============================================
   ABSLIM - WHERE TO BUY PAGE
   ============================================ */

.abslim-wtb-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.abslim-structure-enclosure {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.abslim-wtb-title {
  text-align: center;
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.abslim-wtb-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #2E8B57;
}

.abslim-wtb-title-highlight {
  font-size: 52px;
  color: #2E8B57;
}

.abslim-wtb-subtitle {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
}

.abslim-wtb-text-content {
  margin: 40px 0;
}

.abslim-wtb-paragraph {
  color: #444;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.abslim-wtb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.abslim-wtb-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 139, 87, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.abslim-wtb-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(223, 96, 146, 0.1);
  border-color: rgba(223, 96, 146, 0.3);
}

.abslim-wtb-benefit-card::before {
  content: attr(data-num);
  position: absolute;
  top: -15px;
  left: 20px;
  background: #df6092;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abslim-wtb-benefit-title {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.abslim-wtb-benefit-desc {
  color: #555;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.abslim-wtb-quotes {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 40px;
  margin: 50px 0;
  border-left: 4px solid #df6092;
}

.abslim-wtb-quotes-title {
  color: #df6092;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.abslim-wtb-quote-item {
  margin-bottom: 25px;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.abslim-wtb-quote-text {
  color: #444;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.abslim-wtb-footer {
  text-align: center;
  margin: 50px 0 30px;
}

.abslim-wtb-footer-text {
  color: #444;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.abslim-wtb-button {
  display: inline-block;
  background: #df6092;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(223, 96, 146, 0.3);
}

.abslim-wtb-button:hover {
  background: #2E8B57;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.abslim-wtb-warning {
  background: rgba(223, 96, 146, 0.1);
  border-radius: 16px;
  padding: 20px 25px;
  margin-top: 30px;
  border: 1px solid rgba(223, 96, 146, 0.3);
}

.abslim-wtb-warning-text {
  color: #c0392b;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* Мобильная адаптация */
@media (max-width: 992px) {
  .abslim-wtb-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abslim-wtb-section {
    padding: 50px 0;
  }
  
  .abslim-wtb-title {
    font-size: 32px;
  }
  
  .abslim-wtb-title-highlight {
    font-size: 40px;
  }
  
  .abslim-wtb-subtitle {
    font-size: 18px;
  }
  
  .abslim-wtb-paragraph {
    font-size: 16px;
  }
  
  .abslim-wtb-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .abslim-wtb-quotes {
    padding: 25px;
  }
  
  .abslim-wtb-quotes-title {
    font-size: 24px;
  }
  
  .abslim-wtb-quote-text {
    font-size: 14px;
  }
  
  .abslim-wtb-button {
    font-size: 18px;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .abslim-wtb-title {
    font-size: 28px;
  }
  
  .abslim-wtb-title-highlight {
    font-size: 36px;
  }
  
  .abslim-wtb-subtitle {
    font-size: 16px;
  }
  
  .abslim-wtb-paragraph {
    font-size: 15px;
  }
  
  .abslim-wtb-benefit-card {
    padding: 20px;
  }
  
  .abslim-wtb-quote-item {
    padding: 12px 15px;
  }
  
  .abslim-wtb-quote-text {
    font-size: 13px;
  }
  
  .abslim-wtb-warning-text {
    font-size: 13px;
  }
}




/* ============================================
   HREFLANG SWITCHER - НА ВСЮ ШИРИНУ, ПО ЦЕНТРУ, БЕЗ ФОНА
   ============================================ */

.hreflang-section {
  padding: 20px 0;
  margin: 0;
  background: transparent;
}

.hreflang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hreflang-list li {
  margin: 0;
}

.hreflang-list a {
  display: inline-block;
  padding: 6px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hreflang-list a:hover {
  background: #df6092;
  color: #ffffff;
  border-color: #df6092;
}

/* Активная ссылка */
.hreflang-list a.active {
  background: #2E8B57;
  color: #ffffff;
  border-color: #2E8B57;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .hreflang-section {
    padding: 15px 0;
  }
  
  .hreflang-list {
    gap: 8px;
  }
  
  .hreflang-list a {
    padding: 5px 10px;
    font-size: 11px;
  }
}