* {
    margin: 0;
}

body {
    margin: 0;
}

/* --------- HEADER --------- */

.header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 12000;
    width: 100%;
    padding: 1vw 10vw;
}

.header__container {
    width: 100%;
    margin: 0 0;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    display: flex;
    gap: var(--space-lg);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.header__actions {
    width: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
    overflow: visible;
    background-color: green;
}

.header__left {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header__logo {
    display: block;
    height: var(--height-sm);
}

.header__logo img {
    height: 100%;
    width: auto;
    display: block;
}

.lang-dropdown {
    position: relative;
    width: 100%;
    width: var(--space-xl);
}

.lang-dropdown__btn {

    width: auto;
    height: var(--height-md);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);


    background: none;
    border: none;
}

.lang-dropdown__btn span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.lang-dropdown__btn svg {
    width: var(--space-sm);
}

.lang-dropdown__list {
    position: absolute;
    top: var(--height-md);
    left: 0;
    width: 100%;

    background: var(--color-white);
    border: none;

    display: none;
    flex-direction: column;

    max-height: 0;
    overflow-y: auto;
    box-shadow: var(--shadow-sm);
    border-top: var(--border-black);
    
}

.lang-dropdown.open .lang-dropdown__list {
    display: flex;
    max-height: calc(var(--height-md)* 2);
}

.lang-dropdown__list::webkit-scrollbar {
    width: 4px;
}

.lang-dropdown__option {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);

    height: var(--space-lg);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
    border: none;
    border-top: var(--border-black);
}

.lang-dropdown__option:first-child {
    border-top: none;
}

.header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--space-md);
    height: var(--space-md);
    cursor: pointer;
    flex-shrink: 0;
}

.header__icon svg {
    display: block;
    width: 80%;
    height: 80%;
}

.header__icon img {
    display: block;
    width: 200%;
}

.cart-count {
    display: none;
    position: absolute;
    width: var(--space-sm);
    height: var(--space-sm);
    top: 10px;
    right: -5px;
    background-color: var(--color-black);;
    padding: 0;
    border-radius: 50%;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);
    text-align: center;
}

.cart-count:not(:empty) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-count span {
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);
}

.header__right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}


.header__lang-btn svg {
    display: block;
    height: var(--height-xs);
}

/* --------- BURGER MENU --------- */

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  gap: 6px;
  z-index: 10000;
}

.header__burger span {
  width: 100%;
  height: 1.5px;
  background-color: #1E110D;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active .mobile-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 300px;
  gap: 4vh;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  pointer-events: auto;
}

.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__link {
    padding: 0;
    font-size: var(--text-xxl);
    text-decoration: none;
    color: var(--color-black);
    transition: var(--transition);
    text-transform: var(--text-uppercase);
    font-weight: var(--text-light);
    transition: background-color 0.2s ease;
}

.mobile-menu__link:hover {
  background-color: #F5F1ED;
}

/* Скрытие скролла при открытом меню */
body.menu-open {
  overflow: hidden;
}



/* --------- FOOTER --------- */

.footer {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background: var(--color-black);
    padding: 4vh 10vw 4vh;
    display: flex;
    flex-direction: column;
    gap: 12vh;
}

.footer__container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    margin-bottom: auto;
    height: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__btns {
    display: flex;
    gap: var(--space-sm);
}

.footer__media-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--space-lg);
    height: var(--space-lg);
    border: var(--border-white);
    border-radius: var(--radius-lg);
}

.footer__media-btn img {
    display: block;
    width: var(--space-sm);
    height: var(--space-sm);
}

.footer__nav {
    display: flex;
    gap: var(--space-xl);

    margin: 0 auto;
}

.footer__nav__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__logo {
    display: block;
    height: var(--height-md);
}

.footer__logo svg {
    height: 100%;
    width: auto;
    display: block;
}

.footer__contact-form {
    display: flex;
    gap: var(--space-sm);
}

.footer__form-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 15vw;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__form__input {
    height: 3vh;
}

.footer__form__btn {
    padding: 0 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__copyright-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* --------- CONTAINERS --------- */

main {
    display: block;
    padding-top: var(--header-height);
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 10vh 0 15vh;
    height: auto;
}

.container-cart {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 6vh 0 12vh;
    height: auto;
}

.container__catalog {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 6vh 0 20vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-xxl);
}

