* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a24;
  background: #f7f5f0;
}

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  text-decoration: none;
  color: #1d3429;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: bold;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.2s ease;
}

.menu a:hover {
  color: #315b46;
}


/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  flex-shrink: 0;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 34px;
  height: 30px;

  padding: 0 7px;

  border-radius: 5px;
  border: 1px solid #d7dfda;

  background: white;
  color: #315b46;

  text-decoration: none;

  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.language-switcher a:hover {
  background: #edf5ef;
  border-color: #315b46;
}

.language-switcher a.active {
  background: #315b46;
  color: white;
  border-color: #315b46;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  background: #315b46;
  color: white;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:hover {
  background: #254737;
  transform: translateY(-2px);
}

.btn-small {
  padding: 11px 18px;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: white;
  color: #234333;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      rgba(18, 27, 22, 0.15),
      rgba(18, 27, 22, 0.3)
    ),
    url("images/home/hero.jpg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.15) 65%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: 76px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  font-weight: normal;
  max-width: 850px;
  margin-bottom: 26px;
}

.hero-text {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.section-heading .eyebrow {
  color: #8a7146;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 14px;
}

.section-heading p {
  color: #6c716d;
  line-height: 1.7;
}


/* =========================
   ACCOMMODATIONS
========================= */

.accommodations {
  padding: 100px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #1d3429;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.card-content {
  padding: 24px;
}

.card-location {
  color: #9a7b4f !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px !important;
}

.card-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  margin-bottom: 12px;
}

.card-content p {
  color: #737873;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.card-features span {
  background: #f2f3ef;
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #566059;
}

.discount-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.discount-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 20px;
  background: #edf5ef;
  color: #315b46;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #d5e5d9;
}

.card-link {
  text-decoration: none;
  color: #315b46;
  font-weight: bold;
}


/* =========================
   RÓLUNK + ÉRTÉKELÉSEK
========================= */

.trust-section {
  padding: 110px 0;
  background: white;
}

.trust-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.trust-intro .eyebrow {
  color: #8a7146;
}

.trust-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.08;
  font-weight: normal;
  margin-bottom: 25px;
}

.trust-intro > p {
  color: #6d736e;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 600px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-stat {
  background: #f7f5f0;
  border-radius: 9px;
  padding: 30px 22px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  color: #315b46;
  margin-bottom: 8px;
}

.trust-stat span {
  color: #6d736e;
  font-size: 13px;
  line-height: 1.4;
}

.trust-divider {
  height: 1px;
  background: #e7e5df;
  margin: 75px 0;
}

.trust-heading {
  margin-bottom: 45px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f7f5f0;
  padding: 32px;
  border-radius: 8px;
}

.stars {
  color: #b68b49;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card p {
  color: #606761;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card strong {
  color: #315b46;
}


/* =========================
   CONTACT
========================= */

.contact {
  padding: 110px 0;
  background: #234333;
  color: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.contact-intro .eyebrow {
  color: #d8c29a;
}

.contact-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 22px;
}

.contact-intro > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: white;
  color: #26342d;
  padding: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f2eee5;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  color: #8a7146;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 6px;
}

.contact-card a {
  text-decoration: none;
  color: #26342d;
  font-size: 18px;
  font-weight: bold;
}

.contact-note {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 22px;
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-note p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #15281f;
  color: rgba(255, 255, 255, 0.72);
  padding: 35px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  font-size: 22px;
  margin-bottom: 7px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu-button {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #1d3429;
}


/* ========================================
   RÉSZLETES SZÁLLÁSHELY OLDALAK
======================================== */

.property-hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;

  background:
    url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;

  padding: 140px 0 70px;
}

.property-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(12, 22, 17, 0.12) 10%,
    rgba(12, 22, 17, 0.78) 100%
  );
}

.property-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 35px;
}

.back-link:hover {
  color: white;
}

