@import url(../fonts/fonts.css);

:root {
  --brand: #f6a723;
  --brand-dark: #e5991a;
  --black: #1a1a1a;
  --gray-900: #333333;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --font-main: 'LADAPragmatica', sans-serif;
  --font-ui: 'Inter', sans-serif;
}

* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--black);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:visited,
a:focus {
  text-decoration: none;
}

section {
  padding: 60px 0 0;
}

@media (max-width: 767px) {
  section {
    padding-top: 40px;
  }
}

/* ========== Container ========== */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ========== Buttons ========== */

.but {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.but:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.mainbut {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
  font-weight: 600;
}

.mainbut:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* ========== Headings ========== */

.h1 {
  font-size: clamp(25px, 2.5vw, 50px);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 20px;
  width: auto;
  display: inline-block;
  max-width: 685px;
  line-height: 1.2;
}

.h2 {
  font-size: clamp(20px, 2.5vw, 50px);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 20px;
  width: auto;
  display: inline-block;
}

.blocktitle {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 27px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .blocktitle {
    margin-bottom: 25px;
    font-size: 22px;
  }
}

.subtitle {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* ========== Header ========== */

.header {
  padding-top: 10px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 12;
  border-bottom: 1px solid var(--gray-200);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .header .container {
    justify-content: flex-start;
    padding-bottom: 15px;
    border-bottom: none;
  }
  .header {
    padding-top: 15px;
  }
}

.header__left {
  display: flex;
  align-items: center;
}

.header__left .logo {
  align-items: center;
  display: flex;
}

.header__left .logo-text {
  font-family: var(--font-ui);
  font-size: 12px;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid var(--gray-200);
  color: var(--gray-600);
  line-height: 1.4;
}

.header__left .logo-text p:first-child {
  font-weight: 600;
  color: var(--black);
}

@media (max-width: 767px) {
  .header__left .logo-text {
    display: none;
  }
}

.header__left a {
  display: block;
  width: 159px;
}

@media (max-width: 767px) {
  .header__left a {
    width: 100px;
    margin-left: 10px;
    margin-right: 8px;
  }
}

.header .adress {
  font-family: var(--font-ui);
  font-size: 12px;
  padding-left: 25px;
  background: url(/img/pin.svg) 0 50% no-repeat;
  background-size: auto 18px;
  text-decoration: none;
  color: var(--gray-900);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .header .adress {
    display: none;
  }
}

.header .phone a {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding-left: 25px;
  background: url(/img/phone.svg) 0 50% no-repeat;
  background-size: auto 18px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .header .phone a {
    padding-left: 25px;
    padding-right: 60px;
  }
}

@media (max-width: 350px) {
  .header .phone a {
    padding-left: 5px;
    border-left: 1px solid var(--gray-200);
    background: none;
    padding-right: 0;
  }
}

@media (max-width: 1023px) {
  .header .phone {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .phone {
    margin-left: auto;
    display: block;
  }
}

@media (max-width: 350px) {
  .header .phone {
    margin: 0;
    padding: 0;
  }
}

a.callback {
  height: 40px;
  font-family: var(--font-ui);
}

a.callback:hover {
  color: var(--white);
}

a.callback.mainbut {
  max-width: 200px;
  border-radius: var(--radius-sm);
}

@media (max-width: 767px) {
  a.callback.mainbut {
    display: none;
  }
}

/* ========== Burger ========== */

.burger {
  display: none;
  position: absolute;
  width: 30px;
  height: 21px;
  z-index: 3;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.burger span {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  transition: all 0.3s linear;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: calc(50% - 2px);
  opacity: 1;
}

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.act span:nth-child(1) {
  transform-origin: top right;
  transform: rotate(-45deg);
  top: -1px;
}

.burger.act span:nth-child(2) {
  opacity: 0;
}

.burger.act span:nth-child(3) {
  transform-origin: bottom right;
  transform: rotate(45deg);
  bottom: -1px;
}

@media (max-width: 767px) {
  .burger {
    display: block;
  }
}

/* ========== Menu ========== */

.menu {
  padding: 12px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.menu .container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .menu .container {
    flex-direction: column;
  }
}

.menu__model {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  .menu__model {
    margin-top: 15px;
    flex-direction: column;
  }
}

.menu__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 767px) {
  .menu__nav {
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
  }
}

.menu a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  padding: 0 6px 6px;
  position: relative;
}

.menu a::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--brand);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.25s ease;
}