.container__collections {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 6vh 0 20vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-lg);
}

.container__politics {
    max-width: var(--container__politics-width);
    margin: 0 auto;
    width: 100%;
    padding: 6vh 0 12vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--height-lg);
}

.container__brand {
    max-width: var(--container__brand-width);
    margin: 0 auto;
    width: 100%;
    padding: 6vh 0 12vh;
    min-height: 80vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--height-lg);
}

/* --------- text-containers --------- */

.text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--height-xs);
}

.list {
    display: flex;
    flex-direction: column;
    gap: var(--height-xs);
    padding-left: var(--space-sm);
}

.line {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.column {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: var(--height-xs);
}

/* --------- BANNERS --------- */

.banner {
    position: relative;
    max-height: 80vh;
    z-index: 1000;
}

.banner__image {
    width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: cover;
    object-position: top;
}

.banner__content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    padding: 4vh 10vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner--home__content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    padding: 4vh 10vw 2vh;
    display: flex;
    flex-direction: column;
}

.black p {
    color: var(--color-black);
}

.banner--home__line {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-self: flex-end;
    margin-top: 0;
}


/* --------- PRODUCT GRID + CARD --------- */

.products-grid {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: 0;
    margin-top: var(--height-md);
}

.product-card {
    flex: 0 1 calc(33.333% - var(--space-lg));
    max-width: 18vw;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

.product-card__image {
    width: 100%;
    max-width: 20vw;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: auto;
    z-index: 2000;
}

.product-card__text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-lg);
}

/* --------- GALERIA --------- */

.wrapper {
    position: relative;
}

.gallery__overlay,
.gallery__block {
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    width: var(--container__brand-width);
}

.gallery__block {
    background-color: var(--color-white);
    width: var(--container__brand-width);
    min-height: 0;
    height: auto;
    
    position: sticky;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
    padding: 0 0;
}

.gallery__block:first-child {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 0;
    align-items: flex-start;
    min-height: auto;
}

.gallery__block:nth-child(1) { z-index: 1; }
.gallery__block:nth-child(2) { z-index: 2; }
.gallery__block:nth-child(3) { z-index: 3; }
.gallery__block:nth-child(4) { z-index: 4; }
.gallery__block:nth-child(5) { z-index: 5; }
.gallery__block:nth-child(6) { z-index: 6; }
.gallery__block:nth-child(7) { z-index: 7; }
.gallery__block:nth-child(8) { z-index: 8; }
.gallery__block:nth-child(9) { z-index: 9; }
.gallery__block:nth-child(10) { z-index: 10; }
.gallery__block:nth-child(11) { z-index: 11; }
.gallery__block:nth-child(12) { z-index: 12; }
.gallery__block:nth-child(13) { z-index: 13; }
.gallery__block:nth-child(14) { z-index: 14; }
.gallery__block:nth-child(15) { z-index: 15; }
.gallery__block:nth-child(16) { z-index: 16; }
.gallery__block:nth-child(17) { z-index: 17; }
.gallery__block:nth-child(18) { z-index: 18; }
.gallery__block:nth-child(19) { z-index: 19; }
.gallery__block:nth-child(20) { z-index: 20; }
.gallery__block:nth-child(21) { z-index: 21; }
.gallery__block:nth-child(22) { z-index: 22; }
.gallery__block:nth-child(23) { z-index: 23; }
.gallery__block:nth-child(24) { z-index: 24; }
.gallery__block:nth-child(25) { z-index: 25; }
.gallery__block:nth-child(26) { z-index: 26; }

.gallery__block:first-child .gallery__block__text {
    position: relative;
    top: 0;
}

.gallery__inner {
    width: 25vw;
    margin-top: var(--height-xl);
}

.gallery__inner-h {
    width: 50vw;
    margin-top: var(--height-xl);
}


.gallery__overlay {
    position: sticky;
    top: var(--height-xl);
    width: var(--container__brand-width);

    height: 0;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 0 auto;
    margin-bottom: -16vh;
}

.gallery__overlay2 {
    position: sticky;
    top: 80vh;
    left: 0;
    width: 100%;

    z-index: 100;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin: 0 auto;
}

.gallery__overlay .line,
.gallery__overlay2 .line {
    transition: opacity 0.4s ease;
}

.gallery__overlay .line.fade,
.gallery__overlay2 .line.fade {
    transition: opacity 0;
}

