@font-face {
  font-family: 'Fournier Pro';
  src: url('/fonts/FournierMTPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: "Cotillion Regular";
    src: url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.eot");
    src: url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/b5e310aa4a35082435ae7ec9241db8a9.svg#Cotillion Regular")format("svg");
}
/* default text */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #E8E5E2;
}

/* headings / luxury style */
h1, h2, h3, .header__logo {
  font-family: 'Playfair Display', serif;
}
    .home {
  font-family: 'Playfair Display', serif;
  color: #2d2a3a;
  overflow: hidden;
}

/* HEADER */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  border-bottom: 5px solid #252141;
}

/* LEFT */
.header__left {
  display: flex;
  align-items: center;
}

/* BURGER */
.burger {
  width: 56px;
  height: 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.burger svg {
  width: 56px;
  height: 23px;
  display: block;
}

/* LOGO */
.header__logo img {
  height: 42px;
  object-fit: contain;
}

/* RIGHT */
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* HERO */
.hero {
  padding: 60px 0 20px;
  position: relative;
}

/* MAIN LAYOUT */
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* IMAGE CENTER */
.hero__image {
  width: 626px;
  z-index: 2;
}

.hero__image img {
  width: 100%;
  display: block;
}

/* LEFT BOX (OVERLAY) */
.hero__box {
  position: absolute;
  left: 0;
  top: 17%;

  width: 752px;
  box-sizing: border-box;
  padding: 145px 52px 105px 52px;

  background: #2d2a3a;
  color: #fff;

  font-size: 14px;
  line-height: 1.6;

  z-index: 3;
}
.hero__box p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.26;
  letter-spacing: 0;
  text-align: center;
  color: #FFF3E6;

}
/* RIGHT MENU */
.hero__menu {
  position: absolute;
  right: 16%;
  top: 40px;
}

.hero__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__menu li {
  margin-bottom: 18px;
}

.hero__menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #2d2a3a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 2.24;
    letter-spacing: 0;
    color: #252141;
    gap: 26px;
}

.hero__menu span {
  font-size: 18px;
}

/* TITLE BELOW IMAGE */
.hero__bottom {
  text-align: center;
  margin-top: -20px; /* pulls closer like screenshot */
}

.hero__bottom h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 5px;
}

.hero__bottom p {
  font-size: 13px;
  letter-spacing: 1px;
}

/* SEARCH */
.search {
  padding: 20px 40px;
}

.search form {
  display: flex;
  align-items: center;

  max-width: 420px;
  height: 52px; /* 🔥 taller like screenshot */

  border: 1px solid #252141;
}

/* INPUT */
.search form input {
  flex: 1;
  height: 100%;

  border: none;
  outline: none;

  padding: 0 16px;

  font-family: 'Playfair Display', serif;
  font-size: 20px;

  background: transparent;
  color: #252141;
}

/* PLACEHOLDER */
.search form input::placeholder {
  color: #252141;
  opacity: 0.7;
}

/* BUTTON */
.search form button {
  width: 56px; /* 🔥 more space like design */
  height: 100%;

  border: none;

  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* ICON */
.search form button svg {
  width: 22px;
  height: 22px;
}

/* CATEGORIES */
.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 7px solid #252141;
  border-bottom: 7px solid #252141;
}

.categories .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-right: 7px solid #252141;
}

.categories .category:last-child {
  border-right: none;
  flex-direction: row-reverse;
}

.categories .category__content {
  max-width: 70%;
}

.categories .category__content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 0.679; /* 67.9% */
  letter-spacing: 0;
  text-align: center;
  color: #252141;
  margin-bottom: 10px;
}

.categories .category__content p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 0.679; /* 67.9% */
  letter-spacing: 0;
  color: #252141;
  margin-bottom: 210px;
}

.categories .category__image img {
  max-height: 300px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #2d2a3a;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
}
.collection {
  padding: 80px 0 80px 40px;
}
.collection .collection__grid {
  padding-right: 0;
}
body > div > section.collection > div.collection__inner > div.collection__grid > div:nth-child(4) .product__image {
  padding-right: 0;
}
/* TABS */
.collection__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.collection__tabs button {
  border: 1px solid #252141;
  padding: 17.5px 143px;
  background: transparent;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #252141;
  font-size: 36px;
  line-height: 1; /* 100% */
  letter-spacing: 0;
}

.collection__tabs .active {
  background: #252141;
  color: #FFF3E6;
}

/* LAYOUT */
.collection__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.collection__text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* PRODUCTS */
.products-row {
  padding: 200px 0;
}
.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 8.9% 0 12.18%;
}

.product {

}


.product__image {
  border-right: 1px solid #252141;
  border-top: 1px solid #252141;
  border-bottom: 1px solid #252141;
  padding: 20px;
}
.product:nth-child(1) .product__image {
  border-left: 1px solid #252141;
}


