* {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    box-sizing: border-box;
}

.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

body {
    margin: 0;
}

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


:root {
  --ms3-primary: #0d6efd;
  --ms3-primary-light: #e7f1ff;
  --ms3-primary-hover: #0b5ed7;
  --ms3-border: #dee2e6;
  --ms3-bg-light: #f8f9fa;
  --ms3-text-muted: #6c757d;
  --ms3-danger: #dc3545;
  --ms3-radius: 0.75rem;
  --ms3-radius-sm: 0.5rem;
  --ms3-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --ms3-shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.1);
  --ms3-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


.empty-cart-message {
  background: #fff;
  border-radius: var(--ms3-radius);
  padding: 3rem 2rem;
  box-shadow: var(--ms3-shadow);
}
.empty-cart-icon {
  font-size: 4.5rem;
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.order-section {
  background: #fff;
  border: 1px solid var(--ms3-border);
  padding: 1.5rem;
  box-shadow: var(--ms3-shadow);
  margin-bottom: 1rem;
  transition: var(--ms3-transition);
}

.order__contacts-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-section h4 {
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e6d3b3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #212529;
  font-size: 20px;
  margin-top: 10px;
}
.order-section h4 .bi { font-size: 1.1rem; }


.ms3_order_form .form-control,
.ms3_order_form .form-select {
  border: 1.5px solid var(--ms3-border);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  background-color: #fff;
  width: 100%;
  transition: var(--ms3-transition);
  outline: none;
}
.ms3_order_form .form-control:focus,
.ms3_order_form .form-select:focus {
  border-color: #e6d3b3;
  box-shadow: 0 0 5px 0.2rem #e6d3b3;
}
.ms3_order_form textarea.form-control {
  resize: vertical;
  min-height: 90px;
}
.required-star { color: var(--ms3-danger); margin-left: 2px; }
.form-text { font-size: 0.8rem; color: var(--ms3-text-muted); margin-top: 0.25rem; }


.invalid-feedback { font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback { display: block; color: var(--ms3-danger); }
.was-validated .form-control:invalid,
.was-validated .form-select:invalid { border-color: var(--ms3-danger); }


.payment-methods, .delivery-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.payment-methods .form-check, .delivery-methods .form-check {
  margin-bottom: 0;
}
.payment-option, .delivery-option {
  position: relative;
  border: 2px solid var(--ms3-border);
  border-radius: var(--ms3-radius);
  padding: 0;
  cursor: pointer;
  background: #fff;
  transition: var(--ms3-transition);
}
.payment-option:hover, .delivery-option:hover {
  border-color: #ced4da;
  background: var(--ms3-bg-light);
}

.payment-option .form-check-input, .delivery-option .form-check-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
}

.payment-option::before, .delivery-option::before {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #adb5bd;
  border-radius: 50%;
  background: #fff;
  transition: var(--ms3-transition);
}
.payment-option:has(input:checked)::before,
.delivery-option:has(input:checked)::before {
  border-color: #000;
  background: #000;
  box-shadow: inset 0 0 0 4px #fff;
}
.payment-option:has(input:checked), .delivery-option:has(input:checked) {
  border-color: #000;
  box-shadow: #000;
}
.payment-option:has(input:focus-visible), .delivery-option:has(input:focus-visible) {
  outline: 3px solid #000;
  outline-offset: 2px;
}
.payment-logo, .delivery-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 0.4rem;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.payment-name, .delivery-name { 
    font-size: 16px; 
    font-weight: 500; 
    color: #212529; 
    padding: 20px;
    cursor: pointer;
}
.payment-desc, .delivery-desc { line-height: 1.35; }

.order-summary {
    background: #fff;
    border: 1px solid var(--ms3-border);
    padding: 1.5rem;
    box-shadow: var(--ms3-shadow);
    margin-bottom: 1rem;
    transition: var(--ms3-transition);
    font-size: 20px;

}

.cost-breakdown hr {
  border-color: #dee2e6;
  opacity: 0.5;
  margin: 0.75rem 0;
}
.cost-breakdown .h4 { font-weight: 700; letter-spacing: -0.5px; }

.ms3_order_form .cart__results-btn{
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 15px;
}
.ms3_order_form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}
.ms3_order_form .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(13, 110, 253, 0.2);
}
.ms3_order_form .btn-outline-danger {
  border-radius: var(--ms3-radius-sm);
  transition: var(--ms3-transition);
}
.ms3_order_form .btn-outline-danger:hover {
  background: #fee2e2;
  border-color: var(--ms3-danger);
  color: var(--ms3-danger);
}

.loginForm {
  background: #fff;
  border: 1px solid var(--ms3-border);
  padding: 1.5rem;
  box-shadow: var(--ms3-shadow);
  margin-bottom: 1rem;
  transition: var(--ms3-transition);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loginMessage {
  padding: 24px;
  font-size: 0.9rem;
  line-height: 1.4;
  display: block;
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  text-align: center;
}
.loginMessage.hidden {
    display: none;
}
.loginMessage ul, 
.loginMessage p {
  margin: 0;
  padding-left: 0;
}

.loginMessage:has(.error) {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    text-align: center;

}


.loginLoginFieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.loginLegend {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 1.25rem;
  margin-top: 10px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e6d3b3;
  color: #212529;
}

.loginUsernameLabel,
.loginPasswordLabel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  margin-bottom: 1rem;
  font-weight: 500;
  color: #212529;
}