.property-hero .eyebrow {
  color: #e3cfaa;
}

.property-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: clamp(55px, 7vw, 92px);
  line-height: 0.95;
  margin-bottom: 40px;
}

.property-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.property-hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.property-hero-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.property-hero-meta span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}


/* =========================
   PROPERTY INTRO
========================= */

.property-intro {
  padding: 100px 0;
  background: white;
}

.property-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.property-intro .eyebrow {
  color: #8a7146;
}

.property-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: normal;
}

.property-intro-text p {
  color: #687069;
  line-height: 1.8;
  margin-bottom: 18px;
}


/* =========================
   APARTMENTS
========================= */

.property-apartments {
  padding: 100px 0;
  background: #f7f5f0;
}

.apartment-detail-grid {
  display: grid;
  gap: 45px;
}

.apartment-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  background: white;

  border-radius: 10px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.apartment-detail-card:nth-child(even) .apartment-detail-image {
  order: 2;
}


/* FIX MAGASSÁGÚ KÉPTERÜLET */

.apartment-detail-image {
  position: relative;
  overflow: hidden;

  height: 380px;
  min-height: 0;

  background: #eeeeea;
}

.apartment-detail-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition:
    transform 0.5s ease,
    opacity 0.2s ease;
}

.apartment-detail-card:hover .apartment-detail-image img {
  transform: scale(1.03);
}

.apartment-badge {
  position: absolute;
  top: 20px;
  left: 20px;

  padding: 9px 14px;

  background: rgba(255, 255, 255, 0.95);
  color: #234333;

  font-size: 13px;
  font-weight: bold;

  border-radius: 30px;

  z-index: 4;
}

.apartment-detail-content {
  padding: 45px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apartment-detail-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: normal;
  margin-bottom: 10px;
}

.apartment-size {
  color: #9a7b4f !important;
  font-weight: bold;
  margin-bottom: 24px !important;
}

.apartment-detail-content > p {
  color: #6c726d;
  line-height: 1.75;
  margin-bottom: 25px;
}

.apartment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.apartment-features span {
  padding: 8px 12px;
  background: #f2f3ef;
  border-radius: 30px;
  color: #526058;
  font-size: 13px;
}

.apartment-detail-content .btn {
  align-self: flex-start;
}


/* =========================
   APARTMAN KÉPGALÉRIA
========================= */

.apartment-gallery {
  position: relative;
  height: 380px;
  min-height: 0;
}

.apartment-gallery .gallery-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);
  color: #234333;

  font-size: 34px;
  line-height: 1;

  cursor: pointer;

  display: grid;
  place-items: center;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.16);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow-left {
  left: 18px;
}

.gallery-arrow-right {
  right: 18px;
}

.gallery-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;

  padding: 8px 12px;

  background: rgba(24, 38, 31, 0.8);
  color: white;

  border-radius: 20px;

  font-size: 12px;
  font-weight: bold;

  backdrop-filter: blur(5px);
}


/* =========================
   EQUIPMENT
========================= */

.equipment-section {
  padding: 100px 0;
  background: white;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.equipment-item {
  padding: 28px;
  border: 1px solid #e6e5e0;
  border-radius: 8px;
}

.equipment-item > span {
  display: block;
  font-size: 28px;
  margin-bottom: 18px;
}

.equipment-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.equipment-item p {
  color: #747a75;
  font-size: 14px;
  line-height: 1.6;
}


/* =========================
   IMPORTANT
========================= */

.important-section {
  padding: 100px 0;
  background: #f1ede4;
}

.important-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.important-content .eyebrow {
  color: #8a7146;
}

.important-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: normal;
  line-height: 1.15;
}

.important-list {
  display: grid;
  gap: 16px;
}

.important-item {
  background: white;
  padding: 23px;
  border-radius: 8px;
  display: flex;
  gap: 18px;
}

.important-item > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #f2eee5;

  flex-shrink: 0;
}