.gallery__overlay .t1 {
    background-color: var(--color-white);
}

.gallery__overlay2 .t2 {
    width: 15vw;
    background-color: var(--color-white);
}


.gallery__block h1 {
    margin-bottom: 0;
}


.gallery__img-h {
    width: 50vw;
}

.gallery__block__text {
    position: absolute;
    top: var(--height-lg);
    left: 0;
    width: 100%;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery__block__text .line {
    width: var(--container__brand-width);
}


.gallery__img {
    width: 25vw;
}

/* --------- TIENDAS --------- */

.bg-white {
    background-color: var(--color-white);
}

.shops__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--height-sm);
}

.shops__text {
    position: sticky;
    top: var(--height-xl);
    width: 100%;
    margin: 0 auto;
    margin-bottom: -26vh;
    padding-bottom: 2vh;
}

.status {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.circle {
    display: block;
    height: var(--space-xs);
    width: var(--space-xs);
    background-color: #5EF843;
    border-radius: var(--radius-lg);
}

/* --------- TALLER --------- */

.workshop__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--height-xl);
}

.workshop__text {
    position: sticky;
    top: var(--height-xl);
    width: 100%;
    margin: 0 auto;
    margin-bottom: -23vh;
    display: flex;
    justify-content: flex-start;
}

.workshop__text .t2 {
    max-width: 20vw;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video {
    width: 20vw;
    height: auto;
    object-fit: cover;
    display: block;
}

/* --------- PRODUCT PAGE --------- */

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
}

.product-layout__image img {
    width: 100%;
    display: block;
}

.product-layout__info {
    width: 25vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-md);
}

.product-sizes {
    width: 100%;
    display: flex;
    gap: var(--space-xl);
}

.size-dropdown {
    position: relative;
    width: 100%;
    width: var(--space-xl);
}

.size-dropdown__btn {

    width: auto;
    height: var(--height-md);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);


    background: none;
    border: var(--border-black);
    border-radius: var(--radius-lg);
}

.size-dropdown__btn span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.size-dropdown__btn svg {
    width: var(--space-sm);
}

.size-dropdown__list {
    position: absolute;
    top: var(--height-lg);
    left: 25%;
    width: 100%;

    background: var(--color-white);
    border: var(--border-black);

    display: none;
    flex-direction: column;

    height: 100%;
    overflow-y: auto;
}

.size-dropdown.open .size-dropdown__list {
    display: flex;
    height: fit-content;
}

.size-dropdown__list::webkit-scrollbar {
    width: 4px;
}

.size-dropdown__option {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
    background-color: var(--color-white);

    height: var(--space-lg);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
    border: none;
    border-top: var(--border-black);
}

.size-dropdown__option:first-child {
    border-top: none;
}

.size-dropdown__option:hover {
    background-color: #e0e0e0;
}

.size-dropdown__option--disabled {
    background-color: var(--color-white);
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

.size-dropdown__option--disabled:hover {
    background-color: var(--color-white);
}

.size-dropdown__option--disabled:active {
    transform: none;
}

.size-recommend {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);

    width: 100%;
    height: var(--height-md);

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


    background: none;
    border: var(--border-black);
    border-radius: var(--radius-lg);
}



.product__add-to-cart {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 100%;
    height: var(--height-md);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}

.product-layout__features {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--height-xs);
}

.accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-xs);
}

.accordion__header {
    background: none;
    border: none;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);

    pointer-events: all;
}

.accordion__header span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.accordion__header svg {
    width: var(--space-sm);
    transition: transform 0.3s ease;
}

.accordion.active .accordion__header svg {
    transform: rotate(180deg);
}

.accordion__content {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
}

.accordion__content {
    display: none;
}

.accordion.active .accordion__content {
    display: block;
}

/* --------- CART --------- */

.cart-items {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--space-xxl);
    padding-top: var(--height-lg);
}

.cart-item {
    width: 20vw;
    display: flex;
    flex-direction: column;
    gap: var(--height-sm);
}

.cart-item img {
    display: block;
    width: 100%;
    max-width: 20vw;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--height-xs);
    padding: var(--space-lg);
}

.cart-bar {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: var(--shadow-sm-top);
    z-index: 2000;
    background-color: var(--color-white);
    padding: var(--height-xs) 0;
}

.cart-bar__container {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-lg);
}