.product__image img {
  width: 100%;
}

.product__info h3 {
  font-size: 14px;
  font-family: 'Fournier Pro', serif;
  font-weight: 400;

  line-height: 1; /* 100% */
  letter-spacing: 0;

  color: #252141;
}

.product__info p {
  font-size: 12px;
  font-family: 'Fournier Pro', serif;
  font-weight: 400;

  line-height: 1; /* 100% */
  letter-spacing: 0;

  color: #252141;
}
.banner {
  position: relative;
  height: 954px;
}

/* ALL ITEMS */
.banner__item {
  position: absolute;
  top: 0;
  height: 100%;
}

/* LEFT IMAGE */
.banner__item:nth-child(1) {
  left: 0;
  width: 34%;
  z-index: 3;
}

/* RIGHT IMAGE */
.banner__item:nth-child(3) {
  right: 0;
  width: 34%;
  z-index: 3;
}

/* CENTER (UNDER) */
.banner__item--center {
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  z-index: 1;
}

/* IMAGES */
.banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT OVERLAY */
.banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 4;
}
.banner__overlay span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  font-size: 48px;
  line-height: 1; /* 100% */
  letter-spacing: 0;
  color: #FFF3E6;
  text-align: center;
}
.banner__overlay h2 {
  font-family: 'Cotillion', serif;
  font-weight: 400;

  font-size: 128px;
  line-height: 1; /* 100% */
  letter-spacing: 0;
  color: #FFF3E6;
  text-align: center;
}
.banner__overlay p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;

  font-size: 64px;
  line-height: 1; /* 100% */
  letter-spacing: 0;

  text-align: center;
  color: #FFF3E6;
}
.promo {
  position: relative;
  padding: 100px 40px;
}

.promo__content {
    background: #252141;
    color: #fff;
    padding: 181px 450px 176px 80px;
    max-width: 100%;
    margin-left: -40px;
    margin-right: 16.5%;
    margin-bottom: 478px;
}
.promo__content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
}
.promo__content p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
}
.promo__image {
  position: absolute;
  right: 40px;
  top: calc(50% + 142px);
  transform: translateY(-50%);
}

