@charset "UTF-8";
@font-face {
  font-family: "Helvetica";
  src: url("/avantgarde-clothing-store/assets/fonts/Helvetica.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica-Bold";
  src: url("/avantgarde-clothing-store/assets/fonts/Helvetica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
body {
  padding: 16px !important;
  background-color: white !important;
}
@media (min-width: 1000px) {
  body {
    padding: 32px !important;
    background-color: white !important;
  }
}

.container__text span {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 35px;
}
@media (min-width: 1000px) {
  .container__text span {
    font-size: 41px;
  }
}
@media (min-width: 1300px) {
  .container__text span {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  .container__text {
    margin-top: -40px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1300px) {
  .container__text {
    margin-top: -40px;
    padding-bottom: 50px;
  }
}

.catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.catalog__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catalog__item p {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 14px;
  text-align: center;
  width: 220px;
  margin: 0;
}
.catalog__item span {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  text-align: center;
  padding-top: 5px;
  font-size: 12px;
}
.catalog img {
  width: 200px;
}
@media (min-width: 1000px) {
  .catalog img {
    width: 356px;
  }
}
@media (min-width: 1300px) {
  .catalog img {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .catalog {
    grid-template-columns: 35% 35% 35%;
    padding-right: 60px;
    gap: 20px;
  }
}
@media (min-width: 1000px) {
  .catalog {
    grid-template-columns: 35% 35% 35%;
    padding-right: 60px;
    gap: 20px;
  }
}
@media (min-width: 1300px) {
  .catalog {
    grid-template-columns: 32% 32% 32%;
    gap: 60px;
    padding-right: 40px;
    padding-top: 25px;
  }
}

.header__buttons {
  display: none;
}
@media (min-width: 1000px) {
  .header__buttons {
    display: flex;
    padding: 0;
    gap: 30px;
    margin-top: -40px;
  }
  .header__buttons button {
    z-index: 1000;
    font-family: "Helvetica-Bold", sans-serif;
    font-size: 16px;
    background-color: transparent;
    border: none;
  }
  .header__buttons button:hover {
    opacity: 0.7;
  }
}
@media (min-width: 1300px) {
  .header__buttons button {
    z-index: 1000;
    font-family: "Helvetica-Bold", sans-serif;
    background-color: transparent;
    border: none;
  }
  .header__buttons button:hover {
    opacity: 0.7;
  }
}

@media (min-width: 1000px) {
  .hamburger-icon {
    display: none;
  }
}

@media (min-width: 1000px) {
  #cart {
    justify-self: end;
    margin-left: auto;
    margin-top: -40px;
    padding-right: 10px;
  }
}

.product__description-desktop {
  display: none;
}

.product__container {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  font-size: 26px;
  justify-content: center;
  text-align: center;
  font-family: "Helvetica-Bold", sans-serif;
}

.product__container p {
  margin: 0;
  padding-bottom: 5px;
}

.product__container span {
  margin: 0;
  font-size: 15px;
}

.product {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.product > img,
.product #image {
  position: relative;
  bottom: 10%;
  width: 500px;
}

/* ДОБАВИЛ :not(#price-desktop) ТОЛЬКО ЗДЕСЬ */
.product__buttons-size button:not(#price-desktop) {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 15px;
  background-color: transparent;
  border: none;
}

.product__buttons-size button:not(#price-desktop).selected {
  width: 40px;
  height: 30px;
  border: 1px solid black;
}

.product__buttons-buy {
  padding-top: 12px;
}

.product__buttons-buy button {
  font-family: "Helvetica-Bold", sans-serif;
  color: white;
  background-color: black;
  font-size: 13px;
  width: 180px;
  height: 40px;
  border: none;
}

#price-desktop {
  display: none;
}

.product__description {
  padding-top: 15px;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 12px;
}

/* Related Items Wrapper */
.product__related-items-wrapper {
  width: 100%;
  padding-top: 30px;
}

.related-title {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 26px;
  margin: 0;
  padding: 0 20px 20px;
  text-align: left;
}

/* Related Items Styles */
.product__related-items {
  display: flex !important;
  flex-direction: row;
  gap: 20px;
  padding: 0 20px 30px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Скрываем scrollbar */
.product__related-items::-webkit-scrollbar {
  display: none;
}

.product__related-items {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-card {
  display: flex !important;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 500px;
  min-width: 500px;
}

.product-card:hover {
  opacity: 0.7;
}

.related-product-image {
  width: 300px !important;
  height: auto !important;
  position: static !important;
  bottom: auto !important;
  margin: 0 auto;
  object-fit: contain;
}

.product-card-info {
  display: flex;
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  flex-direction: column;
  text-align: center;
  padding-top: 10px;
  gap: 5px;
}

.product-card-title {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.product-card-shade {
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  color: #666;
}

.product-card-price {
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
}

@media (min-width: 550px) {
  .product img {
    margin-top: 100px;
  }
}
@media (min-width: 600px) {
  .product {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .product > img,
  .product #image {
    width: 100%;
  }
  .product__text {
    margin-top: 100px;
  }
  #description {
    display: none;
  }
  .product__description-desktop {
    display: flex;
  }
  .product__buttons-buy button,
  #price-desktop {
    display: flex;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
  }
  #price {
    display: none;
  }
  .product__buttons-size {
    margin-top: 150px;
  }
  /* Related items на десктопе */
  .product__related-items-wrapper {
    padding: 0;
    margin: 0 auto;
  }
  .related-title {
    text-align: left;
    padding-left: 40px;
  }
  .product__related-items {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px 50px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .product-card {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
  .related-product-image {
    width: 400px !important;
    max-width: 100% !important;
  }
}
@media (min-width: 1000px) {
  .product__text {
    margin-top: 200px;
  }
  .product__buttons-size {
    margin-top: 250px;
  }
}
@media (min-width: 1500px) {
  .product > img,
  .product #image {
    padding-top: -250px;
    width: 700px;
  }
  .product__text {
    margin-top: 300px;
  }
  .product__buttons-size {
    margin-top: 350px;
  }
  #price-desktop {
    font-size: 15px;
  }
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.cart.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.cart-header h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Helvetica-Bold", sans-serif;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-item {
  text-align: center;
  margin-bottom: 40px;
}
.cart-item img {
  max-width: 220px;
  margin-bottom: 16px;
}

.cart-item-title {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-item-meta {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 6px;
}

.cart-item-price {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
}

.cart-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.cart-qty button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.cart-footer {
  display: grid;
  justify-items: center;
  padding: 20px;
  padding-bottom: 50px;
  border-top: 1px solid #eee;
}

.cart-subtotal {
  text-align: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
}

.checkout {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

@media (min-width: 1000px) {
  .cart-footer {
    padding-bottom: 10px;
  }
  .cart {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .cart {
    width: 500px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button img {
  width: 125px;
}

.co-express__button--gpay img {
  width: 85px;
}

.co-express__button--apple-pay img {
  width: 85px;
  margin-top: -23px;
}

button:hover {
  opacity: 0.8;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
}

.co-header {
  background: white;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.co-header__logo {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
}

.co-order-summary {
  cursor: pointer;
  user-select: none;
  background: #f0f0f0;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}
.co-order-summary__text {
  font-size: 14px;
}
.co-order-summary__price {
  font-size: 20px;
  font-weight: 600;
}

.co-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px;
  font-size: 13px;
  color: #666;
}
.co-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.co-breadcrumb__item--active {
  color: #1a1a1a;
  font-weight: 500;
}

.co-checkout {
  background: white;
}
.co-checkout__container {
  max-width: 1200px;
  margin: 0 auto;
}
.co-checkout__content {
  padding: 0 20px 30px;
}

.co-express {
  margin-bottom: 30px;
}
.co-express__title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #666;
}
.co-express__buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.co-express__button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  height: 55px;
}
.co-express__button--paypal {
  background: #ffc439;
}
.co-express__button--gpay {
  background: #000;
  color: white;
}
.co-express__button--apple-pay {
  background: #000;
  color: white;
}

.co-divider {
  text-align: center;
  color: #999;
  margin: 20px 0;
  font-size: 14px;
}

.co-section {
  margin-bottom: 30px;
}
.co-section__header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.co-section__link {
  font-size: 14px;
  color: #666;
  text-decoration: underline;
  font-weight: 400;
}

.co-form__group {
  margin-bottom: 15px;
}
.co-form__label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}
.co-form__input, .co-form__select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  font-size: 14px;
  background: white;
  font-family: inherit;
}
.co-form__input:focus, .co-form__select:focus {
  outline: none;
  border-color: #000;
}
.co-form__select {
  /* Убираем нативные стили браузера */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Кастомная стрелка через SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
  /* Для IE10-11 */
}
.co-form__select::-ms-expand {
  display: none;
}
.co-form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.co-form__checkbox {
  width: auto;
  margin: 0;
}
.co-form__checkbox-label {
  margin: 0;
  font-size: 14px;
  color: #1a1a1a;
}
.co-form__row {
  display: grid;
  gap: 10px;
}
.co-form__row--two-cols {
  grid-template-columns: 1fr 1fr;
}
.co-form__row--three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}
.co-form__button {
  width: 100%;
  padding: 18px;
  background: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
}

.co-footer-link {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}
.co-footer-link__text {
  color: #666;
  font-size: 13px;
  text-decoration: underline;
}

.co-sidebar {
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.co-sidebar--mobile {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  background: white;
}
.co-sidebar--mobile.co-sidebar--open {
  max-height: 2000px;
  opacity: 1;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.co-sidebar--desktop {
  display: none;
}

.co-order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}
.co-order-item__image {
  width: 70px;
  height: 70px;
  background: #e5e5e5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.co-order-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-order-item__badge {
  position: absolute;
  top: -8px;
  left: 60px;
  background: #666;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.co-order-item__details {
  flex: 1;
}
.co-order-item__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.co-order-item__variant {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.co-order-item__price {
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
}

.co-discount {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.co-discount__input {
  flex: 1;
  padding: 14px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  font-size: 14px;
}
.co-discount__button {
  padding: 0 25px;
  background: #f0f0f0;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.co-totals {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}
.co-totals__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.co-totals__row--final {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
}
.co-totals__label {
  color: #666;
}
.co-totals__row--final .co-totals__label {
  color: #1a1a1a;
}
.co-totals__currency {
  font-size: 12px;
  color: #999;
  margin-right: 5px;
}

@media (min-width: 768px) {
  body {
    background: #fafafa;
  }
  .co-header {
    grid-column: 1/-1;
    border-bottom: none;
    background: white;
  }
  .co-header__logo {
    text-align: left;
  }
  .co-header__logo img {
    width: 220px;
  }
  .co-order-summary {
    display: none !important;
  }
  .co-checkout__container {
    display: grid;
    grid-template-columns: 1fr 450px;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
  }
  .co-breadcrumb {
    padding: 20px 40px;
  }
  .co-checkout {
    background: white;
  }
  .co-checkout__content {
    padding: 0 40px 40px;
    max-width: 600px;
  }
  .co-express__buttons {
    gap: 15px;
  }
  .co-express__button--apple-pay {
    display: block;
  }
  .co-form__row {
    grid-template-columns: 1fr 1fr;
  }
  .co-form__row--two-cols {
    grid-template-columns: 1fr 1fr;
  }
  .co-form__row--three-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .co-sidebar--mobile {
    display: none !important;
  }
  .co-sidebar--desktop {
    border-left: 1px solid #e5e5e5;
    display: block;
    background: #fafafa;
    padding: 40px;
    margin-top: -136px;
  }
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
p,
span,
h1, h2, h3, h4, h5, h6 {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

.menu-items a,
.menu-items button,
.hamburger-icon,
.close-menu,
.nav-trigger {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

header {
  display: flex;
  justify-content: space-between;
}

.back-button {
  font-size: 20px;
}

.fullscreen-menu {
  display: none;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: transform 0.2s ease;
  z-index: 1001;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.close-menu:active {
  transform: scale(0.9);
}

.hamburger-icon {
  display: block;
  margin: 0 4px 15px 0;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.hamburger-icon .line {
  display: block;
  width: 18px;
  height: 2px;
  background: black;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.menu-items {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1A1917;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 999;
}
.menu-items.show {
  transform: translateX(0);
}
.menu-items a {
  color: white;
  text-decoration: none;
  font-size: 35px;
  margin: 15px 0;
  font-family: "Helvetica-Bold", sans-serif;
  font-weight: 500;
}

body {
  padding: 8px;
}
body.cart-is-open {
  overflow: hidden;
}
body.cart-is-open .container {
  transform: translateX(-150px) scale(0.9);
  transition: transform 0.3s ease;
  filter: brightness(0.7);
}

.container__text {
  padding-top: 200px;
}

.back-button {
  color: white;
  background: transparent;
  border: none;
}

.catalog__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 1000px) {
  header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .hamburger-icon {
    display: none;
  }
  .header__logo {
    display: block;
    width: 204px;
  }
}
@media (min-width: 1100px) {
  .fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    z-index: 999;
    padding-top: 25px;
  }
  .fullscreen-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-content {
    text-align: center;
  }
  .menu-content a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 7px 0;
    transition: opacity 0.2s;
    font-family: "Helvetica-Bold", sans-serif;
  }
  .menu-content a:hover {
    opacity: 0.6;
  }
  .header {
    position: relative;
    z-index: 1000;
  }
  .nav-trigger:hover {
    color: white;
    background: transparent;
  }
}
@media (min-width: 1300px) {
  header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: 0 auto;
  }
  .hamburger-icon {
    display: none;
  }
  body {
    padding: 35px;
  }
  .header__logo {
    display: block;
    width: 204px;
  }
  .header__buttons {
    display: flex;
    padding: 0;
    gap: 30px;
    margin-top: -40px;
  }
  #cart {
    justify-self: end;
    margin-left: auto;
    margin-top: -40px;
    padding-right: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