.btn-lg {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 10vw;
    height: var(--height-lg);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}

.cart-item__delete {
    width: auto;
    background: none;
    border: none;
    padding: 0;

    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
    text-decoration: underline;
}

/* --------- CHECKOUT --------- */

.checkout-wrapper {
    display: flex;
    gap: 15vw;
}

.checkout__form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-lg);
}

.checkout-form {
    width: 40vw;
    display: flex;
    flex-direction: column;
    gap: var(--height-lg);
}

.form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    gap: var(--height-sm);
    padding: 0;
}

.form-section__title {
    margin-bottom: var(--height-sm);
}

.checkout-form .form-group {
    max-width: 16vw;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--height-xs);
    width: 15vw;
}

.form-input {
    height: var(--height-md);
    padding: 0 var(--space-xs);
}

.form-label {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.checkout__summary {
    position: sticky;
    top: var(--height-xl);
    width: 100%;
    height: fit-content;
}

.order-summary {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-sm);
}

.order-item {
    width: 100%;
    display: flex;
    gap: var(--space-lg);
    height: 10vh;
}

.order-item__image {
    display: block;
    width: 6vw;
}

.order-item__details {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item__title {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__price {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__size {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__quantity {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.summary-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.summary-row span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.summary-row--total {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--height-lg);
}

.summary-row--total span {
    font-family: var(--font-main);
    font-size: var(--text-lg);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.back-to-cart-link {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
    margin-top: var(--height-sm);
}

.checkout-btn {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 100%;
    height: var(--height-lg);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.checkout-btn:hover {
    text-decoration: underline;
}

.form-error {
    display: none;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: #d32f2f;
    margin-top: 4px;
    padding: 6px 8px;
    background-color: var(--color-black);
    border-radius: var(--color-black);
}

.form-error.error-active {
    display: block !important;
}

.form-input.has-error,
select.has-error {
    border-color: #d32f2f;
    background-color: var(--color-black);
}

/* --------- COLLECTION --------- */

.collections-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    width: 100%;
    padding: 0;
}

.collection-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-sm);
}

.collection-card img {
    display: block;
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

/* --------- MODAL --------- */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--height-md);
    align-items: center;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 30vw;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10;
}

.modal__content .t1 {
    text-align: center;
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: var(--h3);
    cursor: pointer;
}

.size-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--height-md);
    margin: var(--height-md) 0;
}

.form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.form-group input,
.form-group select {
    padding: var(--space-xs);
    border: var(--border-black);
    border-radius: var(--radius);
    font-size: var(--text-md);
}

.form-group input::placeholder {
    font-size: var(--text-md);
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.size-result.hidden {
    display: none;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    margin: var(--space-md) 0;
}

.result-summary {
    padding: var(--space-xs) 0 var(--space-md);

}

.result-summary p {
    margin: var(--height-sm) 0;
}

.recommended-size {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.modal__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.qty-btn {
    background: none;
    border: none;
}

/* ============================================
   МИНИ-КОРЗИНА (Mini Cart)
   ============================================ */

.mini-cart {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mini-cart.hidden {
  display: none;
}

.mini-cart__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: auto;
  transition: background 0.3s ease;
}

.mini-cart.show .mini-cart__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.mini-cart__content {
  position: fixed;
  top: var(--header-height);
  right: 10vw;
  width: 25vw;
  max-height: calc(100vh - var(--header-height) - 2rem);
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  border-radius: var(--radius-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  border: var(--border-black);
}

.mini-cart.show .mini-cart__content {
  transform: translateY(0);
  opacity: 1;
}

/* HEADER */
.mini-cart__header {
  padding: 16px 20px 12px;
  border-bottom: var(--border-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: var(--space-md);
}

.mini-cart__title {
  font-family: var(--font-main);
  font-size: var(--text-md);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  margin: 0;
  color: var(--color-black);
}

.mini-cart__close {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: var(--text-light);
  cursor: pointer;
  color: var(--color-black);
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.mini-cart__close:hover {
  opacity: 0.6;
}

/* ITEMS */
.mini-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.mini-cart__item {
  display: flex;
  gap: var(--space-md);
  padding: 16px;
  border-bottom: var(--border-black);
  align-items: flex-start;
}

.mini-cart__item:last-child {
  border-bottom: none;
}

.mini-cart__item-image {
  width: 8vw;
  height: 8vw;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-cart__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-cart__item-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  color: var(--color-black);
}

.mini-cart__item-size {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  color: #999;
}

.mini-cart__item-price {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  color: var(--color-black);
}

.mini-cart__item-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 8vw;
  max-height: 4vh;
  gap: 8px;
  border: var(--border-black);
  border-radius: var(--radius-lg);
  background: #f9f9f9;
  padding: 4px;
  margin-top: 6px;
  align-self: flex-end;
  justify-self: flex-end;
}

.mini-cart__item-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: opacity 0.2s;
  padding: 0;
}

.mini-cart__item-btn:hover {
  opacity: 0.6;
}

.mini-cart__item-qty {
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  color: var(--color-black);
  min-width: 20px;
  text-align: center;
}

.mini-cart__empty {
  text-align: center;
  padding: 40px 20px;
  font-family: var(--font-main);
  font-size: var(--text-md);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  color: #999;
}

/* FOOTER */
.mini-cart__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-top: var(--border-black);
  flex-shrink: 0;
}

.mini-cart__btn {
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--text-md);
  font-weight: var(--text-light);
  text-transform: var(--text-uppercase);
  line-height: var(--line-height);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--height-md);
}

