
:root {
    --bg: #000000;
    --text: #cecece;
    --link: #f3a6d1;
    --maxw: 2560px;
    --container: 90%;
    --menuBtnBg: #7a5369;
    --drawerBg: #48092c;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Asap", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 220ms ease;
}

a:hover {
  color: #ffffff; 
  text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
}


.page {
  display:grid;
  grid-template-columns: 320px 1fr;
  grid-template-rows: auto auto auto auto;  
  row-gap: 28px;
  column-gap: 44px;
  align-items: start;
  padding-top: 10px;

  grid-template-areas:
    "brand header"
    "sidebar main"
    "categories categories"
    "footer footer";
}




.models-iframe__box--models {
  aspect-ratio: 600 / 1240;
}

.models-iframe__boxphoto--models {
  aspect-ratio: 1 / 1;
}


.models-iframe {
  width: 100%;
}


.models-iframe__box {
  width: 100%;
  position: relative;
  overflow: hidden;

}


.models-iframe__box > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.models-iframe__box--desktop { aspect-ratio: 800 / 480; }
.models-iframe__box--tablet  { aspect-ratio: 600 / 456; }
.models-iframe__box--mobile  { aspect-ratio: 400 / 608; }


.models-iframe__box--desktop { display: block !important; }
.models-iframe__box--tablet  { display: none  !important; }
.models-iframe__box--mobile  { display: none  !important; }


.review {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.review.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.side-categories--wide{ grid-area: categories; margin-top: 0; }
.site-footer{ grid-area: footer; }

.brand--desktop { grid-area: brand; }
.site-header   { grid-area: header; }
.sidebar       { grid-area: sidebar; }
.main          { grid-area: main; }




.lang__item,
.footer-lang__item{
  transition: color 220ms ease;
}

.lang__item:hover,
.footer-lang__item:hover{
  color: var(--link);
}


.lang__item:hover .lang__code,
.footer-lang__item:hover .footer-lang__code{
  color: var(--link);
}


.brand--mobile {
    display: none;
}

.brand__logo--mobile {
    height: 34px;
    width: auto;
}

.site-header {
    position: relative;
    width: 100%;
    padding: 0 0 10px;
}



.side-links {
    width: 100%;
    min-width: 240px;
    background: #48092c;
    border-radius: 16px;
    padding: 30px 38px;
}

.side-links__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-links__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 14px 0;
}

.side-links__link {
  position: relative;
  display: inline-block;
  padding-left: 22px; 
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  transition: color 220ms ease;
}

.side-links__link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  color: var(--link);
}

.side-links__link:hover {
  color: var(--link); 
  text-decoration: none;
}

.side-links__link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


.side-links__link[aria-current="page"],
.side-links__link.is-active,
.side-links__link.active {
  color: var(--link);
}

.side-links__link[aria-current="page"]::before,
.side-links__link.is-active::before,
.side-links__link.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.side-links__promo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #feabd9;
    font-weight: 800;
    font-size: clamp(18px, 1.6vw, 26px);
}

.side-links__promo:hover {
  color: #ffffff; 
  text-decoration: none;
}

.side-links__promo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 40px;
}

.side-links__promo-text {
  color: inherit;
  font-size: 24px;
  font-weight: 700;
}

.header__nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.nav__link {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 600;
}

.nav__menu {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 22px;
}

.nav__actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.lang {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.lang__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}

.lang__code {
    color: var(--text);
    font-size: clamp(16px, 1.8vw, 22px);
}

.lang__flag {
   
    height: 18px;
    object-fit: cover;
}

.login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--link);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  transition: color 220ms ease;
}

.login:hover {
  color: #ffffff; 
}


.login__text {
  color: inherit;
}

.login__icon {
    width: 22px;
    height: 22px;
}

.header__mobile {
    display: none;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    position: relative;
    z-index: 1100;
}

.menu-toggle__bg {
    fill: var(--menuBtnBg);
}

.menu-toggle__line {
    stroke: #ffffff;
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: transform 320ms ease, opacity 220ms ease;
  
     transform-box: fill-box;
  transform-origin: center;
}


.menu-toggle.is-open .line1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .line2 {
  opacity: 0;
}

.menu-toggle.is-open .line3 {
  transform: translateY(-7px) rotate(-45deg);
}


.drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200000;
  pointer-events: none; 
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 0;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 86vw);
  background: var(--drawerBg);
  padding: 22px 40px 28px;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  transform: translateX(110%);
  transition: transform 320ms ease;
  z-index: 1;
  will-change: transform; 
}

.drawer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  line-height: 0;
  z-index: 2;
}