.promo__image img {
  width: 605px;
}
.footer {
  background: #2d2a3a;
  color: #fff;
  padding: 103px 38px 23px 121px;
  margin: 0 27px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* first wider */
  gap: 110px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.footer__col .subscribe_title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
  margin: 0;
}
.footer__col .subscribe_text {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
}
.footer__bottom .logo_footer {
  height: 116px;
  object-fit: contain;
}
.footer__bottom .copyright {
    font-family: 'Fournier Pro', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
}
.footer__col h4 {
    font-family: 'Fournier Pro', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.26; /* 126% */
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
  margin: 0;
}
.footer__col ul {
  list-style: none;
  padding-left: 0;
}
.footer__col li a {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 2.16; 
  letter-spacing: 0;
  text-align: left;
  color: #FFF3E6;
  text-decoration: underline;
}
@media (min-width:769px) and (max-width: 1600px) {

  .hero__image {
    width: 32%;
  }

  .hero__box {
    width: 40%;
    padding: 80px 40px;
    margin-top: -5%;
  }

  .hero__box p {
    font-size: 24px;
  }
  .hero__menu {
      right: 6%;
  }
  .banner {
    height: 700px;
  }

  .banner__overlay h2 {
    font-size: 96px;
  }

  .banner__overlay p {
    font-size: 48px;
  }

  .promo__content {
    padding: 120px 200px 120px 60px;
    margin-bottom: 300px;
  }

  .promo__image img {
    width: 450px;
  }

}
@media (max-width: 1200px) {

  .header {
    padding: 0 20px;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }

  .hero__menu {
    right: 5%;
  }

  .hero__menu a {
    font-size: 24px;
  }

  .categories .category__content h2 {
    font-size: 64px;
  }

  .categories .category__content p {
    font-size: 18px;
    margin-bottom: 80px;
  }

  .banner {
    height: 600px;
  }

}
@media (max-width: 992px) {

  /* HERO STACK */
  .hero__inner {
    flex-direction: row;
    align-items: self-start;
    flex-wrap: wrap;
  }

  .hero__box {
    position: static;
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    margin-bottom: 20px;
    order: 3;
  }

  .hero__menu {
    position: static;
    margin-top: 20px;
        width: 35%;
  }

  .hero__menu a {
    justify-content: start;
    padding-left: 20px;
    font-size: 16px;
    line-height: 2.24; /* 224% */
  }
  .hero__menu span {
    display: none;
  }
  /* BANNER SIMPLIFY */
  .banner {
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .banner__item {
    position: relative;
    width: 100% !important;
    height: 300px;
  }
  .banner__item:nth-child(1) {
      width: 34% !important;
  }
    .banner__item--center {
        transform: none;
        width: 60% !important;
        left: 0;
    }
    .banner__item:nth-child(3) {
        right: -30%;
        width: 34%;
        margin-top: -30%;
    }
    .banner__item:nth-child(3) img {
        object-fit: contain;
    }
    .banner__overlay, .banner__overlay span, .banner__overlay h2, .banner__overlay p {
      color: #252141;
    }
  /* PROMO STACK */
  .promo__content {
    margin: 0;
    padding: 60px 20px;
  }

  .promo__image {
    position: static;
    transform: none;
    margin-top: 20px;
    text-align: center;
  }
  .hero__bottom {
    order: 2;
  }
  .hero__bottom h1 {
    font-size: 24px;
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .footer__bottom_mobile {
    display: none;
  }
}
@media (max-width: 768px) {

  .header {
    height: 64px;
    padding: 0 16px;

    grid-template-columns: auto 1fr auto; /* better balance */
    border-bottom: 2px solid #252141;
  }

  /* LEFT */
  .header__left {
    justify-content: flex-start;
  }

  /* BURGER */
  .burger {
    width: 40px;
    height: 18px;
  }

  .burger svg {
    width: 40px;
    height: 18px;
  }

  /* CENTER LOGO */
  .header__logo {
    display: flex;
    justify-content: center;
  }

  .header__logo img {
    height: 28px;
  }

  /* RIGHT */
  .header__right {
    gap: 12px;
  }

  .icon svg {
    width: 20px;
    height: 20px;
  }


  .hero {
    padding: 30px 0;
  }

  .hero__image {
    width: 60%;
    max-width: 320px;
  }

  .hero__box p {
    font-size: 18px;
  }

  .search {
    padding: 20px;
  }

  .search form {
    max-width: 100%;
    border: 2px solid #252141;
  }
  .search form input {
    font-size: 16px;
    line-height: 1.26; /* 126% */
  }
  .categories {
    grid-template-columns: 1fr;
  }

  .categories .category {
    flex-direction: row;
    text-align: center;
    border-right: none;
    padding: 0;
        max-width: 100%;
        overflow: hidden;
  }
  .categories .category--women {
    border-bottom: 7px solid #252141;
  }
  .categories .category__content {
      padding-left: 30px;
      align-self: flex-start;
      padding-top: 12px;
  }
  .category--men .category__content {
    padding-left: 0;
  }
  .categories .category__content h2 {
    font-size: 40px;
            text-align: left;
  }

  .categories .category__content p {
        margin-bottom: 40px;
        font-size: 12px;
        margin-right: -80px;
        margin-top: 15px;
                text-align: left;
  }
  body > div > section.categories > div.category.category--men > div.category__content > p {
        margin-left: -80px;
  }
  body > div > section.categories > div.category.category--men > div.category__content > h2 {
    text-align: right;
  }
  .categories .category__image {
        margin-top: -20px;
  }
  .btn {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 1;
      letter-spacing: 0;
      padding: 4px 4cap;
      text-decoration: none;
  }
    .collection__tabs button {
      padding: 10px 30px;
      font-size: 20px;
    }
    .collection {
      padding: 24px 0 66px 0;
  }
    .collection__inner {
      display: grid;
      grid-template-columns: 1fr; /* single column */
      grid-template-rows: auto auto; /* 2 rows */
      gap: 40px;
    }
    .collection__inner .collection__text {
      padding-left: 11px;
    }
    .collection__tabs {
        margin-bottom: 24px;
    }
  .collection__grid {
    display: block !important; /* 🔥 force override */
    padding: 0;
  }
  .collection__text h2 {
    margin: 0;
  }
  .collection-swiper {
    width: 100%;
    overflow: hidden; /* 🔥 important */
  }

  .collection-swiper .swiper-wrapper {
    display: flex;
  }

  .collection-swiper .swiper-slide {
    width: auto;
    height: auto;
  }

    .product {
      padding: 0; /* optional */
    }
  .product {
    width: 100%;
    max-width: 100%;
  }
  .products-row {
      padding: 50px 0;
  }
  .product__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    height: auto !important;
  }
  .collection-swiper .swiper-slide {
    width: 50% !important; /* 2 per view */
  }
  .banner__overlay span {
    font-size: 20px;
  }
  .collection .collection__grid {
    padding: 0;
  }
  .swiper {
    width: 100%;
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
  }

  .swiper-slide {
    width: 50%;
    flex-shrink: 0;
  }
  .banner__item--center img {
    display: none;
  }
  .banner__overlay h2 {
    font-size: 36px;
    margin: 0;
  }

  .banner__overlay p {
        font-size: 32px;
        margin: 0;
  }
  .banner__overlay {
      justify-content: flex-start;
      margin-top: 20%;
  }
  .promo {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 60px;s
  }
    .promo__image {
        text-align: left;
                z-index: 2;
    }
        .promo__image img {
        width: 60%;
    }
    .promo__content h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: 24px;
      line-height: 1.26;
      letter-spacing: 0;
      text-align: center;
      color: #FFF3E6;
  }
  .promo__content p {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.26;
    letter-spacing: 0;
    text-align: center;
    color: #FFF3E6;
}
    .promo__content {
        margin: 0;
        padding: 60px 20px;
        margin-top: -10%;
        z-index: 1;
        position: relative;
    }
    .footer {
      padding: 19px 14px;
    }
  .footer__col .subscribe_title {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.26;
      letter-spacing: 0;
      text-align: left;
      color: #FFF3E6;
      margin: 0;
  }
  .footer__col .subscribe_text {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.26;
      letter-spacing: 0;
      text-align: left;
      color: #FFF3E6;
  }
  .footer__col .subscribe_text br {
    display: none;
  }
    .footer__inner {
        gap: 22px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    body > footer > div.footer__inner > div:nth-child(1) {
      width: 100%;
    }
    .footer__col {
      width: 45%;
    }
  .footer__col h4 {
      font-family: 'Fournier Pro', serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.26;
      letter-spacing: 0;
      text-align: left;
      color: #FFF3E6;
      margin: 0;
  }
  .footer__col li a {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 2.16;
    letter-spacing: 0;
    text-align: left;
    color: #FFF3E6;
    text-decoration: underline;
    padding-left: 10px;
  }
  body > footer > div.footer__bottom {
    display: none;
  }
  .footer__bottom_mobile {
    display: flex;
    flex-direction: column;
  }
  .footer__bottom_mobile .logo_footer {
    height: auto;
    object-fit: contain;
    width: 100%;
  }
  .footer__bottom .copyright {
      font-family: 'Fournier Pro', serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.26;
      letter-spacing: 0;
      text-align: left;
      color: #FFF3E6;
  }
}
/* ADS GRID */
.ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ads-grid .ad-card img {
  width: 100%;
  display: block;
}

@media (max-width: 992px) {
  .ads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ads-grid {
    grid-template-columns: 1fr;
  }
}

/* CABINET */
.cabinet {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 40px;
}

.cabinet__sidebar {
  border-right: 1px solid #252141;
}

.cabinet__sidebar ul {
  list-style: none;
  padding: 0;
}

.cabinet__sidebar ul li {
  margin-bottom: 15px;
}

.cabinet__sidebar ul li a {
  text-decoration: none;
  color: #252141;
}

.cabinet__content {
  width: 100%;
}

/* PROFILE */
.profile {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile__grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.profile__avatar img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.profile__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile__fields h2 {
  margin-top: 10px;
  font-size: 18px;
}

.profile__password {
  max-width: 400px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* INPUTS */
input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #252141;
  background: transparent;
}

/* BUTTON */
.btn {
  background: #252141;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* MAP */
.profile__map {
  margin-top: 20px;
}

.profile__map #map {
  border: 1px solid #252141;
  border-radius: 6px;
}

/* CABINET HEADER */
.cabinet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* AD FORM */
.ad-form {
  max-width: 600px;
}

.ad-form .form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ADS GRID (cards) */
.ads-grid .ad-card {
  border: 1px solid #252141;
}

.ads-grid .ad-card__body {
  padding: 10px;
}

.ads-grid .ad-card__body h3 {
  margin-bottom: 5px;
}

.ads-grid .ad-card__body p {
  font-size: 12px;
}

/* CHARACTERISTICS */
.char-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

#add-char {
  margin-bottom: 20px;
  cursor: pointer;
}

/* AD FORM (second block override) */
.ad-form {
  max-width: 700px;
}

.ad-form .form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PAGE */
.page {
  max-width: 800px;
  margin: 40px auto;
}

.page__content {
  line-height: 1.6;
}
/* container */
.lang {
  position: relative;
}

/* clickable area bigger */
.lang__current {
  background: none;
  border: none;
  cursor: pointer;
  color: #252141;
  padding: 5px 10px;
}

/* dropdown */
.lang__dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  background: #fff;
  border: 1px solid #252141;

  list-style: none;
  padding: 5px 0;
  margin: 0;

  display: none;
  min-width: 80px;
}

/* remove gap between button and dropdown */
.lang:hover .lang__dropdown,
.lang__dropdown:hover {
  display: block;
}

/* items */
.lang__dropdown li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #252141;
}

.lang__dropdown li a:hover {
  background: #f5f5f5;
}