body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; 
}

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top right, #7489ff, #b8c2ff);
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
body header h1.main-title {
    margin: 0 0 15px 0 !important;
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: bold !important;
    text-align: center !important;
    text-shadow: 2px 2px 4px #000 !important;
    display: block !important;
}

.wrapper {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
     footer {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

    footer a.button {
      display: inline-block;
      background: #4460ff;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 15px;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 20px;
    }

    footer .footer-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      justify-content: center;
      font-size: 13px;
      padding: 0 20px;
    }

    footer h3 {
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 5px;
      font-size: 15px;
      color: white;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      color: white;
    }

    .social-icons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 10px;
    }

    .social-icons img {
      width: 30px;
      height: 30px;
    }

    header {
      text-align: center;
      padding: 100px 40px 0px;
      position: relative;
    }

    .top-contact-button {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      gap: 10px;
    }

    .top-contact-button button {
      background: #4460ff;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .top-contact-button button:hover {
      background: #5871ff;
    }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;

  overflow-y: auto; /* ВАЖНО! */
  padding: 200px 0; /* чтобы окно не прилипало к верху */
}

.modal-content {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  color:#000;
}


    .close {
      position: absolute;
      right: 20px;
      top: 10px;
      font-size: 28px;
      font-weight: bold;
      color: #aaa;
      cursor: pointer;
    }
    
    .close:hover {
      color: #333;
    }
    
    .btn {
      padding: 10px 20px;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s;
    }
    
    .btn-check {
      display: block;
      margin: 15px auto;
      width: 150px;
      background-color: #586bff;
    }
    
    .btn-check:hover {
      background-color: #3a4dff;
    }
    
.btn-pay {
  background-color: #4460ff;
  margin-top: 20px;
}

    
    .btn-pay:hover {
      background-color: #4460ff;
    }
    
    .btn-pay:disabled {
      background-color: #95a5a6;
      cursor: not-allowed;
    }
    
    input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      box-sizing: border-box;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 16px;
    }
    
    #result {
      margin: 20px 0;
      padding: 15px;
      background-color: #f8f9fa;
      border-radius: 8px;
      clear: both;
    }
    
    #packages {
      margin-top: 25px;
      width: 100%;
      overflow-x: auto;
      clear: both;
    }
    
    .packages-table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .packages-table th {
      background-color: #586bff;
      color: white;
      padding: 12px;
      text-align: left;
    }
    
    .packages-table td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
      vertical-align: middle;
    }
    
    .packages-table tr:nth-child(even) {
      background-color: #f8f8ff;
    }
    
    .packages-table tr:hover {
      background-color: #eef0ff;
    }
    
    .package-name {
      font-weight: bold;
      color: #2c3e50;
    }
    
    .package-period {
      color: #586bff;
    }
    
    .package-channels {
      color: #666;
      font-size: 14px;
    }
    
    .package-price {
      font-weight: bold;
      color: #586bff;
    }
    
    .additional-service {
      color: #e67e22;
      font-size: 13px;
      font-style: italic;
    }
    
    .error-message {
      color: #e74c3c;
      font-weight: bold;
    }
    

    
.total-sum {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}

    
    .checkbox-cell {
      text-align: center;
      vertical-align: middle;
      width: 60px;
    }
    
    .checkbox-cell input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 0 auto;
      display: block;
      transform: scale(1.3);
    }

   
    .logo-text {
      margin-bottom: 15px;
      color: #ffffff;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      text-shadow: 2px 2px 4px #000;
    }

    .logo-container {
      display: inline-block;
    }

    .logo-container img {
      width: 300px;
      height: auto;
    }
