.hidden-links,
.swipe-indicator,
.plans-scroll-hint {
  display: none;
}

/* TV Mounting Page Styles */
.tv_header {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.book_home {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: visible;
}

.book_home_left {
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 2;
}

/* Section Titles */
.section_title {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.section_title h1,
.section_title h2,
.section_title p {
  text-align: center;
}

.section_title.left h1,
.section_title.left h2,
.section_title.left p {
  text-align: left;
}

/* ZIP Code Form */
.zipcode_form {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.zipcode_form p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.zipcode_form_input {
  position: relative;
  margin-bottom: 15px;
}

.zipcode_form_input input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.zipcode_form_input input:focus {
  border-color: #4caf50;
  outline: none;
}

.zipcode_form_input_icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.zipcode_form_approved .success_icon {
  display: block;
}

.zipcode_form_error .error_icon {
  display: block;
}

.zipcode_form_approved input {
  border-color: #4caf50;
}

.zipcode_form_error input {
  border-color: #ff6b6b;
}

.error_mess {
  color: #ff6b6b;
  font-size: 14px;
  display: none;
}

/* Google Reviews */
.google_rev {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
}

.google_rev img {
  margin-right: 10px;
}

.google_rev p {
  margin: 0 10px;
  color: #333;
  font-weight: bold;
}

/* SEO Cards */
.seo-upgrade {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.seo-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.seo-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seo-card img {
  display: block;
  margin: 0 auto 15px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
}

/* SEO Sections */
.seo-keyword-section {
  padding: 20px 0;
}

.seo-text-block {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* margin-top: 20px; */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.seo-text-block ul {
  padding-left: 1.2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

.seo-text-block li {
  margin-bottom: 8px;
}

.seo-text-block blockquote {
  font-style: italic;
  background: #f9f9f9;
  padding: 16px 20px;
  border-left: 4px solid #ccc;
  margin: 30px 0;
}

/* TV Gallery */
.tv-gallery-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  /* margin: 40px 0; */
}

.tv-gallery-images img,
.gallery-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  flex: 1 1 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Final Section */
.section_final {
  margin-top: 60px;
  text-align: center;
}

.section_final p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Pages Navigation */
.pages_navigation ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0 0 30px;
  flex-wrap: wrap;
  align-items: center;
}

.pages_navigation li {
  font-size: 14px;
  color: #666;
}

.pages_navigation li::after {
  content: '/';
  margin: 0 6px;
  color: #ccc;
}

.pages_navigation li:last-child::after {
  content: '';
}

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

/* Internal Links */
.internal-links {
  margin-top: 60px;
  padding: 30px;
  background-color: #f8f9fa;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.internal-links p {
  margin: 0 0 15px;
  color: #333;
}

.internal-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.internal-links a:hover {
  text-decoration: underline;
  color: #4caf50;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #f1f6fd;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.2s ease;
}

.input-error {
  border: 2px solid #ff6b6b !important;
  background-color: #fff5f5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4caf50;
  background-color: #eef6fd;
  outline: none;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 4px;
  min-height: 20px;
  display: block;
}

/* Modal Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay.hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* Booking Modal Styles */
.booking_modal {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  z-index: 10001;
}

.booking_modal h2 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 20px;
}

.booking-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.trust-logos {
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
}

.trust-heading {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.trust-logo-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo-row img {
  width: 70px;
  height: 45px;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.2s ease;
}

.trust-logo-row img:hover {
  transform: scale(1.1);
}

/* Plans Modal */
.plans_modal {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
  position: relative;
  z-index: 10001;
  max-height: 95vh;
  overflow-y: auto;
  width: auto;
  max-width: 1100px;
}

.plans-title {
  font-size: 20px;
  text-align: center;
}

.plans-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
  touch-action: pan-y;
  height: 500px;
}

.plans-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  touch-action: pan-y;
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  width: 300px;
  max-width: 90%;
  height: auto;
  cursor: pointer;
  transform-origin: center center;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.plan-card-visible {
  position: static;
  opacity: 1;
}

.plan-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.plan-card .plan-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
  font-size: 14px;
}

.plan-card ul li {
  margin-bottom: 8px;
  padding: 0 15px;
}

.plan-card ul li .highlight {
  color: #28a745;
}

.plan-card ul li .excluded {
  color: #e53935;
}

.plan-card img {
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  width: 50%;
}

.plan-content {
  padding: 15px;
  background-color: white;
  border-radius: 0 0 8px 8px;
}

.select-plan-btn {
  background-color: #28a745;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

.select-plan-btn:hover {
  background-color: #218838;
}

.plans-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
  z-index: 10002;
}

.plans-close:hover {
  background-color: #111;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 20px;
}

/* Contact Form */
.contact-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  display: inline-block;
}

.contact-form-header .subtitle {
  font-size: 18px;
  color: #666;
  margin-left: 20px;
  display: inline-block;
}

.contact-form-description {
  font-size: 20px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 40px;
}

.contact-form {
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-field {
  width: 100%;
}

.contact-form-textarea {
  width: 100%;
  margin-bottom: 30px;
}

.contact-form-textarea textarea {
  width: 100%;
  padding: 15px;
  min-height: 120px;
  resize: vertical;
}

.contact-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.privacy-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #4caf50;
}

.privacy-checkbox label {
  font-size: 14px;
  color: #666;
  max-width: 500px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #218838;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1e7e34;
}

/* Service Cards */
.service-card {
  position: relative;
  padding-bottom: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #4caf50;
}

.service-select-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #218838;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 80%;
  text-align: center;
}