.menu a:hover::before {
  width: 100%;
}

.menu.act {
  right: 0;
}

@media (max-width: 767px) {
  .menu {
    display: block;
    position: fixed;
    top: 39px;
    background: var(--white);
    width: 100%;
    height: auto;
    right: -100%;
    left: unset;
    transition: all 0.3s linear;
    z-index: 2;
    padding: 10px 0;
  }
}

/* ========== Hero / Special ========== */

.special {
  padding: 0;
}

.special .but {
  border: none;
}

.special img {
  width: 100%;
  height: 100%;
}

.special .container {
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
  padding: 0;
}

.special .top-banner {
  position: relative;
  display: block;
}

.special .top-banner::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}

.special .title {
  max-width: 1140px;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  padding-left: 1em;
  margin: 60px auto 0;
  width: 100%;
  color: var(--white);
}

@media (max-width: 992px) {
  .special .title {
    bottom: 50px;
  }
}

.special .title .h1 {
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.special .title p {
  font-family: var(--font-ui);
  font-size: 16px;
}

.special .but {
  width: 270px;
  padding: 7px 0;
  margin-top: 40px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.special .but:hover {
  background: var(--white);
  color: var(--black);
}

/* ========== Car Cards ========== */

.cars__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cars-item {
  width: calc(50% - 12px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 35px 0;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--white);
}

@media (max-width: 1023px) {
  .cars-item {
    width: 100%;
  }
}

.cars-item .car-title {
  font-size: 24px;
  text-transform: uppercase;
  padding: 0 40px 0 40px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  border-left: 4px solid var(--brand);
  margin-left: 0;
  line-height: 1.3;
}

.cars-item .car-title .instock {
  color: var(--brand);
  position: relative;
  left: 0;
  bottom: auto;
  font-size: 14px;
  text-transform: none;
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-family: var(--font-ui);
}

.cars-item .agr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  font-size: 17px;
  padding: 14px 15px;
  font-weight: 600;
  font-family: var(--font-ui);
  background: var(--gray-50);
}

.cars-item .agr div {
  border-right: 1px solid var(--gray-200);
  padding: 4px 5px;
  text-align: center;
  font-size: 17px;
}

.cars-item .agr div:last-of-type {
  border-right: none;
}

.cars-item .agr div span {
  font-weight: 400;
  font-size: 11px;
  color: var(--gray-600);
  display: block;
  margin-top: 2px;
  text-transform: lowercase;
}

.cars-item .gab {
  background-color: var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  font-family: var(--font-ui);
  font-size: 11px;
  text-align: center;
  padding: 10px 0;
  color: var(--gray-600);
}

.cars-item .image {
  padding: 10px 20px;
}

.cars-item .specials {
  display: flex;
  font-size: 18px;
  justify-content: space-between;
  position: relative;
  padding: 0 40px;
}

.cars-item .specials div {
  display: block;
  padding-left: 48px;
  color: var(--gray-900);
  text-decoration: none;
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
}

.cars-item .specials .price:before {
  content: url(/img/wallet.svg);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--brand);
  border-radius: var(--radius-sm);
  padding-top: 5px;
}

@media (max-width: 768px) {
  .cars-item .specials .price {
    font-size: 22px;
  }
}

.cars-item .specials .ico {
  display: none;
}

.cars-item .specials .ico:before {
  content: url(/img/calendar.svg);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--brand);
  border-radius: var(--radius-sm);
  padding-top: 5px;
}

@media (max-width: 767px) {
  .cars-item .specials {
    padding: 0 15px;
    flex-direction: column;
    gap: 35px;
  }
}

.cars-item__buttons-wrap {
  padding: 0 40px;
}

@media (max-width: 767px) {
  .cars-item__buttons-wrap {
    padding: 0 15px;
  }
}