header .seo-mini {
    max-width: 900px !important;
    margin: 20px auto 0 !important;
    padding: 0 25px !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
    text-align: center !important;
    display: block !important;
}

    .subtitle {
      margin-top: 20px;
      font-size: 16px;
      color: #ffffff;
    }

    .hero {
      background: transparent;
      padding: 50px 20px;
      text-align: center;
      color: white;
    }

    .hero h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #ffffff;
    }

    .hero button {
      background: #4460ff;
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .hero button:hover {
      background: #5871ff;
    }

    .card-check-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 30px;
      margin: 10px auto -30px;
      max-width: 900px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 30px;
      box-shadow: 0 0 10px rgba(88, 113, 255, 0.3);
      color: white;
      overflow: hidden;
    }

    .card-check-section h2 {
      margin-bottom: 20px;
    }

    .card-input-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    input, textarea {
      width: 100%;
      padding: 10px 15px;
      border-radius: 10px;
      border: 2px solid #a5b8ff;
      background-color: #cfd6ff;
      color: #000000;
      font-size: 16px;
      margin-top: 5px;
      box-sizing: border-box;
      transition: border-color 0.3s, background-color 0.3s;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #7489ff;
      background-color: #ffffff;
    }
    

    .card-input-wrapper button {
      background: #4460ff;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .card-input-wrapper button:hover {
      background: #5871ff;
    }

    .card-check-icons {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 50px;
      flex-wrap: wrap;
    }

    .card-check-section::before {
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .card-check-section::after {
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .card-check-section span::before,
    .card-check-section span::after {
      position: absolute;
      color: #5871ff;
      font-size: 20px;
      font-weight: bold;
      font-family: monospace;
      pointer-events: none;
    }

    .card-check-icons div {
      max-width: 200px;
      text-align: center;
      color: #ffffff;
    }

    .card-check-icons img {
      width: 60px;
    }

    .payment-steps-section {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 30px 40px;
  margin: 50px auto;
  max-width: 800px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.payment-steps-section {
  position: relative;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px 40px;
  margin: 50px auto;
  max-width: 800px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Декоративные точки сверху */
.payment-steps-section::before {
  content: "• • • • • • • • • • • • •";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  color: #5871ff;
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

/* Декоративные точки снизу */
.payment-steps-section::after {
  content: "• • • • • • • • • • • • •";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #5871ff;
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.payment-steps-section h2 {
  margin: 40px 0 30px;
  font-size: 24px;
}

.card-check-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.card-input-wrapper input {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  width: 260px;
}

.card-input-wrapper button {
  background: #5871ff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.card-input-wrapper button:hover {
  background: #6d82ff;
}

.card-check-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card-check-icons div {
  text-align: center;
  width: 180px;
}

.card-check-icons img {
  width: 48px;
  margin-bottom: 10px;
}

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: white;
}

.step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.step a {
  color: #5871ff;
  text-decoration: none;
}

.step a:hover {
  text-decoration: underline;
}


body::before {
  content: "";
  position: fixed;
  top: 100px;
  right: 30px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 172, 253, 0.4), transparent);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  bottom: 80px;
  left: 60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(119, 61, 255, 0.4), transparent);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

    .steps {
      text-align: center;
    }

    .payment-steps {
      position: relative;
      max-width: 960px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .payment-steps::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      width: 4px;
      height: 100%;
      background: #5871ff;
      transform: translateX(-50%);
    }

    .step {
      position: relative;
      width: 45%;
      padding: 20px;
      box-sizing: border-box;
    }

    .step h3 {
      margin-top: 0;
    }

    .step p {
      margin: 10px 0 0;
    }

    .step.left {
      left: 0;
      text-align: right;
      border-right: 2px solid transparent;
    }

    .step.right {
      left: 55%;
      text-align: left;
      border-left: 2px solid transparent;
    }

    .step::before {
      content: '';
      position: absolute;
      top: 20px;
      width: 12px;
      height: 12px;
      background: #4460ff;
      border-radius: 50%;
      z-index: 1;
    }

    .step.left::before {
      right: -6px;
    }

    .step.right::before {
      left: -6px;
    }
 .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 30px;
     overflow: visible;
  }
.site-dropdown {
  position: absolute;
  left: 20px;
  top: 1px;
  z-index: 1100;
}

.site-button {
  background: none;
  border: none;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: none;
  color: white; /* теперь белый текст, как у .nav-button */
  transition: background 0.2s ease;
}

.site-button:hover {
  background: rgba(255, 255, 255, 0.2); /* как .nav-button:hover */
}

.site-dropdown.open .site-button,
.site-button.active {
  background: rgba(255, 255, 255, 0.3); /* как .nav-button.active */
}

.site-dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.06); /* стало темнее */
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* тоже чуть темнее */
  border-radius: 6px;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1100;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2); /* контрастнее граница */
}
.site-dropdown-menu li a {
  pointer-events: auto;
}
.site-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.15); /* прозрачная стрелка */
  filter: blur(0.5px);
  backdrop-filter: blur(5px);
}

.site-dropdown-menu li {
  padding: 8px 20px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-dropdown-menu li:hover {
  background-color: rgba(255, 255, 255, 0.2); /* как .nav-button:hover */
}

.site-dropdown-menu li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}


.site-dropdown.open .site-dropdown-menu {
  display: block;
}
.second-navbar {
  position: fixed;
  top: 30px; /* ниже первого */
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  z-index: 900; /* чуть ниже первого */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.nav-item {
  position: relative;
  flex-grow: 1;
  text-align: center;
}

.nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.nav-button {
  background: transparent;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
}
#dropdownModalBtn {
  display: block;
  font-weight: normal !important;
  background: none !important;
  padding: 8px 20px;
  width: 100%;
  color: white;
  text-align: center;
  border: none;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  background: none; /* Убираем фон кнопки */
  border: none;     /* Убираем рамку */
  font-weight: normal; /* Убираем жирность */
    background: none; /* Убираем фон */
  padding: 0;       /* Сбрасываем отступы */
}


#dropdownModalBtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.top-right-logo {
  position: fixed; /* Фиксированное позиционирование */
  top: -32px;          /* Вплотную к верхнему краю */
  right: -32px;        /* Вплотную к правому краю */
  z-index: 2000;   /* Выше всех элементов */
  height: 150px;   /* Ровно 150px как требуется */
  padding: 15px;   /* Отступ от краев экрана */
  pointer-events: none; /* Не блокирует клики */
}

.top-right-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
/* ============================
   МОБИЛЬНАЯ ВЁРСТКА (до 768px)
   ============================ */
   
@media (max-width: 768px) {

  /* Основной фон */
  body {
    padding-top: 40px !important;
    background: radial-gradient(circle at top right, #7489ff, #b8c2ff) !important;
    overflow-x: hidden !important;
  }

  header {
    padding: 40px 20px 20px !important;
    text-align: center !important;
  }

  /* Логотип */
  .logo-container img {
    width: 300px !important;
  }

  .subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    padding: 0 10px !important;
  }

  /* ВСЕ секции в едином стиле (как каталог) */
  .card-check-section,
  .payment-steps-section {
    width: 90% !important;
    max-width: 650px !important;
    margin: 20px auto !important;
    padding: 22px 16px 28px !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,0.08) !important;
    text-align: center !important;
    position: relative !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
.payment-steps-section {
    overflow: visible !important;
}

  /* Декоративные точки */
.payment-steps-section::before,
.payment-steps-section::after {
    content: " • • • • • • • • • • • •";
    display: block;
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* идеально центрирует */

    color: #5871ff;
    font-size: 18px;
    letter-spacing: 6px;
    font-family: monospace;
    white-space: nowrap;
    pointer-events: none;
}

  .card-check-section::before,
  .payment-steps-section::before {
    top: 8px;
  }

  .card-check-section::after,
  .payment-steps-section::after {
    bottom: 10px;
  }

  /* Внутренние элементы */
  input {
    font-size: 16px !important;
    padding: 12px !important;
  }

  .card-input-wrapper {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .card-input-wrapper button {
    width: 100% !important;
  }

  /* Иконки */
  .card-check-icons {
    gap: 25px !important;
  }

  .card-check-icons div {
    width: 45% !important;
  }

  .card-check-icons img {
    width: 50px !important;
  }

  /* Шаги оплаты */
  .step {
    width: 100% !important;
    left: 0 !important;
    text-align: left !important;
    margin-bottom: 25px !important;
    padding: 18px !important;
  }

  .payment-steps::before {
    display: none !important;
  }

   .navbar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 30px; /* фиксированная высота, чтобы содержимое не вылазило */
  padding: 0 10px;
  box-sizing: border-box;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-button {
    padding: 12px;
    width: 100%;
    font-size: 14px;
  }

  .second-navbar {
    display: none !important; /* убираем дублирующее меню */
    
  }

  .site-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    margin-bottom: 10px;
  }
.site-dropdown ul,
.site-dropdown footer {
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.site-dropdown button,
.site-dropdown .nav-button,
.site-dropdown a.btn,
.site-dropdown .btn-pay {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 10px auto !important;
  text-align: center !important;
  width: auto !important; /* если хочешь, чтобы кнопка не растягивалась */
  min-width: 140px; /* или свой размер */
}

  /* Модалка */
  .modal-content {
    width: 80% !important;
    min-height: 510px;
    padding: 20px !important;
    margin-top: 25% !important;
  }

  .packages-table th,
  .packages-table td {
    font-size: 13px !important;
    padding: 8px !important;
  }

  /* Футер */
.site-dropdown ul,
.site-dropdown footer {
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}

 @media (max-width: 768px) {
  footer,
  .footer-inner,
  .footer-links,
  .footer-block,
  footer > div,
  footer ul,
  footer li {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  footer a,
  footer button,
  footer .btn,
  footer .pay-btn,
  footer a[href*="wa.me"],
  footer .footer-button {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px auto !important;
    text-align: center !important;
    float: none !important;
  }

  /* если кнопки внутри flex-контейнера */
  footer div[style*="display:flex"] {
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    gap: 10px !important;
  }
}
}
@media (max-width: 768px) {
  body::before {
    top: 100px !important;
    right: 30px !important;
    width: 300px !important;
    height: 300px !important;
  }

  body::after {
    bottom: 80px !important;
    left: 60px !important;
    width: 200px !important;
    height: 200px !important;
  }
}

@media (max-width: 480px) {
  body::before {
    top: 100px !important;
    right: 20px !important;
    width: 250px !important;
    height: 250px !important;
  }

  body::after {
    bottom: 80px !important;
    left: 40px !important;
    width: 180px !important;
    height: 180px !important;
  }
}
/* 📱 Очень узкие экраны */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 0 !important;
  }

  .site-button {
    font-size: 13px !important;
  }

  .product-card h2 {
    font-size: 14px !important;
  }

  .product-card .btn {
    font-size: 13px !important;
    padding: 6px 10px !important;
  }

  footer {
    font-size: 13px !important;
  }
  
}