.service-select-btn:hover {
  background-color: #1e7e34;
}

/* Review Platforms */
.review-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px auto;
  max-width: 1000px;
  padding: 10px 0;
}

.review-platforms .platform {
  text-align: center;
  flex: 0 1 150px;
  font-size: 14px;
  color: #333;
}

.review-platforms .platform img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.review-platforms .platform p {
  margin: 0;
  line-height: 1.4;
}

.carousel-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.icon-hidden {
  display: none;
}

.tooltip-container {
  position: relative;
  /* display: inline-block; */
}

.tooltip-text {
  visibility: hidden;
  background-color: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}

.main-chat-btn img {
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}

#chat-icon.icon-hidden,
#close-icon.icon-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

#chat-icon,
#close-icon {
  opacity: 1;
  transform: scale(1);
}

/* Modal Overlay */
.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.success_modal {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  z-index: 10001;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
}

.success-icon svg {
  width: 30px;
  height: 30px;
}

/* Animations */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header {
    display: none !important;
  }

  .seo-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .selection-arrows {
    gap: 30px;
  }

  .selection-banner-content h2 {
    font-size: 24px;
  }

  .selection-banner-content p {
    font-size: 16px;
  }

  .book_home_left {
    padding: 0 15px;
  }

  .section_title.left h1,
  .section_title.left h2,
  .section_title.left p {
    text-align: center;
  }

  .zipcode_form {
    max-width: 100%;
  }

  .green_sumbit_btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .plans_modal {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px;
  }

  .plans-carousel {
    flex-direction: column;
  }

  .plan-card {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .plans_modal {
    height: 90vh;
    max-height: 90vh;
    width: 90%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .plans-title {
    font-size: 18px;
    text-align: center;
  }

  .plans-carousel-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .plans-carousel {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    touch-action: pan-y;
  }

  .plan-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 60%;
    max-width: 90%;
    height: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1;
  }

  .plan-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
  }

  .plan-card.prev {
    transform: translateX(-40%) scale(0.8);
    opacity: 0.4;
    z-index: 5;
  }

  .plan-card.next {
    transform: translateX(40%) scale(0.8);
    opacity: 0.4;
    z-index: 5;
  }

  .plan-card img {
    width: 100%;
    max-height: 30%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }

  .plan-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .plan-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .plan-price {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .plan-card ul {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    text-align: left;
  }

  .plan-card ul li {
    margin-bottom: 8px;
    padding: 0 10px;
  }

  .select-plan-btn {
    margin-top: auto;
    align-self: center;
    background-color: #28a745;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .select-plan-btn:hover {
    background-color: #218838;
  }

  #bookingFormOverlay .plans_modal:has(.success-message) {
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .seo-articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    width: 100%;
  }

  .selection-arrows {
    gap: 60px;
  }

  .seo-keyword-section .container,
  .seo-text-block {
    padding: 0 20px;
  }

  .plans-carousel-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
  }

  .plans-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: center;
    overflow: visible;
    height: auto;
  }

  .plan-card {
    flex: 0 0 30%;
    max-width: 30%;
    height: auto;
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .plans-carousel-wrapper {
    height: auto;
    perspective: none;
  }

  .plans-carousel {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    height: auto;
  }

  .plan-card {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    margin: 10px;
    flex: 0 0 auto;
    width: calc(33.333% - 40px);
    max-width: 350px;
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
  display: none
}

.splide__progress__bar {
  width: 0
}

.splide {
  position: relative;
  visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative
}

.splide__slide img {
  vertical-align: bottom
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0
}

@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1
}