.cars-item__buttons {
  display: flex;
  gap: 8px;
  margin: 25px 0 16px 0;
  align-items: center;
  padding: 0;
}

.cars-item__buttons a {
  margin-top: 0;
  min-height: 50px;
  border-radius: var(--radius-sm);
}

.cars-item__buttons a.callback {
  color: var(--black);
}

.cars-item__buttons a:hover {
  color: var(--white);
}

.download {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-900);
  text-align: center;
  padding: 16px 19px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
  margin: 0;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  max-height: 50px;
}

.download:hover {
  background: var(--gray-200);
}

.download::before {
  content: '';
  width: 21px;
  height: 22px;
  background: url(/img/download.svg) no-repeat;
  flex-shrink: 0;
}

/* ========== Promo sections (Test Drive, Trade-in) ========== */

.test_drive .container {
  position: relative;
}

.test_drive .container::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to left, #000, transparent);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .test_drive .container::after {
    background-image: linear-gradient(to bottom, #000, transparent);
  }
}

.test_drive__wrap {
  z-index: 1;
  position: relative;
  width: 42%;
  margin-left: auto;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .test_drive__wrap {
    margin: 0 auto;
    width: 90%;
  }
}

.trade_in .container {
  position: relative;
}

.trade_in .container::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
}

@media (max-width: 767px) {
  .trade_in .container::after {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 80%);
  }
}

.trade_in__wrap {
  z-index: 1;
  position: relative;
  padding-left: 40px;
  width: 45%;
}

@media (max-width: 767px) {
  .trade_in__wrap {
    margin: 0 auto;
    width: 90%;
    padding: 0;
  }
}

.bgblock {
  padding: 80px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
}

.bgblock .agree_field {
  color: var(--white);
}

.bgblock .agree_field a {
  color: rgba(255,255,255,0.8);
}

#test_drive > div {
  color: var(--white);
  background-image: url(/img/td2.jpg);
}

#trade_in > div {
  color: var(--white);
  background-image: url(/img/tin.jpg);
}

.tradein_wrap {
  width: 42%;
  margin-left: auto;
  margin-right: 40px;
}