.drawer__close svg path {
  stroke: #ffffff;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.is-drawer-open {
  overflow: hidden;
}

.is-drawer-open .drawer {
  pointer-events: auto;
}

.is-drawer-open .drawer__backdrop {
  opacity: 1;
}

.is-drawer-open .drawer__panel {
  transform: translateX(0);
}


.is-drawer-open .menu-toggle{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 300001;
}



.drawer__nav{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:24px;
}

.drawer__link{
  color:#ffffff;
  font-weight:800;
  font-size:24px;
  letter-spacing:0.2px;
  text-decoration:none;
  display:block;
  transition: color 220ms ease;
}

.drawer__link:hover{
  color: var(--link); 
  text-decoration: none;
}

.drawer__login{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color: var(--link);
  font-weight:700;
  font-size:32px;
  text-decoration:none;
  transition: color 220ms ease;
}

.drawer__login:hover{
  color: #ffffff; 
  text-decoration: none;
}

.drawer__login-icon{
width: 30px;
    height: 30px;
    
}


.drawer__top{
  margin-top: 46px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drawer__forgot{
  display:inline-block;
  margin-top:10px;
  color: rgba(255,255,255,0.65);
  font-weight:600;
  font-size:22px;
}

.drawer__divider{
  height:1px;
  background: rgba(255,255,255,0.18);
}

.drawer__promo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color: var(--link);
  font-weight:700;
  font-size:34px;
  text-decoration:none;
  transition: color 220ms ease;
}

.drawer__promo:hover{
  color: #ffffff; 
  text-decoration: none;
}

.drawer__promo-icon{
  width:40px;
  height:40px;
  object-fit:contain;
  flex:0 0 40px;
}

.drawer__promo-text{
  color: inherit;
}


.drawer__lang{
  display:flex;
  gap:14px;
  margin-top:10px;
  
}

.drawer__lang .lang__code{
  color:#ffffff;
  font-size:20px;
  font-weight:800;
}

.drawer__lang .lang__flag{
  
  height:22px;
}



.main {
    padding: 0 0 0px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 0.9fr;
    align-items: stretch;
    gap: 28px;
}

.content-left {
    min-width: 0;
}

.video-slot {
    width: 100%;
}

.video-slot .stream-box {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 1280 / 860;
}

.video-slot video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: center;
    border-radius: inherit;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.banner {
    width: 100%;
    flex: 1 1 0;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 260ms ease, box-shadow 260ms ease;
  transform-origin: center;
}



.banner:hover{
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(243, 166, 209, 0.35);
  position: relative;
  z-index: 2;
}


.content-text {
    margin-top: 28px;
}

.content-text p {
    max-width: 100%;
    font-size: 16px;
font-weight: 200;
    line-height: 1.2;
    color: #ffffff;
}


.content-text2 {
    margin-top: 0px;
}

.content-text2 p {
    max-width: 100%;
    font-size: 16px;
font-weight: 200;
    line-height: 1.2;
    color: #ffffff;
}


.model-card {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 32px;
    padding: 24px 32px;
    border: 1px solid #d96aa7;
    border-radius: 28px;
    margin-top: 32px;
}

.model-card__col p {
    margin: 0 0 6px;
    font-size: 16px;
    color: #ffffff;
}

.model-card__col strong {
    font-weight: 700;
}

.model-card__actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.model-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 30px;
  border-radius: 18px;
  background: linear-gradient(120deg, #7a5369, #b45f8c, #7a5369);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-position 420ms ease,
    filter 220ms ease;
}

.model-btn img {
    width: 26px;
    height: 26px;
    transition: transform 220ms ease;
}

.model-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background-position: 100% 50%;
  box-shadow:
    0 12px 34px rgba(217, 106, 167, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  filter: brightness(1.05);
}

.model-btn:hover img {
  transform: scale(1.15);
}

.model-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 6px 18px rgba(217, 106, 167, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.2);
}

