/* RESET AND BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: auto;
  min-height: 100%;
  max-height: none;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: none;
  -webkit-overscroll-behavior: none;
  min-height: 100vh;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header-up {
  width: 100%;
  height: 57px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #a56b00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 87px 0 40px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-right {
  display: flex;
  align-items: center;
}

.header_alarm {
  width: 24px;
  height: 24px;
}

.header_booking,
.header_contact,
.header_language {
  font: 400 16px/21px 'Inter', sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
}

.header_booking {
  margin-top: 1px;
}

.header_contact {
  margin-right: 21px;
}

.header_call {
  margin-right: 6.6px;
}

.header_language_logo {
  width: 16px;
  height: 11px;
  margin-left: 8px;
}

/* MOBILE MENU */
.mobile-menu-btn { 
  background: transparent; 
  border: 1px solid rgba(255,255,255,0.25); 
  border-radius: 8px; 
  padding: 6px; 
  margin-left: 10px; 
  cursor: pointer; 
  display: none; 
  flex-direction: column; 
  gap: 3px; 
}

.mobile-menu-btn__bar { 
  width: 18px; 
  height: 2px; 
  background: #fff; 
  display: block; 
}

.mobile-menu { 
  position: fixed; 
  top: 57px; 
  left: 0; 
  right: 0; 
  background: rgba(0,0,0,0.98); 
  border-bottom: 1px solid rgba(255,255,255,0.14); 
  z-index: 1500; 
  display: none; 
  grid-template-columns: 1fr; 
  gap: 6px; 
  padding: 12px 14px; 
  box-sizing: border-box; 
}

.mobile-menu .btn-text { 
  display: block; 
  width: 100%; 
  text-align: left; 
  padding: 10px 12px; 
  border: 1px solid rgba(255,255,255,0.14); 
  border-radius: 8px; 
  background: rgba(255,255,255,0.04); 
  text-decoration: none;
}

.mobile-menu .btn-text:hover { 
  background: rgba(255,255,255,0.08); 
}