.mini-cart__btn--view {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
}

.mini-cart__btn--view:hover {
  opacity: 0.8;
}

.mini-cart__btn--continue {
  background: none;
  color: var(--color-black);
  border: var(--border-black);
}

.mini-cart__btn--continue:hover {
  background: #f5f1ed;
}

.rich-text {
    text-transform: uppercase;
    font-size: var(--text-md);
    font-weight: var(--text-light);
    line-height: var(--line-height);
    padding: 0;
}

.rich-text ol {
    padding: 0 var(--space-sm);
}

.rich-text li {
    display: list-item;
    margin-bottom: var(--height-xs);
    line-height: var(--line-height);
    white-space: normal;
}


/* --------- MOBILE --------- */

@media (min-width: 769px) {
    .header__burger {
        display: none;
    }

}

@media (max-width: 768px) {
    main {
        overflow-x: hidden;
        background-color: var(--color-white);
    }

    body {
        background-color: var(--color-white);
    }

    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        width: 100%;
        padding: 2vh 0;
        height: auto;
    }

    .container__politics {
        max-width: calc(100vw - 40px);
        margin: 0 auto;
        width: 100%;
        padding: 6vh 20px 12vh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: var(--height-lg);
    }

    .header {
        height: auto;
    }

    .header__burger {
    display: flex;
  }

  .header__nav {
    display: none;
  }

  .header__container {
    padding: 0 0;
    height: auto;
  }

  .header__left {
    padding: 0;
  }

  .header__logo img {
    height: 24px;
  }

  .header__right {
    gap: 16px;
  }

  .mobile-menu__content {
    padding-top: 200px;
  }

  .lang-dropdown {
    position: relative;
    width: 100%;
    width: var(--space-xl);
}

.lang-dropdown__btn {

    width: auto;
    height: var(--height-md);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);


    background: none;
    border: none;
}

.lang-dropdown__btn span {
    font-family: var(--font-main);
    font-size: var(--text-lg);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.lang-dropdown__btn svg {
    width: var(--space-sm);
}

  .lang-dropdown__list {
    right: auto;
    left: 0;
  }

  .header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--space-lg);
    height: var(--space-lg);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: var(--space-lg);
}

.header__icon svg {
    display: block;
    width: 80%;
    height: 80%;
}

.header__icon img {
    display: block;
    width: 200%;
}

.footer {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background: var(--color-black);
    padding: 4vh 10vw 4vh;
    display: flex;
    flex-direction: column;
    gap: 12vh;
    margin-top: 10vh;
}

.footer__container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    margin-bottom: auto;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-xl);
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__btns {
    display: flex;
    gap: var(--space-sm);
}

.footer__media-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--space-lg);
    height: var(--space-lg);
    border: var(--border-white);
    border-radius: var(--radius-lg);
}

.footer__media-btn img {
    display: block;
    width: var(--space-sm);
    height: var(--space-sm);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-xl);

    margin: 0 0;
}

.footer__nav__column {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-sm);
    text-align: left;
}

.footer__link {
    font-size: var(--h3);
}

.footer__logo {
    display: block;
    height: var(--height-md);
}