.loginUsername,
.loginPassword {
  border: 1.5px solid var(--ms3-border);
  padding: 15px;
  font-size: 0.95rem;
  background-color: #fff;
  width: 100%;
  transition: var(--ms3-transition);
  outline: none;
  box-sizing: border-box;
}
.loginUsername:focus,
.loginPassword:focus {
  border-color: #e6d3b3;
  box-shadow: 0 0 5px 0.2rem #e6d3b3;
}

.g-recaptcha {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}



.loginLoginButton {
  display: block;
  margin-top: 15px;
}
.loginLoginButton input[type="submit"] {
  width: 100%;
  font-weight: 500;
  color: #fff;
  background-color: rgba(246, 230, 209, 1);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--ms3-transition);
  color: #000;
  padding: 15px;
}
.loginLoginButton input[type="submit"]:hover,
.profile-exit:hover {
  background-color: #000;
  transform: translateY(-2px);
  color: #fff;
}

.profile-exit {
    margin-top: 15px;
    transition: var(--ms3-transition);
}




.loginLogin a {
    width: 100%;
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    margin-top: 10px;
    transition: var(--ms3-transition);
    padding: 15px;
}

.loginLogin a:hover {
  background-color: #000;
  transform: translateY(-2px);
  color: #fff;
}

.d-12-400 {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

.d-13-400 {
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
}

.d-13-500 {
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 10%;
}

.d-14-400 {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 7%;
}

.d-14-500 {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}

.d-15-400 {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.d-16-400 {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.d-16-300 {
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
}

.d-16-500 {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
}

.d-18-300 {
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
}

.d-18-400 {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
}

.d-18-600 {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
}

.d-20-300 {
    font-size: 20px;
    font-weight: 300;
    line-height: 100%;
}

.d-20-400 {
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}

.d-20-500 {
    font-size: 20px;
    font-weight: 500;
    line-height: 100%; 
}

.d-24-300 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}

.d-24-400 {
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
}

.d-24-500 {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;    
}

.d-24-600 {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.d-36-600 {
    font-size: 36px;
    font-weight: 600;
    line-height: 100%;
}

.d-40-400 {
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
}

.d-48-600 {
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
}

.d-64-600 {
    font-size: 64px;
    font-weight: 600;
    line-height: 100%;
}

.main-banner__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 73px;
    max-width: 581px;
    margin: 0;
}

.header {
    width: 100%;
    z-index: 20;
    position: relative;
}

.header__top {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

.header__top-text {
    margin: 0;
}


.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: #fff;
    max-width: 1140px;
    height: 89px;
    margin: 0 auto;
}

.header__search {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.header__search-input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    padding: 5px;
    width: 233px;
    font-size: 14px;
    padding-left: 3px;
    line-height: 28px;
}

.header__search-input::placeholder {
    color: #000;
}

.header__search-icon {
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: none;
    border: none;
}

.header__logo {
    text-align: center;
    display: block;
}

.header__logo-text {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
}

.header__logo-subtext {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
}

.header__actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__action {
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(0 0 0);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 17px;
    font-size: 14px;
    color: #fff;
}

.cart-count:empty {
    display: none;
}

.cart-num {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-num__input {
    height: 50px;
    flex-grow: 1;
    font-size: 16px;
    border-radius: 0;
    border: 2px solid #000;
    padding: 0 20px;
    outline: none;
}

.cart-num__btn {
    width: 50px;
    height: 50px;
        background: #000;
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    line-height: 24px;
}

.header__nav {
    background-color: #e6d3b3;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1140px;
}

.header__menu-item a {
    color: #000;
    height: 59px;
    display: flex;
    padding: 0 16px;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.header__menu-item:first-child a {
    padding-left: 0;
}

.header__menu-item:last-child a {
    padding-right: 0;
}

.header__menu-item a:hover {
    color: #000;
}

.main-banner {
    background: rgba(255, 253, 251, 1);
    height: calc(100vh - 188px);
    min-height: 579px;
}

.main-banner__desc {
    max-width: 441px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.main-banner__btn {
    background: rgba(246, 230, 209, 1);
    padding: 15px 64px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    border: none;
    cursor: pointer;
    color: inherit;
}

.main-banner__undertext {
    max-width: 343px;
    font-weight: 300;
    font-style: italic;
    line-height: 100%;
    display: block;
}

.main-banner__bottom {
    display: flex;
    align-items: center;
    gap: 26px;
}


.main-banner__container {
    max-width: 1140px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.main-banner__img {
    position: absolute;
    top: 0;
    right: 0;
    max-height: 100%;
}

.main-banner-slider {
    overflow: hidden;
    width: 100%;
    user-select: none;
}

.main-banner-track {
    display: flex;
    transition: transform 1s ease;
}

.main-banner.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.main-banner-slider {
    position: relative;
}

.main-banner__controls {

    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.main-banner__controls-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 100px;
    left: 0;
    z-index: 5;
}


.main-banner__next,
.main-banner__back {
    display: flex;
    padding: 15px;
    cursor: pointer;
}

.main-banner__back {
    padding-left: 0;
}


.main-banner__pagination {
    display: flex;
    margin: 0 15px;
}

.main-banner__controls {
    display: flex;
    align-items: center;
}

.pagination-dot {
    width: 36px;
    height: 1px;
    transition: 1s ease;
    background: rgba(0, 0, 0, 0.3);
}

.pagination-dot.active {
    background: rgba(0, 0, 0, 1);
}

.main-banner__count {
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
}

.main-banner__count.finish {
    opacity: 0.5;
}

.main-banner__content {
    margin-bottom: 130px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.category__blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 21px;
}

.category__block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
}

.category__block-link {
    position: absolute;
    inset: 0;
}

.category__block-text {
    margin: 0;
}

.in-block {
    margin: 120px 0;
}

.static-banners__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.static-banners__item {
    aspect-ratio: 560 / 621;
    background: red;
    padding: 50px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.static-banners__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.static-banners__gradient {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 270px;
    background: linear-gradient(180deg, rgba(246, 230, 209, 0) 0%, #F6E6D1 100%);
}

.static-banners__title,
.static-banners__text,
.static-banners__btn {
    z-index: 5;
    position: relative;
}

.static-banners__title {
    margin-bottom: 10px;
}

.static-banners__text {
    margin-top: 0;
    margin-bottom: 30px;
}

.btn {
    text-transform: uppercase;
    border: 1px solid rgba(206, 206, 206, 1);
    padding: 16px 64px;
    display: inline-flex;
}

.showcase__block-image {
    position: relative;
    width: 100%;
    aspect-ratio: 269 / 262;
    max-width: 269px;
    min-width: 269px;
}

.showcase__block:last-child {
    margin-right: auto;
}

.showcase__block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.showcase__block-badge {
    position: absolute;
    top: 15px;
    left: 10px;
    background: rgba(246, 230, 209, 1);
    padding: 2px 8px;
}

.showcase__blocks {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    row-gap: 60px;
    flex-wrap: wrap;
}

.showcase__block__icons {
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    gap: 7px;
}

.showcase__block__icons button {
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    background: transparent;
}

.showcase__block__icons svg {
    pointer-events: none;
}

.showcase__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 269px;
}

.showcase__block-title {
    text-align: center;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 6px;
}

.showcase__block-text {
    margin: 0;
    text-align: center;
    margin-bottom: 10px;
}

.showcase__block-price {
    margin-bottom: 20px;
    text-align: center;
margin-top: auto;
}

.showcase__block-btn {
    padding: 13.5px 43px;
    background: #fff;
    cursor: pointer;
}

.showcase__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.showcase__top-link {
    color: rgba(144, 103, 62, 1);
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: underline;
}

.fullscreen-banner {
    background: rgba(246, 230, 209, 1);
    height: 612px;
    position: relative;
    overflow: hidden;
}

.fullscreen-banner .container {
    z-index: 7;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.fullscreen-banner__gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 1262px;
    height: 100%;
    background: linear-gradient(270deg, rgba(246, 230, 209, 0) 0%, #F6E6D1 100%);
    z-index: 4;
}

.fullscreen-banner__img {
    position: absolute;
    top: -120px;
    right: 0;
    width: 1262px;
}

.fullscreen-banner__title {
    max-width: 581px;
    line-height: 132%;
    margin: 0;
    margin-bottom: 73px;
}

.fullscreen-banner__btn {
    letter-spacing: 10%;
    border: 1px solid #000;
    padding: 16px 36px;
    letter-spacing: 10%;
}

.article {
  margin-bottom: 120px;
}

.article-banner {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
}

.article-banner__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    aspect-ratio: 896 / 621;
}

.article-banner__title {
    max-width: 569px;
    line-height: 132%;
    margin: 0;
    margin-bottom: 30px;
    color: rgba(35, 32, 28, 1);
}

.article-banner__text {
    color: rgba(35, 32, 28, 1);
    max-width: 580px;
    margin: 0;
    margin-bottom: 30px;
}

.article-banner__link {
    letter-spacing: 10%;
}

.news__block {
    max-width: 269px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news__block-img {
    width: 100%;
    aspect-ratio: 269 / 185;
    object-fit: cover;
    object-position: center;
}

.news__block-title {
    margin-top: 10px;
    margin-bottom: 8px;
}

.news__block-info {
    display: flex;
    gap: 15px;
    align-items: center;
    color: rgba(139, 139, 139, 1);
}

.news__block-category {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news__block-category li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.news__block-category:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: rgba(144, 103, 62, 1);
}

.news__block-text {
    margin-top: 10px;
    margin-bottom: 20px;
}

.news__block-link {
    color: rgba(144, 103, 62, 1);
    text-decoration: underline;
}

.news__blocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 30px;
}

.news__block-href {
    position: absolute;
    inset: 0;
}


.email-sign {
    height: 130px;
    background: rgba(246, 230, 209, 1);
}

.email-sign .container {
    height: 100%;
}

.email-sign__content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.email-sign__title {
    margin-right: 5px;
}

.email-sign__input {
    padding: 15px 20px;
    width: 333px;
    border: 0;
    outline: none;
    flex-grow: 1;
}

.email-sign__input:focus {
    border: none;
}

.email-sign__btn {
    letter-spacing: 7%;
    background: #000;
    color: #fff;
    border: none;
    padding: 14.5px 26px;
}

.favorite-btn {
    transition: 0.2s ease;
    color: transparent;
}

.favorite-btn.active {
    color: #f6215e;
} 

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
}

.search-item {
    display: flex;
    font-size: 14px;
    padding: 10px;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
    position: relative;
}

.search-item a {
    position: absolute;
    inset: 0;
}

.search-item:hover {
    background: #f6e6d1;
}

.search-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
}


.search-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-price {
    font-weight: 500;
    margin-top: 3px;
    display: block;
}




.footer {
    padding: 40px 60px;
}

.footer .header__logo-img {
    width: 240px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    border-radius: 50%;
}

.socials {
    display: flex;
    gap: 25px;
    align-items: center;
}

.socials a {
    width: 16px;
    display: inline-block;
}

.copyright {
    margin-top: auto;
    line-height: 20px;
}

.simple-page__content {
    margin-bottom: 120px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

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

.column-title {
    line-height: 20px;
}

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

.breadcrumbs__list-item:first-child svg {
    display: none;
}

.breadcrumbs__list-item:first-child a {
    text-decoration: underline;
}

.breadcrumbs__list-item:last-child,
.breadcrumbs__list-item:last-child a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.breadcrumbs__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.category-main__img {
  width: 100%;
  aspect-ratio: 593 / 378;
  object-fit: cover;
  object-position: center;
}

.catalog-more__btn {
  letter-spacing: 10%;
  padding: 16px 43px;
  background: transparent;
  border: 1px solid rgba(206, 206, 206, 1);
  margin-top: 70px;
  cursor: pointer;
}

.showcase__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.card__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}



.card__slider-slide {
  aspect-ratio: 548 / 424;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: flex;
  min-width: 100%;
}

.card__title {
  margin: 0;
}

.card__udnertitle {
  margin-top: 10px;
  margin-bottom: 20px;
}

.card__mid-select {
  border: 1px solid rgba(206, 206, 206, 1);
  height: 49px;
  width: 270px;
  padding: 0 15px;
  -moz-appearance: textfield; 
  -webkit-appearance: none;   
  appearance: none;
outline: none;
}

.card__select-wrap {
  position: relative;
}

.card__select-wrap svg {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.card__mid {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
gap: 15px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(206, 206, 206, 1);
}

.card__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card__btn {
  background: transparent;
  width: 100%;
  text-align: center;
  letter-spacing: 10%;
  justify-content: center;
  cursor: pointer;
}

.card__btn.primary {
  background: rgba(246, 230, 209, 1);
  border: 1px solid rgba(246, 230, 209, 1);
}



.card__text {
  margin-top: 30px;
}

.card__slider {
  max-width: 548px;
overflow: hidden;
position: relative;
}

.card__slider-window {
  overflow: hidden;
  border: 1px solid rgba(232, 232, 232, 1);
  max-width: 548px;
  aspect-ratio: 548 / 424;
}

.card__slider-wrap {
  display: flex;
  transition: 0.3s ease;
  gap: 10px;
}

.card__slider-pagination {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  justify-content: center;
  transition: 0.3s ease;

}

.card__slider-pagination img {
  width: calc(20% - 4px);
  min-width: 148px;
  height: 115px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  border: 1px solid rgba(232, 232, 232, 1);
}

.card__bottom-text {
  margin: 0;
  margin-top: 20px;
  line-height: 24px;
}

.card__bottom-title {
  margin: 0;
  margin-top: 60px;
}

.contacts {
  margin-bottom: 120px;
}

.contacts__item {
  display: flex;
  gap: 15px;
}

.contacts__item svg {
  min-width: 27px;
}

.contacts__item.phone {
  margin-bottom: 27px;
}

.contacts__item-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts__item-title {
  margin: 0;

  opacity: 0.5;
}

.contacts__item-value {
  margin: 0;
  line-height: 23px;
}

.contacts__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contacts__blocks {
  display: grid;
  grid-template-columns: 1fr 745px;
  gap: 35px;
}

.contacts__title {
  margin: 0;
  margin-bottom: 30px;
  line-height: 73px;
}

.map {
  width: 100%;
  aspect-ratio: 745 / 555;
}

.map > div {
  width: 100%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
}


.article__blocks {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.article__block {
  display: flex;
  gap: 40px;
  align-items: center;
}

.article__img {
  width: 100%;
  aspect-ratio: 560 / 378;
  max-width: 560px;
  object-fit: cover;
  object-position: center;
}

.article__text {
  line-height: 24px;
  text-align: center;
}

.article__block.right .article__img {
  order: 2;
}

.article__title {
  margin-bottom: 40px;
  line-height: 73px;
}

.articles {
  margin-bottom: 70px;
}

.articles .showcase__title {
  line-height: 73px;
  margin-bottom: 20px;
  margin-top: 0;
}

.articles__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.articles .showcase__top {
  width: 100%;
}

.cart {
  margin-bottom: 120px;
}

.cart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(239, 239, 239, 1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cart__head-item:last-child {
  padding-right: 30px;
}

.cart__item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(239, 239, 239, 1);
}

.cart__item-img {
  width: 132px;
  height: 119px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(239, 239, 239, 1);
}

.cart__item-title {
  margin: 0;
  margin-bottom: 10px;
  color: rgba(11, 40, 56, 1);
}

.cart__item-code {
  margin: 0;
  color: rgba(11, 40, 56, 1);
  margin-bottom: 5px;
}

.cart__item-code span {
  opacity: 0.5;
}

.cart__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart__item-del {
  background: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  outline: none;
  border: none;
  color: rgba(144, 103, 62, 1);
  text-decoration: underline;
  cursor: pointer;
}

.cart__item-price {
  margin-left: auto;
}

.cart__title {
  line-height: 73px;
  margin-bottom: 28px;
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.cart__results {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  margin-top: 35px;
}

.cart__results-price span {
  color: rgba(11, 40, 56, 1);
  opacity: 0.5;
}

.cart__results-btn {
  background: rgba(246, 230, 209, 1);
  border: none;
  letter-spacing: 10%;
  padding: 19px 73px;
  cursor: pointer;
}

.history_case-img {
    width: 100%;
    aspect-ratio: 100 / 50;
    object-fit: cover;
    object-position: center;
}

.history__title {
    line-height: 73px;
    margin-bottom: 40px;
}

.history__header {
    width: 100%;
    aspect-ratio: 1140 / 415;
    padding: 63px;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history__header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 170px;
    width: 50%;
    letter-spacing: 0;
    height: 100%;
    z-index: 10;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.history__header-img {
    position: absolute;
    top: 0;
    left: 170px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 75%;
}

.history__header-title {
    z-index: 10;
    position: relative;
    color: #fff;
    line-height: 73px;
    margin: 0;
    margin-bottom: 10px;
}

.history__text {
    z-index: 10;
    position: relative;
    line-height: 24px;
    color: #fff;
    margin: 0;
    max-width: 507px;
}


.history__content {
    display: grid;
    grid-template-columns: 146px 42px 1fr;
    column-gap: 90px;
    row-gap: 60px;
    margin-top: 60px;
    margin-bottom: 120px;
    position: relative;
}

.history__year {
    color: rgba(144, 103, 62, 1);
    line-height: 85px;
    grid-column: 1;
}

.history__line-circ {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(246, 230, 209, 0.4);
    border-radius: 70px;
    padding: 10px;
    grid-column: 2;
    margin-top: 30px;
}

.history__line-circ:before {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    background: rgba(246, 230, 209, 1);
    border-radius: 50px;
}

.history__content-text {
    grid-column: 3;
    margin: 0;
    line-height: 24px;
}

.history__content-line {
    position: absolute;
    left: 256px;
    height: 100%;
    width: 2px;
    background: rgba(246, 230, 209, 1);
}

.high {
    margin-bottom: 120px;
}

.high__blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.high__text {
    line-height: 24px;
    margin: 0;
    text-align: center;
}

.high__block {
    display: flex;
    gap: 20px;
    row-gap: 30px;
    overflow: hidden;
}

.high__block-double {
    grid-row: span 2;
    aspect-ratio: 560 / 744;
    object-position: 25%;
    object-fit: cover;
    max-width: 560px;
}

.high__block-img {
    aspect-ratio: 560 / 378;
    object-position: center;
    object-fit: cover;
    max-width: 560px;
}

.high__block-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fullscreen-banner__text {
    margin: 0;
    margin-bottom: 40px;
}

.fullscreen-banner__title--high {
    margin-bottom: 20px;
}


.silver__container {
    gap: 30px;
}

.category-main__title {
    margin: 0;
    margin-bottom: 20px;
    line-height: 73px;
}

.silver__container .category-main__img {
    width: 593px;
}

.silver__container .category-main__text {
    margin: 0;
    max-width: 445px;
}

.category-main__text {
    max-width: 90%;
}

.showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.showcase-head__btn {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

.skill-video {
margin-top: 50px;
display: grid;
    grid-template-columns: 1fr 1fr;
gap: 20px;
}

.skill-video_img {
width: 100%;
cursor: pointer;
}

.advantages__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.advantages__img {
    aspect-ratio: 368 / 291;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.advantages__block-text {
    line-height: 24px;
    text-align: center;
    color: rgba(35, 32, 28, 1);
    margin: 0;
    margin-top: 20px;
}

.advantages {
    margin-bottom: 120px;
}

.diploms {
    padding-bottom: 60px;
}

.diplom__slides {
    display: flex;
    gap: 12px;
    width: 100%;
    min-height: 0;
    height: auto;
}

.diplom__slide {
    aspect-ratio: 276 / 366;
    width: calc(25% - 9px);
}

.diploms__title {
    margin-bottom: 30px;
    margin-top: 60px;
}

.diplom__controls {
    position: static;
    justify-content: center;
    margin-top: 30px;
}

.diplom__controls .main-banner__controls {
    justify-content: center;
}

.diploms__texts {
    margin: 60px;
}

.diploms__text-title {
    line-height: 53px;
    margin: 0;
    margin-bottom: 30px;
    color: rgba(35, 32, 28, 1);
}

.diploms__text {
    margin: 0;
    line-height: 24px;
    color: rgba(35, 32, 28, 1);
}


.cart__item-price-wrap {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-num.real .cart-num__btn {
    width: 30px;
    height: 30px;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.cart-num.real .cart-num__input {
    width: 50px;
    height: 30px;
    padding: 0 10px;
    -moz-appearance: textfield; 
  -webkit-appearance: none;   
  appearance: none;
  text-align: center;
}

.cart-num.real .cart-num__input::-webkit-outer-spin-button,
.cart-num.real .cart-num__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart__item-delete {
    margin-top: auto;   
}


.cart__arctions {
    position: relative;
    width: 173px;
    height: 42px;
}

.cart__arctions .cart__num-ms3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.ms3-add-to-cart {
    z-index: 5;
    position: relative;
}

.card__cart-actions {
    position: relative;
    min-height: 50px;
}

.card__cart-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.catalog-categories__blocks {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.category-block {
    position: relative;
aspect-ratio: 1 / 1;
    display: flex;
}

.category-block:before {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    opacity: 0.5;
}

.category-block__img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.category-block__text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}


.footer__block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .column svg {
    display: none;
}

.header__actions-svg {
    display: none;
}

.search__results,
.liked {
    margin-top: 0;
}

.search__results .container,
.liked .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}


.header__menu-close {
display: none;
}

.card__slider-btn {
    position: absolute;
    top: calc(50% - 47px);
    transform: translateY(-50%);
    z-index: 5;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: none;
    display: flex;
    justify-content: center;
    background: transparent;
    align-items: center;
    opacity: 0.5;
transition: 0.3s ease;
cursor: pointer;
}

.card__slider-btn:hover {
background: #e8e8e8;
opacity: 1;
}

.card__slider-btn.card__slider-btn--next {
left: auto;
right: 20px;
}




















@media (max-width: 1700px) {
    .article-banner__img {
        top: 70px;
        right: 0;
        height: calc(100% - 140px);
        aspect-ratio: 896 / 621;
        object-fit: cover;
        object-position: center;
    }

}

@media (max-width: 1200px) {
    .container,
    .main-banner__container {
        max-width: 960px;
    }

    .category__blocks,
    .news__blocks {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .static-banners__text {
        font-size: 23px;
    }

    .news__block {
        max-width: 100%;
    }

    .article-banner .container {
        display: ;
    }

    .article-banner__text,
    .article-banner__title {
        max-width: 100%;
        width: 100%;
    }

    .article-banner__text {
        margin-top: 20px;
    }

    .article-banner__img {
        position: static;
        width: 100%;
        object-fit: cover;
        object-position: center;
        height: 450px;
    }

    .article-banner {
        padding: 0;
    }

    .fullscreen-banner__gradient {
        top: 0;
        left: 0;
        width: 100%;
    }

    .fullscreen-banner__img {
        width: 100%;
        height: 100%;
        top: 0;
        object-fit: cover;
        object-position: center;
    }

    .header__main {
        padding: 0 20px;
    }

    .header__menu .header__menu-item:last-child,
    .header__menu .header__menu-item:nth-last-child(2),
    .header__menu .header__menu-item:nth-last-child(3)   {
        display: none;
    }

    .main-banner__controls-wrap {
        padding: 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        align-items: center;
    }

    .copyright {
        text-align: center;
    }

    .article__block {
        flex-direction: column;
    }

    .article__block.right .article__img {
        order: 1;
    }

    .article__text {
        order: 2;
    }

    .high__block-double,
    .high__block-left {
        width: calc(50% - 10px);
    }

    .contacts__blocks {
        display: flex;
        gap: 30px;
    }

    .contacts__block {
        width: calc(50% - 15px);
    }

    .map {
        height: 100%;
    }

    .showcase .showcase__block:last-child {
        display: none;
    }
}

@media (max-width: 992px) {
    .container,
    .main-banner__container {
        max-width: 720px;
    }

    .showcase__block {
        max-width: 100%;
        min-width: 100%;
    }

    .showcase__blocks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .static-banners__wrap {
        display: flex;
        flex-direction: column;
    }

    .email-sign__content {
        flex-wrap: wrap;
        gap: 6px;
    }

    .email-sign__title {
        width: 100%;
        margin: 0;
        text-align: center;
        line-height: 50px;
    }

    .email-sign {
        height: auto;
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .header__actions a {
        display: none;
    }

    .header__actions-svg {
        display: block;
        cursor: pointer;
    }

    .header__search .header__search-input {
        display: none;
    }

    .header__search {
        width: 25px;
        height: 25px;
    }

    .header__search-icon {
        top: 0;
        left: 0;
        width: 25px;
        height: 25px;
    }

    .header__search-icon svg {
        width: 25px;
        height: 25px;
    }

    .header__top,
    .header__nav {
        display: none;
    }

.header__nav {
        display: block;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
padding: 20px;
transition: 0.3s ease;
}

.header__nav.active {
left: 0;

}

.header__menu {
flex-direction: column;
}

.header__menu-close {
display: block;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 20px;
        padding: 20px;
cursor: pointer;
}

.header__menu-item:first-child a {
    padding-left: 17px;
}

.header__menu .header__menu-item:last-child, .header__menu .header__menu-item:nth-last-child(2), .header__menu .header__menu-item:nth-last-child(3) {
display: block;
}


    .main-banner__img {
        position: static;
        order: 3;
        max-width: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
        height: 350px;
    }

    .main-banner__bottom {
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-banner__desc {
        margin-bottom: 8px;
    }

    .main-banner__content {
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
        width: 100%;
    }

    .main-banner__container {
        align-items: flex-start;
        margin-top: 25px;
    }

    .main-banner__controls {
        justify-content: center;
    }

    .main-banner.slide {
        padding-bottom: 50px;
    }

    .main-banner__controls-wrap {
        bottom: 50px;
    }

    .main-banner {
        min-height: 0;
        height: auto;
    }

    .footer-container {
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .footer {
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .category-main__img {
        height: 100%;
    }

    .card__btn--circle {
        line-height: 24px;
    }

    .card__mid {
        gap: 15px;
    }

    .card__mid-select {
        width: 100%;
    }

    .card__select-wrap {
        flex-grow: 1;
    }

    .card__wrap {
        display: flex;
        flex-direction: column;
    }

    .card__slider,
    .card__slider-window {
        max-width: 100%;
    }

    .history__header {
        justify-content: flex-start;
        padding: 40px;
        aspect-ratio: unset;
    }

    .history__header-title {
        line-height: 52px;
    }

    .history__title {
        line-height: 52px;
    }

    .search__results .container,
    .liked .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .showcase .showcase__block:last-child {
        display: flex;
    }

    .catalog-categories__blocks {
        grid-template-columns: 1fr 1fr;
    }

    .category-block {
        display: flex;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .container,
    .main-banner__container {
        max-width: 540px;
    }

    .showcase__top-link {
        display: none;
    }

    .main-banner {
        min-height: 0;
        height: auto;
    }

    .footer-container {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .footer {
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .category-main__container {
        flex-direction: column;
        display: flex;
    }

    .advantages__blocks {
        flex-direction: column;
        display: flex;
    }

    .high__block {
        flex-direction: column;
    }

    .high__block-double, .high__block-left {
        width: 100%;
    }

    .high__block-img {
        order: 2;
    }

    .history__content {
        column-gap: 20px;
        grid-template-columns: 55px 42px 1fr;
    }

    .history__year {
        font-size: 24px;
    }

    .history__content-line {
        left: 95px;
    }
}


@media (max-width: 600px) {

.skill-video {
display: block;
}

    .order-summary {
        font-size: 16px;
    }

    .container,
    .main-banner__container {
        padding: 0 15px;
    }

    .d-36-600 {
        font-size: 24px;
    }

    .d-24-300 {
        font-size: 16px;
    }

    .static-banners__title {
        margin-bottom: 5px;
    }

    .static-banners__text {
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .d-16-500 {
        font-size: 12px;
    }

    .btn {
        padding: 11px 43px;
    }

    .static-banners__item {
        padding: 20px;
    }

    .showcase__blocks {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-right: 20px;
    }

    .showcase__block {
        min-width: 269px;
        max-width: 269px;
    }

    .news__blocks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .showcase__title {
        margin-top: 0;
    }

    .news__block {
    }

    .news__block:nth-child(3),
    .news__block:nth-child(4) {
        display: none;
    }

    .showcase__container {
        padding-right: 0;
    }

    .in-block {
        margin: 60px 0;
    }

    .d-48-600 {
        font-size: 24px;
        line-height: 32px;
    }

    .article-banner__text {
        font-size: 18px;
        line-height: 24px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .category__block-img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .d-18-400 {
        font-size: 14px;
    }

    .article-banner__title {
        margin-bottom: 10px;
    }

    .article-banner__img {
        height: 299px;
    }

    .d-40-400 {
        font-size: 24px;
        line-height: 100%;
    }

    .fullscreen-banner__title {
        margin-bottom: 27px;
    }

    .fullscreen-banner {
        height: 278px;
    }

    .fullscreen-banner__btn {
        padding: 11px 21px;
    }

    .email-sign__input,
    .email-sign__btn {
        width: calc(50% - 3px);
    }

    .d-24-600 {
        font-size: 20px;
    }

    .d-16-400 {
        font-size: 14px;
    }

    .footer .column .footer__block {
        display: none;
    }

    .footer .column.open .footer__block {
        display: flex;
    }

    .footer .column.open svg {
        rotate: 180deg;
    }

    .footer .column svg {
        display: block;
        rotate: 0deg;
        transition: 0.2s ease;
    }

    .footer {
        padding: 25px 15px;
        padding-top: 60px;
    }

    .footer-left {
        align-items: center;
    }


    .footer-container,
    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .column-title {
        cursor: pointer;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        text-align: center;
    }

    .main-banner__title {
        font-size: 40px;
        line-height: 100%;
        max-width: 90%;
    }

    .main-banner__desc {
        line-height: 24px;
        margin-top: 10px;
        max-width: 85%;
    }

    .main-banner__content {
        margin-bottom: 70px;
    }

    .main-banner__bottom {
        gap: 10px;
    }

    .main-banner__img {
        height: 258px;
    }

    .header__logo-img {
        width: 223px;
        height: 50px;
    }

    .main-banner.slide {
        width: 100%;
    }

    .category-main__title {
        margin-bottom: 10px;
    }

    .category-main__text {
        line-height: 24px;
    }

    .showcase-catalog .showcase__blocks {
        flex-wrap: wrap;
        overflow: auto;
        padding-right: 0;
    }

    .showcase-catalog .showcase__block {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .showcase-catalog .showcase__container {
        padding-right: 15px;
    }

    .card__btn.primary {
        padding: 18px 43px;
    }

    .card__btn--circle {
        padding: 12px 30px;
    }

    .card__mid {
        margin-bottom: 0;
        padding-bottom: 20px;
        border: none;
    }

    .card__udnertitle {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .card__title {
        font-size: 40px;
        line-height: 100%;
    }

    .card__slider-pagination {
        padding-top: 15px;
    }

    .card__bottom-title {
        font-size: 18px;
        margin-top: 30px;
    }

    .card__bottom-text {
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }

    .card__mid-select {
        height: 34px;
        font-size: 14px;
        padding: 0 10px;
min-width: 270px;
    }

    .card__text {
        margin-top: 20px;
    }

    .breadcrumbs__list {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .article__title {
        margin-bottom: 10px;
        margin-top: 40px;
    }

    .article__text {
        font-size: 16px;
        text-align: left;
    }

    .article__blocks {
        gap: 30px;
    }

    .article__block {
        gap: 20px;
    }

    .news__blocks {
        row-gap: 20px;
    }

    .articles .news__block:nth-child(3), 
    .articles .news__block:nth-child(4) {
        display: flex;
    }

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

    .cart__item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart__results {
        gap: 20px;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart__item-img {
        width: 60px;
        height: 60px;
    }

    .high__text {
        text-align: left;
    }

    .high__block,
    .high__block-left {
        row-gap: 15px;
    }

    .high {
        margin-bottom: 60px;
    }

    .contacts__blocks {
        flex-direction: column;
    }

    .contacts__block {
        width: 100%;
    }

    .contacts,
    .history__content {
        margin-bottom: 60px;
    }

    .contacts__item-content {
        gap: 5px;
    }

    .contacts__item.phone {
        margin-bottom: 0;
    }

    .contacts__item-value {
        font-size: 16px;
    }

    .contacts__title {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .history__content {
        row-gap: 30px;
        grid-template-columns: 41px 42px 1fr;
    }

    .history__year {
        font-size: 18px;
    }

    .history__content-line {
        left: 75px;
    }

    .history__line-circ {
        width: 30px;
        height: 30px;
        min-width: 30px;
        padding: 7px;
    }

    .history__line-circ:before {
        width: 16px;
        height: 16px;
    }

    .history__header-title {
        line-height: 24px;
        margin-bottom: 15px;
    }

    .history__title {
        margin-bottom: 15px;
    }

    .history__header {
        padding: 20px;
    }

    .history__text {
        font-size: 14px;
        line-height: 20px;
    }

    .search__results .container,
    .liked .container {
        display: flex;
        flex-direction: column;
    }

    .search__results .showcase__block,
    .liked .showcase__block {
        min-width: 100%;
        max-width: 100%;
    }

    .search__results,
    .liked {
        margin-top: 0;
    }

    .catalog-categories__blocks {
        grid-template-columns: 1fr;
    }

    .showcase.catalog .showcase__blocks {
        flex-wrap: wrap;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: center;
    }

    .showcase.catalog .showcase__block {
        max-width: 360px;
        width: 100%;
    }
}