.splide--rtl {
  direction: rtl
}

.splide__track--ttb>.splide__list {
  display: block
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9
}

.splide__arrow:disabled {
  opacity: .3
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__arrow--prev {
  left: 1em
}

.splide__arrow--prev svg {
  transform: scaleX(-1)
}

.splide__arrow--next {
  right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__progress__bar {
  background: #ccc;
  height: 3px
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.splide__slide:focus {
  outline: 0
}

@supports(outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}

@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf
  }
}

@supports(outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}

@media screen and (-ms-high-contrast:none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf
  }
}

.splide__toggle {
  cursor: pointer
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg)
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0
}

/* DESKTOP ONLY — вне @media */
.tooltip-text.copy-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  padding: 3px 10px;
  position: absolute;
  right: 0;
  top: -36px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  z-index: 99;
  transition: opacity 0.23s;
}

.copy-btn.copied .copy-tooltip {
  visibility: visible;
  opacity: 1;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 0 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-left: 2px;
    position: relative;
    box-shadow: none;
    transition: background 0.18s;
  }

  .copy-btn {
  /* ...остальные стили... */
  position: relative;
  /* Не добавляй лишних паддингов, margin, outline на desktop */
}

.copy-btn .tooltip-text.copy-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  padding: 4px 11px;
  position: absolute;
  left: auto;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  z-index: 99;
  transition: opacity 0.23s;
  pointer-events: none;
}

.copy-btn.copied .tooltip-text.copy-tooltip {
  visibility: visible;
  opacity: 1;
}


@media (max-width: 768px) {
  .nav_right .nav_contact_links, .nav_mobile_contacts
   { display: none; }

  .nav_mobile_contacts_row .divider {
    color: #bbb;
    margin: 0 7px;
    font-weight: normal;
    font-size: 13px;
  }
  .nav_mobile_link {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 1px 0;
    min-width: 0;
    flex-shrink: 1;
    max-width: 45vw;
    overflow: hidden;
  }
  .nav_mobile_link .nav_contact_text {
    word-break: break-all;
    min-width: 0;
    flex-shrink: 1;
  }
  .nav_mobile_link img {
    vertical-align: middle;
    pointer-events: none;
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    display: inline-block;
  }
  .nav_mobile_link .copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 0 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-left: 2px;
    position: relative;
    box-shadow: none;
    transition: background 0.18s;
  }
  .nav_mobile_link .copy-btn .copy-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    font-size: 13px; /* чуть крупнее */
    border-radius: 7px;
    padding: 3px 10px;
    position: absolute;
    left: -200%;
    top: -20%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.13);
    z-index: 299;
    pointer-events: none;
    transition: opacity 0.21s;
  }
  .nav_mobile_link .copy-btn.copied .copy-tooltip {
    visibility: visible;
    opacity: 1;
  }
  .nav_mobile_link .copy-btn img {
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    display: inline-block;
  }
  .nav_mobile_link .copy-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    border-radius: 7px;
    padding: 2px 9px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.23s;
    z-index: 22;
    margin-left: 2px;
  }
}