.footer__logo svg {
    height: 100%;
    width: auto;
    display: block;
}

.footer__contact-form {
    width: 100%;
    display: flex;
    gap: var(--space-sm);
}

.footer__form-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__form__input {
    width: 100%;
    height: 3vh;
}

.footer__form__btn {
    padding: 0 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__copyright-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}


    .banner {
        position: relative;
        height: 50vh;
        z-index: 1000;
    }

    .banner__image {
        width: 100%;
        height: 100%;
        display: block;
    }

    .banner__image {
        object-fit: cover;
        background-position: center;
    }

    .products-grid {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 8vh;
        padding: 0 0 10vh;
        margin-top: 0;
    }

    .product-card {
    flex: 1;
    max-width: 90vw;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

.product-card__image {
    width: 100%;
    max-width: 90vw;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: auto;
    z-index: 2000;
}

.product-card__text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-lg);
}

.wrapper {
    position: relative;
  }

  .gallery__overlay,
  .gallery__overlay2 {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
    z-index: auto !important;
    flex-direction: column;
  }

  .gallery__overlay {
    margin-bottom: 20px;
  }

  .gallery__overlay .line,
  .gallery__overlay2 .line {
    width: 100% !important;
    padding: 16px !important;
  }

  .gallery__overlay .t1 {
    display: none;
    margin-right: 10px;
    font-size: 16px;
  }

  .gallery__overlay2 .t2 {
    display: none;
    width: 100% !important;
    font-size: 14px;
    line-height: 1.6;
  }

  .gallery__block {
    width: 100% !important;
    position: static !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: auto !important;
    flex-direction: column !important;
    align-items: center;
  }

  .gallery__block:first-child {
    display: none; /* Скрой первый блок на мобилке */
  }

  .gallery__inner,
  .gallery__inner-h {
    width: 100% !important;
    margin-top: 0 !important;
  }

  .gallery__img,
  .gallery__img-h {
    width: 100%;
    max-width: calc(100vw - 40px);
    height: auto !important;
  }

  .gallery__block__text {
    display: none;
    position: static !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
  }



  .container__brand {
    position: relative;
    max-width: 100vw;
    margin: 0;
    width: 100%;
    padding: 6vh 0;
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--height-lg);
  }

  .shops__block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--height-sm);
}

.shops__text {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    max-width: calc(100vw - 40px);
}

.status {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.circle {
    display: block;
    height: var(--space-xs);
    width: var(--space-xs);
    background-color: #5EF843;
    border-radius: var(--radius-lg);
}

.workshop__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--height-xl);
}

.workshop__text {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.workshop__text .t2 {
    max-width: calc(100vw - 40px);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video {
    width: calc(100vw - 40px);
    height: auto;
    object-fit: cover;
    display: block;
}

.product-layout {
    display: flex;
    flex-direction: column;
}

.product-layout__image img {
    width: 100%;
    display: block;
}

.product-layout__info {
    width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-md);
}

.product-sizes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.size-dropdown {
    position: relative;
    width: 100%;
    width: 15vw;

}

.size-dropdown__btn {

    width: auto;
    height: var(--height-md);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);


    background: none;
    border: var(--border-black);
    border-radius: var(--radius-lg);
}

.size-dropdown__btn span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.size-dropdown__btn svg {
    width: var(--space-sm);
}

.size-dropdown__list {
    position: absolute;
    top: var(--height-lg);
    left: 25%;
    width: 100%;

    background: var(--color-white);
    border: var(--border-black);

    display: none;
    flex-direction: column;

    height: fit-content;
    overflow-y: auto;
}

.size-dropdown.open .size-dropdown__list {
    display: flex;
    height: fit-content;
}

.size-dropdown__list::webkit-scrollbar {
    width: 4px;
}

.size-dropdown__option {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);

    height: var(--space-lg);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
    border: none;
    border-top: var(--border-black);
}

.size-dropdown__option:first-child {
    border-top: none;
}



.size-recommend {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);

    width: 100%;
    max-width: 60vw;
    height: var(--height-md);

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


    background: none;
    border: var(--border-black);
    border-radius: var(--radius-lg);
}



.product__add-to-cart {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 100%;
    height: var(--height-md);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}

.product-layout__features {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--height-xs);
}

.accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--height-xs);
}

.accordion__header {
    background: none;
    border: none;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);

    pointer-events: all;
}