.side-categories {
    margin-top: 30px;
    background: linear-gradient(180deg, #4a0f2e, #2a0618);
    border-radius: 28px;
    padding: 20px 18px;
}


@media (min-width: 901px) {
  .side-categories--wide {
    grid-column: 1 / -1; 
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  
  }


  .side-categories--wide .side-category + .side-category {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
}

  .side-categories--wide2 {
    grid-column: 1 / -1; 
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
   
  }


  .side-categories--wide2 .side-category + .side-category {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }



.side-category + .side-category {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    margin-top: 24px;
}

.side-category__title {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.side-category__card {
  position: relative;
  display: block;           
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  text-decoration: none;     
  color: inherit;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease;
  transform-origin: center;
}


.side-category__card:hover{
  transform: scale(1.03);
  box-shadow: 0 16px 44px rgba(243, 166, 209, 0.35);
  z-index: 2;
}


.side-category__card img {
    width: 100%;
    display: block;
}

.side-category__online {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7dff4f;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
}

.side-category__price {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #48092c9e;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    padding: 10px 0;
}

.side-category__desc {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1;
    color: #e6e6e6;
}


.sidebar {

  display: flex;
  flex-direction: column;
  gap: 24px; 
}



.reviews {
  margin-top: 32px;
  border: 1px solid rgba(217, 106, 167, 0.9);
  border-radius: 28px;
  background: #000;
  padding: 34px 34px 28px;
}

.reviews__title {
  margin: 0 0 26px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.review__name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.review__text {
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
  max-width: 100%;
  font-weight: 200;
}





.join-cta {

    width: 100%;
    min-height: 200px;
    max-height: 400px;
    height: 36vh;
    background: url(img/join_bg.png) center / contain no-repeat;
    background-color: #000;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
   position: relative;
    overflow: hidden;
}



/* кнопка */


.join-cta__btn {
  position: relative;
  z-index: 1;

  width: 90%;
  max-width: 720px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;

  background: linear-gradient(120deg, #7a5369, #b45f8c, #7a5369);
  background-size: 200% 200%;
  background-position: 0% 50%;

  opacity: 0.8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-position 450ms ease,
    filter 220ms ease;
}

.join-cta__btn:hover {
  transform: translateY(-2px) scale(1.03);
  background-position: 100% 50%;
  box-shadow:
    0 12px 34px rgba(217, 106, 167, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  filter: brightness(1.05);
}

.join-cta__btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 6px 18px rgba(217, 106, 167, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.2);
}

.join-cta__btn:focus-visible {
  outline: 2px solid rgba(217, 106, 167, 0.8);
  outline-offset: 3px;
}







.top-girls-wide {
  grid-column: 1 / -1;   

}

.top-girls-wide__frame {
  background: #000;
}






.site-footer {
  margin-top: 56px;
  padding: 34px 0 64px;
}


.site-footer {
  grid-column: 1 / -1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 10px;
  align-items: start;
}

.footer-title {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 18px;
}

.footer-links {
  padding-left: 34px;
  border-left: 1px solid rgba(217, 106, 167, 0.65);
}

.footer-links--support {
  padding-left: 0;
  border-left: 0;
}

.footer-link {
  display: block;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #f3c6dc;
  line-height: 0.5;
  margin: 10px 0;
  text-decoration: none;
  white-space: nowrap;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-gap {
  height: 26px;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.footer-lang__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-lang__code {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.footer-lang__flag {
  width: 34px;
  height: 22px;
  object-fit: cover;
  border-radius: 3px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;     
  padding: 0;
  margin: 10px 0 18px;
  border-radius: 0;
}

.footer-logo__img {
   
 height: clamp(30px, 6vw, 44px);
  width: auto;
  display: block;
}

.footer-logo__text {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-logo__lens {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(255,255,255,0) 35%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    radial-gradient(circle at 55% 55%, rgba(217,106,167,0.8), rgba(217,106,167,0) 55%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.7);
}

.footer-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}


  .footer-col {
 
    display:flex;
        flex-direction: column;
  }




.tg-variant { display: none; }
.tg-variant--desktop { display: block; }

.tg-variant iframe {
  display: block;
  width: 100%;
  border: 0;
}
.tg-variant { display: none; }
.tg-variant--desktop { display: block; }

.tg-variant iframe {
  display: block;
  width: 100%;
  border: 0;
}




.login-iframe {
  width: 100%;
}

#guppycamframe {
  width: 100%;
  border: 0;
  display: block;
  overflow: hidden;
  background: transparent;
  will-change: height;
  transform: translateZ(0);
}








.boys-gallery {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.boys-gallery__grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.boys-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 300 / 222;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  background: #000;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.boys-gallery__item:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 40px rgba(243, 166, 209, 0.45);
  z-index: 2;
}

.boys-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;
  display: block;
}

.boys-gallery__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: rgba(72, 9, 44, 0.75);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}





/* mobile */
@media (max-width: 900px) {


.boys-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

 .tg-variant--desktop { display: none; }
  .tg-variant--900 { display: block; height: 700px; }

    .footer-grid {
    grid-template-columns: 1fr 1fr;
       display: flex;
    flex-wrap: wrap;
    gap: 34px 24px;
  }


  .footer-col {
    width: calc(50% - 12px); 
    display:flex;
        flex-direction: column;
  }

  
  .footer-links[aria-label="New users"] {
    order: 1;
  }

 
  .footer-links--support {
    order: 2;
  }

  
  .footer-brand {
    order: 3;
  }

  
  .footer-links[aria-label="BadGirlCam"] {
    order: 4;
  }


  .reviews {
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .review__name {
    font-size: 20px;
  }

  .review__text {
    font-size: 18px;
  }


 
  .footer-links {
    border-left: 0;
    padding-left: 0;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-link {
    font-size: 16px;
  }

  .footer-lang__code {
    font-size: 22px;
  }

  .footer-lang__flag {
    width: 28px;
    height: 18px;
  }

  .footer-logo__text {
    font-size: 28px;
  }

  .footer-copy {
    font-size: 12px;
  }


}




@media (max-width: 1100px) {

 

  .model-card {
    grid-template-columns: 1fr 1fr; 
  }

  .model-card__actions {
    grid-column: 1 / -1;          
  }
}


@media (max-width: 900px) {




.side-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: -20px;                
  padding: 16px;
  z-index: 1;
}

.side-category + .side-category {
  border-top: 0;                 
  padding-top: 0;
  margin-top: 0;
}



.side-category__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.side-category__price {
  font-size: 18px;
  padding: 8px 0;
}

.side-category__desc {
  font-size: 16px;
}


 
.model-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.model-card__actions {
    align-items: stretch;
}

.model-btn {
    justify-content: center;
}

.page {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 24px;
    column-gap: 0;
    padding-top: 0px;

    grid-template-areas:
      "header"
      "main"
      "sidebar";
  }
  
    .brand--mobile {
        display: inline-flex;
        align-items: center;
    }

    .brand--desktop {
        display: none;
    }

    .side-links {
        display: none;
    }

 
    .header__nav {
        display: none;
    }

    .header__mobile {
        display: flex;
        margin-top: 20px;
        width: 100%;
    }
.lang--mobile {
  margin-left: auto;
}



    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-right {

        flex-direction: row;
        width: 100%;
    
        gap: 24px;
    }

.content-right .banner {
  width: 100%;
  height: 100%;
}

.content-right .banner-link{
  display: block;
  flex: 1 1 0;
  min-width: 0;
}

  
    .lang--mobile .lang__code {
        font-size: 14px;
    }

    .lang--mobile .lang__flag {
        
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-toggle__line,
    .drawer__panel,
    .drawer__backdrop {
        transition: none !important;
    }
}


@media (max-width: 1050px) {
  .models-iframe__box--desktop { display: none  !important; }
  .models-iframe__box--tablet  { display: block !important; }
  .models-iframe__box--mobile  { display: none  !important; }
}



@media (max-width: 500px) {

  .models-iframe__box--desktop { display: none  !important; }
  .models-iframe__box--tablet  { display: none  !important; }
  .models-iframe__box--mobile  { display: block !important; }

.join-cta__btn {font-size: 26px;}

  .side-categories {
    grid-template-columns: 1fr;
  }

  .tg-variant--900 { display: none; }
  .tg-variant--400 { display: block; height: 600px; }

}

.drawer__section{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer__nav > *,
.drawer__top > *,
.drawer__lang > * {
  opacity: 0;
  transform: translateY(-12px);
}

.is-drawer-open .drawer__nav > *,
.is-drawer-open .drawer__top > *,
.is-drawer-open .drawer__lang > * {
  animation: drawerItemIn 420ms cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes drawerItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.is-drawer-open .drawer__lang > *:nth-child(1) { animation-delay: 80ms; }
.is-drawer-open .drawer__lang > *:nth-child(2) { animation-delay: 160ms; }

.is-drawer-open .drawer__top > *:nth-child(1) { animation-delay: 240ms; }
.is-drawer-open .drawer__top > *:nth-child(2) { animation-delay: 320ms; }

.is-drawer-open .drawer__nav > *:nth-child(1)  { animation-delay: 400ms; }
.is-drawer-open .drawer__nav > *:nth-child(2)  { animation-delay: 460ms; }
.is-drawer-open .drawer__nav > *:nth-child(3)  { animation-delay: 520ms; }
.is-drawer-open .drawer__nav > *:nth-child(4)  { animation-delay: 580ms; }
.is-drawer-open .drawer__nav > *:nth-child(5)  { animation-delay: 640ms; }
.is-drawer-open .drawer__nav > *:nth-child(6)  { animation-delay: 700ms; }
.is-drawer-open .drawer__nav > *:nth-child(7)  { animation-delay: 760ms; }
.is-drawer-open .drawer__nav > *:nth-child(8)  { animation-delay: 820ms; }
.is-drawer-open .drawer__nav > *:nth-child(9)  { animation-delay: 880ms; }