/* MAIN CONTENT */
.main-content {
  margin-top: 57px;
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  overflow-x: hidden;
  overflow-y: visible;
  height: auto;
  flex-direction: column;
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 125px;
  background-color: #370617;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 20px 10px 20px;
  box-sizing: border-box;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-logo {
  width: 200px;
  height: 50px;
  object-fit: contain;
  margin: 0 0 12px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-logo:hover {
  opacity: 0.8;
}

.hero a {
  text-decoration: none;
  display: inline-block;
}

.hero-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn-text {
  background: transparent;
  border: none;
  color: white;
  font: 400 16px/1.5 'Inter', sans-serif;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 0;
  display: inline-block;
}

.btn-text:hover {
  color: #cccccc;
  transform: translateY(-2px);
}

.btn-text:active {
  transform: translateY(0);
}

/* MIDDLE SECTION */
.middle {
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: none;
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: visible;
  align-items: center;
  padding: 32px 20px;
  box-sizing: border-box;
}

.Our-Reviews {
  color: rgba(255, 207, 132, 1);
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 77px;
  text-align: center;
  margin: 0 0 50px 0;
}

/* CARDS */
.cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.picture {
  background-color: #fff;
  width: 280px;
  height: 520px;
  border-radius: 8px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.name,
.location,
.date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0;
  line-height: 1 !important;
  height: auto;
}

.logo-name,
.logo-location,
.logo-date {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.name-text,
.location-text,
.date-text {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.description {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  width: 280px;
}

/* TELEGRAM SECTION */
.tginfo {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0px;
  text-align: center;
  width: 934px;
  margin: 0;
}

.btn-telegram {
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  text-align: center;
  width: fit-content;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset,
              0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.btn-telegram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.btn-telegram:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset,
              0 2px 0 rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-2px);
}

.btn-telegram:hover::before {
  left: 100%;
}

.btn-telegram:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* FOOTER SECTIONS */
.book {
  width: 100%;
  height: 50px;
  background-color: #211708;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.book-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book .alarm,
.book .call-contact {
  width: 24px;
  height: 24px;
}

.alarm-booking,
.call-contactus {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 44px;
}

.reserved {
  width: 100%;
  height: 20px;
  background-color: #370617;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

.reserved-text {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}

.clickable-review {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.clickable-review:hover {
    transform: translateY(-2px);
}

.bottom-btn {
  width: 100%;
  height: 60px;
  background-color: #211708;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 200px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.RoyalEscort-bottom {
  color: rgba(255, 255, 255, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  margin-left: auto;
}

/* RESPONSIVE DESIGN */

/* 1440px */
@media (max-width: 1440px) {
  .header-up {
      padding: 0 30px;
  }

  .hero { 
      height: 100px; 
      padding: 12px 40px 8px 40px; 
  }
  
  .hero-logo { 
      width: 180px; 
      height: 45px; 
  }

  .btn-text {
      font-size: 14px;
      padding: 7px 12px;
  }

  .Our-Reviews {
      font-size: 52px;
      line-height: 1.1;
      margin-bottom: 40px;
  }

  .cards-container {
      max-width: 1600px;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
  }

  .picture {
      width: 100%;
      max-width: 240px;
      height: 350px;
  }

  .description {
      width: 100%;
      max-width: 240px;
      font-size: 15px;
  }

  .tginfo {
      font-size: 30px;
      line-height: 1.3;
      width: 90%;
      max-width: 800px;
  }

  .btn-telegram {
      font-size: 15px;
      padding: 10px 28px;
  }

  .bottom-btn {
      padding: 0 50px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .header-up {
      padding: 0 25px;
  }

  .hero { 
      height: 90px; 
      padding: 10px 30px 6px 30px; 
  }
  
  .hero-logo { 
      width: 170px; 
      height: 42px; 
      margin-bottom: 10px; 
  }

  .btn-text {
      font-size: 13px;
      padding: 6px 10px;
  }

  .middle {
      padding: 28px 15px;
  }

  .Our-Reviews {
      font-size: 44px;
      margin-bottom: 35px;
  }

  .cards-container {
      max-width: 1200px;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
  }

  .picture {
      max-width: 100%;
      height: 320px;
  }

  .description {
      max-width: 100%;
      font-size: 14px;
  }

  .tginfo {
      font-size: 26px;
      width: 95%;
      max-width: 700px;
  }

  .btn-telegram {
      font-size: 14px;
      padding: 9px 26px;
  }

  .book {
      gap: 15px;
  }

  .bottom-btn {
      padding: 0 30px;
      gap: 12px;
  }

  .RoyalEscort-bottom {
      font-size: 13px;
  }
}

/* 768px */
@media (max-width: 768px) {
  html {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  body {
    display: block !important;
    flex-direction: unset !important;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: default !important;
  }
  
  .main-content,
  .middle,
  section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .main-content {
    min-height: auto !important;
  }
  
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  
  .header-up {
      padding: 0 15px;
      height: 57px;
  }

  .header_booking,
  .header_contact,
  .header_language {
      font-size: 13px;
  }

  .header_contact {
      margin-right: 12px;
  }

  .header_alarm,
  .header_call {
      width: 18px;
      height: 18px;
  }

  .hero { 
      height: 80px; 
      padding: 8px 20px 4px 20px; 
  }
  
  .hero-logo { 
      width: 160px; 
      height: auto; 
      margin-bottom: 8px; 
  }
  
  .hero-nav {
      display: none !important;
  }

  .btn-text {
      font-size: 12px;
      padding: 5px 8px;
  }

  .middle {
      padding: 24px 10px;
  }

  .Our-Reviews {
      font-size: 36px;
      margin-bottom: 30px;
  }

  .cards-container {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 500px;
  }

  .card {
      align-items: center;
      text-align: center;
  }

  .picture {
      width: 100%;
      max-width: 280px;
      height: 300px;
  }

  .info-container {
      align-items: center;
  }

  .name,
  .location,
  .date {
      justify-content: center;
  }

  .description {
      width: 100%;
      max-width: 280px;
      font-size: 14px;
      text-align: center;
  }

  .tginfo {
      font-size: 20px;
      line-height: 1.4;
      width: 100%;
      max-width: 500px;
  }

  .btn-telegram {
      font-size: 13px;
      padding: 8px 24px;
  }

  .book {
      height: 40px;
      gap: 12px;
      padding: 0 10px;
  }

  .reserved {
      height: 16px;
      padding: 0 10px;
  }

  .reserved-text {
      font-size: 12px;
  }

  .bottom-btn { 
      display: none !important; 
  }
  
  /* Mobile menu button */
  .mobile-menu-btn { 
      display: inline-flex !important; 
      margin-left: 12px; 
  }
  
  #mobileMenuBtn[hidden] { 
      display: inline-flex !important; 
  }
  
  body.menu-open .mobile-menu { 
      display: grid !important; 
      top: 50px; 
  }
}

/* 425px */
@media (max-width: 425px) {
  html {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  body {
    display: block !important;
    flex-direction: unset !important;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: default !important;
  }
  
  .main-content,
  .middle,
  section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .main-content {
    min-height: auto !important;
  }
  
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  
  .header-up {
      padding: 0 10px;
      height: 57px;
  }

  .header_booking,
  .header_contact,
  .header_language {
      font-size: 12px;
  }

  .header_contact {
      margin-right: 8px;
  }

  .header_alarm,
  .header_call {
      width: 16px;
      height: 16px;
  }

  .hero { 
      height: 70px; 
      padding: 6px 12px 2px 12px; 
  }
  
  .hero-logo { 
      width: 140px; 
      height: auto; 
      margin-bottom: 6px; 
  }
  
  .mobile-menu-btn { 
      display: inline-flex !important; 
      margin-left: 8px; 
      padding: 3px; 
  }
  
  #mobileMenuBtn[hidden] { 
      display: inline-flex !important; 
  }
  
  body.menu-open #mobileMenu { 
      display: grid !important; 
  }

  .middle {
      padding: 20px 8px;
  }

  .Our-Reviews {
      font-size: 28px;
      margin-bottom: 25px;
  }

  .cards-container {
      gap: 16px;
      max-width: 100%;
  }

  .picture {
      max-width: 100%;
      height: 250px;
  }

  .description {
      max-width: 100%;
      font-size: 13px;
  }

  .name-text,
  .location-text,
  .date-text {
      font-size: 14px;
  }

  .logo-name,
  .logo-location,
  .logo-date {
      font-size: 14px;
  }

  .tginfo {
      font-size: 16px;
      line-height: 1.4;
      width: 100%;
      max-width: 100%;
  }

  .btn-telegram {
      font-size: 12px;
      padding: 7px 20px;
  }

  .book {
      height: 35px;
      gap: 10px;
      padding: 0 8px;
  }

  .alarm-booking,
  .call-contactus {
      font-size: 12px;
  }

  .reserved {
      height: 14px;
      padding: 0 8px;
  }

  .reserved-text {
      font-size: 11px;
      text-align: center;
  }
}

/* 375px */
@media (max-width: 375px) {
  html {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  body {
    display: block !important;
    flex-direction: unset !important;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: default !important;
  }
  
  .main-content,
  .middle,
  section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .main-content {
    min-height: auto !important;
  }
  
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  
  .header-up {
      padding: 0 8px;
      height: 57px;
  }
  
  .hero { 
      height: 60px; 
      padding: 4px 12px 0 12px; 
  }
  
  .hero-logo { 
      width: 130px; 
      height: auto; 
      margin-bottom: 4px; 
  }
  
  .mobile-menu-btn { 
      display: inline-flex !important; 
      margin-left: 6px; 
      padding: 2px; 
  }
  
  body.menu-open #mobileMenu { 
      top: 42px; 
  }

  .header_booking,
  .header_contact,
  .header_language {
      font-size: 11px;
  }

  .header_contact {
      margin-right: 6px;
  }

  .header_alarm,
  .header_call {
      width: 14px;
      height: 14px;
  }

  .middle {
      padding: 16px 6px;
  }

  .Our-Reviews {
      font-size: 24px;
      margin-bottom: 20px;
  }

  .cards-container {
      gap: 14px;
  }

  .picture {
      height: 220px;
  }

  .description {
      font-size: 12px;
  }

  .name-text,
  .location-text,
  .date-text {
      font-size: 13px;
  }

  .logo-name,
  .logo-location,
  .logo-date {
      font-size: 13px;
  }

  .tginfo {
      font-size: 14px;
      line-height: 1.4;
  }

  .btn-telegram {
      font-size: 11px;
      padding: 6px 18px;
  }

  .book {
      gap: 8px;
      padding: 0 6px;
  }

  .alarm-booking,
  .call-contactus {
      font-size: 11px;
  }

  .reserved-text {
      font-size: 10px;
  }
}

/* GLOBAL FIXES */
.cards-container,
.tginfo {
  margin-left: auto;
  margin-right: auto;
}

/* OVERFLOW FIXES - УБИРАЕМ ЛИШНИЕ СКРОЛЛБАРЫ */
html, body, .main-content,
.hero, .middle, .book,
.reserved, .bottom-btn,
.cards-container {
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}

/* Mobile overflow fixes */
@media (max-width: 768px) {
  html, body, .main-content {
    overflow-y: auto;
    height: auto;
  }
  
  body {
    display: block !important;
    flex-direction: unset !important;
    min-height: 100vh;
  }
  
  .main-content {
    flex: 1;
  }
}

/* КРИТИЧЕСКИЙ ФИКС ДЛЯ МОБИЛЬНЫХ - переопределяем все возможные блокировки */
@media (max-width: 768px) {
    html, body {
        -webkit-overflow-scrolling: touch !important;
    }
    
    body {
        display: block !important;
        flex-direction: unset !important;
        overflow-y: auto !important;
        touch-action: pan-y !important;
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
    }
    
    .main-content,
    .middle,
    section,
    div {
        overflow: visible !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Убеждаемся, что контент может быть выше экрана */
    main,
    .main-content {
        min-height: auto !important;
        height: auto !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }
}

/* Pagination styles */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.pagination-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255, 207, 132, 0.2);
  border-color: rgba(255, 207, 132, 0.5);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn.active {
  background: rgba(255, 207, 132, 0.3);
  border-color: rgba(255, 207, 132, 0.6);
  color: rgba(255, 207, 132, 1);
}

.pagination-info {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin: 0 10px;
}

/* Responsive pagination styles */
@media (max-width: 1200px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pagination-container {
    gap: 8px;
    padding: 15px 0;
  }
  
  .pagination-btn {
    font-size: 14px;
    padding: 8px 12px;
    min-width: 36px;
  }
  
  .pagination-info {
    font-size: 14px;
    margin: 0 5px;
  }
}

@media (max-width: 425px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .pagination-container {
    gap: 6px;
    padding: 12px 0;
  }
  
  .pagination-btn {
    font-size: 12px;
    padding: 6px 10px;
    min-width: 32px;
  }
  
  .pagination-info {
    font-size: 12px;
    margin: 0 3px;
  }
}

@media (max-width: 375px) {
  .pagination-container {
    gap: 4px;
    padding: 10px 0;
  }
  
  .pagination-btn {
    font-size: 11px;
    padding: 5px 8px;
    min-width: 28px;
  }
  
  .pagination-info {
    font-size: 11px;
    margin: 0 2px;
  }
}