.accordion__header span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.accordion__header svg {
    width: var(--space-sm);
    transition: transform 0.3s ease;
}

.accordion.active .accordion__header svg {
    transform: rotate(180deg);
}

.accordion__content {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
}

.accordion__content {
    display: none;
}

.accordion.active .accordion__content {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--height-md);
    align-items: center;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: calc(100vw - 40px);
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10;
}

.modal__content .t1 {
    text-align: center;
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: var(--h1);
    cursor: pointer;
}

.size-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--height-md);
    margin: var(--height-md) 0;
}

.form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.form-group input,
.form-group select {
    padding: var(--space-xs);
    border: var(--border-black);
    border-radius: var(--radius);
    font-size: var(--text-md);
}

.form-group input::placeholder {
    font-size: var(--text-md);
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.size-result.hidden {
    display: none;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    margin: var(--space-md) 0;
}

.result-summary {
    padding: var(--space-xs) 0 var(--space-md);

}

.result-summary p {
    margin: var(--height-sm) 0;
}

.recommended-size {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.modal__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.btn-lg {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 100%;
    min-width: 30vw;
    height: var(--height-md);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
}


.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.cart-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-sm);
}

.cart-item img {
    display: block;
    width: 100%;
    max-width: 100vw;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--height-xs);
    padding: var(--space-lg);
}

.cart-bar {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: var(--shadow-sm-top);
    z-index: 2000;
    background-color: var(--color-white);
    padding: var(--height-xs) 0;
}

.cart-total__container {
    display: flex;
    gap: var(--space-md);
}

.cart-bar__container {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-lg);
}


.cart-item__delete {
    width: auto;
    background: none;
    border: none;
    padding: 0;

    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
    text-decoration: underline;
}

.checkout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15vw;
}

.checkout-wrapper .line {
    justify-content: flex-start;
    gap: 15vw;
}


.checkout__form-section {
    padding-top: 4vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-xs);
}

.checkout-form {
    width: 100%;
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    gap: var(--height-lg);
}

.form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    gap: var(--height-sm);
    padding: 0;
}

.form-section__title {
    margin-bottom: var(--height-sm);
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--height-xs);
    width: 100%;
    min-width: 35vw;
}

.form-input {
    height: var(--height-md);
    padding: 0 var(--space-xs);
    width: 100%;
}

.form-label {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.checkout__summary {
    position: relative;
    top: 0;
    width: 100%;
    height: fit-content;
}

.order-summary {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--height-sm);
}

.order-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

.order-item__image {
    display: block;
    width: 20vw;
    object-fit: cover;
}

.order-item__details {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item .line {
    justify-content: space-between;
}

.order-item__title {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__price {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__size {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.order-item__quantity {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.summary-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.summary-row span {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.summary-row--total {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--height-lg);
}

.summary-row--total span {
    font-family: var(--font-main);
    font-size: var(--text-lg);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
}

.back-to-cart-link {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-black);
    margin-top: var(--height-sm);
}

.checkout-btn {
    font-family: var(--font-main);
    font-size: var(--text-md);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: var(--color-white);

    width: 100%;
    height: var(--height-lg);

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

    background: var(--color-black);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.checkout-btn:hover {
    text-decoration: underline;
}

.form-error {
    display: none;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: var(--text-light);
    text-transform: var(--text-uppercase);
    line-height: var(--line-height);
    color: #d32f2f;
    margin-top: 4px;
    padding: 6px 8px;
    background-color: var(--color-black);
    border-radius: var(--color-black);
}

.form-error.error-active {
    display: block !important;
}

.form-input.has-error,
select.has-error {
    border-color: #d32f2f;
    background-color: var(--color-black);
}

.qty-btn {
    background: none;
    border: none;
    font-size: var(--text-xxl);
}

.mini-cart__content {
    width: 90vw;
    right: 5vw;
    margin-top: 2vh;
    max-height: calc(100vh - var(--header-height) - 1rem);
  }

  .mini-cart__item-image {
    width: 60px;
    height: 60px;
  }

  .mini-cart__item-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 30vw;
  max-height: 4vh;
  gap: 8px;
  border: var(--border-black);
  border-radius: var(--radius-lg);
  background: #f9f9f9;
  padding: 4px;
  margin-top: 6px;
  align-self: flex-end;
  justify-self: flex-end;
}
}