.tradein_title {
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media screen and (max-width: 900px) {
  .bgblock {
    padding: 2em;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tradein_wrap {
    margin-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tradein_wrap {
    padding: 30px 0;
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .tradein_wrap {
    padding: 30px 0;
    margin: 0;
    width: 100%;
  }
  .tradein_title {
    text-align: center;
  }
}

/* Trade-in form inputs */
.bgblock input[type='text'],
.bgblock input[type='tel'] {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.bgblock input::placeholder {
  color: rgba(255,255,255,0.6);
}

.bgblock input:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.2);
}

.bgblock .but.mainbut {
  border-radius: var(--radius-sm);
}

/* ========== Contacts ========== */

.contacts {
  padding-bottom: 60px;
  font-size: 14px;
  font-family: var(--font-ui);
}

.contacts .cont-text {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 15px;
  margin-top: 35px;
  color: var(--black);
}

.contacts .cont-text:first-child {
  margin-top: 15px;
}

@media (max-width: 1023px) {
  .contacts .cont-text:first-child {
    margin-top: 0;
  }
}

.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 767px) {
  .contacts__wrapper {
    padding: 0 15px;
  }
}

.contacts .left {
  width: 480px;
  max-width: 100%;
  padding-bottom: 75px;
  padding-right: 30px;
}

@media (max-width: 992px) {
  .contacts .left {
    width: 350px;
  }
}

@media (max-width: 1023px) {
  .contacts .left {
    padding-bottom: 45px;
    margin: 0 auto;
    width: 425px;
  }
}

.contacts .left-w {
  display: flex;
  margin-top: 25px;
  gap: 35px;
}

.contacts .adress {
  padding: 2px 0 2px 25px;
  background: url(/img/pin.svg) 0 50% no-repeat;
  margin-bottom: 15px;
  background-size: auto 18px;
  color: var(--gray-900);
  line-height: 1.6;
}

.contacts .time {
  padding: 2px 0 2px 25px;
  background: url(/img/pin.svg) 0 50% no-repeat;
  background-size: auto 18px;
}

.contacts .phone {
  margin-top: 10px;
}

.contacts .phone a {
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  font-size: 28px;
}

.contacts .phone a:hover {
  color: var(--brand-dark);
}

.contacts .social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contacts .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
}

.contacts .social img {
  width: 24px;
  height: 24px;
}

.map {
  position: absolute;
  top: 25px;
  right: 0;
  width: 49.2%;
  height: 437px;
  background: url('/img/map.jpg') 0 0 no-repeat;
}

@media (max-width: 1023px) {
  .map {
    position: relative;
    top: 0;
    margin-bottom: 50px;
    width: 100%;
    background: url('/img/map100.jpg') 50% no-repeat;
  }
}

.map-frame {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.right {
  display: flex;
  flex: 1;
  min-width: 0;
}

@media (max-width: 1000px) {
  .map-frame {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .contacts__wrapper {
    flex-direction: column;
  }
  .right {
    margin-bottom: 40px;
    order: -1;
  }
  .map-frame {
    margin: 0 auto;
    height: 300px;
  }
}

/* ========== Disclaimer ========== */

.disclaimer {
  margin-top: 40px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.disclaimer small {
  color: var(--gray-600);
}

.disclaimer p {
  margin-top: 4px;
}

.disclamer_switch {
  display: inline-block;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--brand);
}

.disclamer_switch:hover {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.disclaimer-hidden p small {
  font-size: 11px;
  color: var(--gray-400);
}

@media (max-width: 767px) {
  .disclaimer {
    margin: 40px 15px 0;
  }
}

/* ========== Forms ========== */

form {
  position: relative;
}

form .form-group {
  margin-bottom: 10px;
  position: relative;
}

input[type='text'],
input[type='tel'],
form .form-group input[type='text'],
form .form-group input[type='tel'] {
  height: 50px;
  width: 100%;
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  padding: 0 20px;
  outline: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

input[type='text']:focus,
input[type='tel']:focus,
form .form-group input[type='text']:focus,
form .form-group input[type='tel']:focus {
  border-color: var(--brand);
  outline: none;
}

input::placeholder {
  color: var(--gray-400);
}

form .form-group select {
  height: 50px;
  width: 100%;
  color: var(--black);
  font-size: 15px;
  font-family: var(--font-ui);
  font-weight: 400;
  padding: 0 20px;
  outline: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  appearance: none;
  background: url(/img/ico_select.png) 95% 50% no-repeat var(--white);
}

form .form-group button {
  width: 100%;
  cursor: pointer;
  font-family: var(--font-ui);
  outline: none;
  border-radius: var(--radius-sm);
}

.agree_field {
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 17px;
  position: relative;
  display: inline-block;
  padding-left: 29px;
  color: var(--gray-600);
}

.agree_field a {
  color: var(--gray-600);
  text-decoration: underline;
}

.agree_field input {
  position: absolute;
  top: -1px;
  left: 0;
  margin: 0;
  z-index: 2;
  background-color: transparent;
}

.not_agree button {
  background-color: var(--gray-400) !important;
  cursor: auto !important;
  color: var(--white) !important;
  border: none !important;
}

/* ========== Popup ========== */

#form_popup {
  display: none !important;
}

#form_popup2 {
  display: none !important;
}

.popup_container {
  padding: 30px;
}

.popup_container h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.has-danger {
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 0 3px rgba(238,145,142,0.3);
  border-color: #e74c3c !important;
  border-radius: var(--radius-sm);
}

/* ========== Cookie Banner ========== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  max-width: 1386px;
  width: 95%;
  transform: translateX(-50%) translateY(100%);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  font-family: var(--font-ui);
  font-size: 13px;
}

#cookie-banner.show {
  transform: translateX(-50%) translateY(-150px);
}

#cookie-banner button {
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  color: var(--black) !important;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

#x-cross-7 {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

#x-cross-7:hover {
  filter: grayscale(0%);
  opacity: 1;
}