.important-item strong {
  display: block;
  color: #26342d;
  margin-bottom: 7px;
}

.important-item p {
  color: #747a75;
  line-height: 1.6;
  font-size: 14px;
}


/* =========================
   NEARBY
========================= */

.nearby-section {
  padding: 100px 0;
  background: white;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nearby-card {
  background: #f7f5f0;

  padding: 28px;

  border-radius: 8px;

  display: flex;
  gap: 18px;
  align-items: center;
}

.nearby-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: white;

  font-size: 20px;
}

.nearby-card strong {
  display: block;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;

  color: #315b46;

  margin-bottom: 4px;
}

.nearby-card p {
  color: #737973;
  font-size: 13px;
}


/* =========================
   PROPERTY REVIEW
========================= */

.property-review {
  padding: 90px 0;
  background: #f7f5f0;
}

.property-review-box {
  display: grid;
  grid-template-columns: auto 1fr;

  gap: 50px;
  align-items: center;

  background: white;

  border-radius: 10px;

  padding: 45px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.property-score {
  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: #315b46;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.property-score strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
}

.property-score span {
  font-size: 12px;
  opacity: 0.8;
}

.property-review .eyebrow {
  color: #8a7146;
}

.property-review h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: normal;
  margin-bottom: 12px;
}

.property-review p {
  color: #707771;
  line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .equipment-grid,
  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 900px) {

  .desktop-booking {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 5px;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 0;

    width: 100%;

    background: white;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.3s ease;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .menu.active {
    max-height: 450px;
  }

  .menu a {
    padding: 18px 25px;
    border-bottom: 1px solid #eeeeee;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .trust-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero {
    min-height: 680px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .property-intro-grid,
  .important-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .apartment-detail-card {
    grid-template-columns: 1fr;
  }

  .apartment-detail-card:nth-child(even) .apartment-detail-image {
    order: 0;
  }

  .apartment-detail-image,
  .apartment-gallery {
    height: 340px;
    min-height: 0;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 68px;
    gap: 10px;
  }

  .menu {
    top: 68px;
  }

  .logo {
    font-size: 18px;
  }

  .language-switcher {
    gap: 3px;
    margin-left: auto;
    margin-right: 2px;
  }

  .language-switcher a {
    min-width: 29px;
    height: 28px;
    padding: 0 5px;
    font-size: 11px;
  }

  .hero {
    min-height: 670px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .accommodations,
  .trust-section,
  .contact {
    padding: 70px 0;
  }

  .trust-intro h2 {
    font-size: 38px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stat {
    min-height: auto;
  }

  .trust-divider {
    margin: 55px 0;
  }

  .contact-intro h2 {
    font-size: 38px;
  }

  .contact-card a {
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }


  /* PROPERTY PAGES */

  .property-hero {
    min-height: 620px;
    padding-bottom: 45px;
  }

  .property-hero h1 {
    font-size: 52px;
  }

  .property-hero-meta {
    gap: 22px;
  }

  .property-hero-meta strong {
    font-size: 22px;
  }

  .property-intro,
  .property-apartments,
  .equipment-section,
  .important-section,
  .nearby-section,
  .property-review {
    padding: 70px 0;
  }

  .property-intro h2,
  .important-content h2 {
    font-size: 36px;
  }

  .apartment-detail-content {
    padding: 30px 22px;
  }

  .apartment-detail-content h3 {
    font-size: 31px;
  }

  .apartment-detail-image,
  .apartment-gallery {
    height: 280px;
    min-height: 0;
  }

  .equipment-grid,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .property-review-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .property-score {
    width: 120px;
    height: 120px;
  }


  /* GALÉRIA MOBILON */

  .gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .gallery-arrow-left {
    left: 12px;
  }

  .gallery-arrow-right {
    right: 12px;
  }

  .gallery-counter {
    right: 12px;
    bottom: 12px;
  }

}