.vue-app-shell {
  height: auto !important;
  min-height: 100vh;
  background: #fff;
  overflow: visible !important;
  position: relative;
}

.vue-app-main {
  min-height: 0;
  position: relative;
  z-index: 2;
  background: #fff;
}

.vue-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.vue-header__logo {
  width: 140px;
  display: block;
}

.vue-header__chevron {
  width: 10px;
  height: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
}

.vue-header__catalog-link {
  margin-right: 20px;
}

.vue-header__search-desktop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  color: #5d5d5d;
  cursor: pointer;
  text-align: left;
}

.vue-header__search-desktop i {
  font-size: 16px;
}

.vue-header__search-desktop span {
  font-size: 15px;
  line-height: 1;
}

.vue-header__search-mobile {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.vue-header__search-mobile i {
  font-size: 19px;
  color: #171717;
}

.vue-header__cart-desktop,
.vue-header__cart-mobile {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vue-header__cart-desktop {
  display: inline-flex;
}

.vue-header__cart-mobile {
  display: none;
}

.vue-header__cart-desktop i,
.vue-header__cart-mobile i {
  font-size: 18px;
  color: #171717;
}

.vue-header__cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.vue-header__burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.vue-header__burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #171717;
  display: block;
}

.vue-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  z-index: 80;
  display: flex;
  justify-content: flex-end;
}

.vue-overlay__panel {
  width: min(360px, 100%);
  min-height: 100vh;
  background: #fff;
  padding: 32px 24px;
  position: relative;
  overflow-y: auto;
}

.vue-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.vue-overlay__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 12, 12, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
}

.search-overlay__panel {
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  padding: 28px;
}

.search-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.search-overlay__title {
  color: #141414;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.search-overlay__close {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.search-overlay__field {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  background: #fafafa;
}

.search-overlay__field i {
  color: #6f6f6f;
  font-size: 22px;
}

.search-overlay__input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #161616;
  font-size: 18px;
}

.search-overlay__input:focus {
  outline: none;
}

.search-overlay__results {
  margin-top: 22px;
}

.search-overlay__section + .search-overlay__section {
  margin-top: 24px;
}

.search-overlay__discover {
  margin-top: 22px;
}

.search-overlay__discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.search-overlay__section-title {
  margin-bottom: 12px;
  color: #757575;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-overlay__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-overlay__chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #111;
  text-decoration: none;
}

.search-overlay__chip--button {
  border: 0;
  cursor: pointer;
}

.search-overlay__list {
  display: grid;
  gap: 12px;
}

.search-overlay__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  color: #111;
  text-decoration: none;
  background: #fafafa;
}

.search-overlay__thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.search-overlay__item-title {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.search-overlay__item-meta,
.search-overlay__hint,
.search-overlay__empty {
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.55;
}

.search-overlay__hint {
  margin-top: 20px;
}

.search-overlay__empty {
  margin-top: 20px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(12, 12, 12, 0.45);
  display: flex;
  justify-content: flex-end;
}

.cart-overlay__panel {
  width: min(520px, 100%);
  min-height: 100vh;
  background: #fff;
  padding: 24px 20px 28px;
  overflow-y: auto;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.12);
}

.cart-overlay__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.cart-overlay__title {
  color: #111;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.cart-overlay__subtitle {
  margin-top: 8px;
  color: #7a7a7a;
  font-size: 15px;
}

.cart-overlay__close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cart-overlay__list {
  display: grid;
  gap: 14px;
}

.cart-overlay__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid #ededed;
  border-radius: 18px;
  background: #fff;
}

.cart-overlay__thumb {
  width: 96px;
  height: 118px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #f4f4f4;
}

.cart-overlay__item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-overlay__item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-overlay__item-brand {
  margin-bottom: 6px;
  color: #8a8a8a;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-overlay__item-title {
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.cart-overlay__remove {
  border: 0;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
}

.cart-overlay__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 10px;
  color: #6f6f6f;
  font-size: 13px;
}

.cart-overlay__item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.cart-overlay__qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cart-overlay__qty button {
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.cart-overlay__price {
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.cart-overlay__actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cart-overlay__checkout {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fafafa;
}

.cart-overlay__checkout-title {
  color: #111;
  font-size: 18px;
  font-weight: 600;
}

.cart-overlay__field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font: inherit;
}

.cart-overlay__field--textarea {
  min-height: 90px;
  resize: vertical;
}

.cart-overlay__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cart-overlay__message--error {
  color: #c62828;
}

.cart-overlay__message--success {
  color: #1f7a3d;
}

.cart-overlay__primary,
.cart-overlay__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  text-decoration: none;
}

.cart-overlay__primary {
  background: #111;
  color: #fff;
}

.cart-overlay__secondary {
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
}

.cart-overlay__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 20px;
}

.cart-overlay__empty-title {
  color: #111;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.cart-overlay__empty-text {
  margin: 0;
  color: #6d6d6d;
  font-size: 16px;
  line-height: 1.6;
}

.home-page {
  background: #fff;
}

.home-hero {
  position: relative;
}

.home-hero__stage {
  position: relative;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  background: #0f0f10;
}

.home-hero__image {
  width: 100%;
  height: calc(100vh - 104px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.42) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.26) 0%, rgba(5, 5, 5, 0.04) 34%, rgba(5, 5, 5, 0.16) 100%);
}

.home-hero__content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.home-hero__eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.home-hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-hero__text {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.35;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.home-hero__cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.home-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.home-hero__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-hero__nav--prev {
  left: 28px;
}

.home-hero__nav--next {
  right: 28px;
}

.home-hero__nav i {
  font-size: 34px;
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.home-hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.home-hero__dot.is-active {
  background: #fff;
}

.new-products-section {
  padding: 48px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.new-products-section--home {
  max-width: none;
  padding: 72px 32px 88px;
}

.home-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.home-section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-section-intro__eyebrow {
  margin-bottom: 10px;
  color: #8d8d8d;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-section-intro__title {
  margin: 0;
  color: #171717;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  font-weight: 500;
}

.home-benefits {
  padding: 0 0 88px;
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-benefits__card {
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid #ececec;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(38, 74, 255, 0.08), transparent 32%),
    #fafafa;
}

.home-benefits__title {
  margin: 0 0 12px;
  color: #161616;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}

.home-benefits__text {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.home-collections-grid {
  padding: 0 0 92px;
}

.home-collections-grid__wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-collections-grid__card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.home-collections-grid__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-collections-grid__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 12%, rgba(0, 0, 0, 0.58) 100%);
}

.home-collections-grid__card:hover img {
  transform: scale(1.04);
}

.home-collections-grid__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 28px 24px;
}

.home-collections-grid__meta {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-collections-grid__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
}

.home-collections-grid__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.home-trust {
  padding: 0 0 92px;
}

.home-trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.home-trust__content {
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #121212 0%, #232323 100%);
  color: #fff;
}

.home-trust__content .home-section-intro__title {
  color: #fff;
}

.home-trust__text {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-trust__primary,
.home-trust__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

.home-trust__primary {
  background: #fff;
  color: #111;
}

.home-trust__secondary {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
}

.home-trust__content .home-trust__secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
}

.home-trust__stats {
  display: grid;
  gap: 18px;
}

.home-trust__stat {
  padding: 28px 24px;
  border: 1px solid #ececec;
  border-radius: 24px;
  background: #fff;
}

.home-trust__value {
  margin-bottom: 10px;
  color: #121212;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 600;
}

.home-trust__label {
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.home-cta-band {
  padding: 0 0 96px;
}

.home-cta-band__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid #ececec;
}

.home-cta-band__title {
  max-width: 760px;
  margin: 0;
  color: #171717;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.08;
  font-weight: 500;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.vue-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.vue-section-head__link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.vue-product-grid {
  display: grid;
  gap: 20px;
}

.vue-product-grid--featured {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.new-products-slider {
  position: relative;
}

.new-products-slider__track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 0 18px;
  scrollbar-width: none;
}

.new-products-slider__track::-webkit-scrollbar {
  display: none;
}

.new-products-slider__slide {
  flex: 0 0 calc((100% - 84px) / 4);
  min-width: 280px;
  display: flex;
  scroll-snap-align: start;
}

.new-products-slider__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #9f9f9f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  z-index: 3;
  cursor: pointer;
  transition: 0.2s ease;
}

.new-products-slider__nav:hover {
  color: #222;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.new-products-slider__nav i {
  font-size: 34px;
  line-height: 1;
}

.new-products-slider__nav--prev {
  left: -18px;
}

.new-products-slider__nav--next {
  right: -18px;
}

.catalog-grid {
  display: grid;
  gap: 24px;
  padding: 0 20px 120px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.catalog-grid--grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.product-card--minimal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.product-card--minimal .product-image-wrapper {
  aspect-ratio: 0.78;
  border-radius: 18px 18px 0 0;
}

.product-card--minimal .product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 22px;
}

.product-card--minimal .info-top {
  display: block;
}

.product-card--minimal .brand-name {
  margin-bottom: 6px;
  font-size: 13px;
  color: #8a8a8a;
  text-transform: uppercase;
}

.product-card--minimal .sku-text {
  font-size: 13px;
  color: #1e1e1e;
}

.product-card--minimal .product-title {
  margin: 16px 0 12px;
  font-size: 19px;
  line-height: 1.25;
  min-height: 48px;
}

.product-card--minimal .price-container {
  margin-bottom: 12px;
}

.product-card--minimal .current-price {
  font-size: 18px;
  font-weight: 700;
}

.product-card--minimal .color-info {
  font-size: 13px;
  line-height: 1.45;
}

.product-card--minimal .size-picker {
  margin-top: auto;
}

.product-card--list {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
}

.product-card__image-link,
.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.product-image-wrapper .secondary-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .secondary-img {
  opacity: 1;
}

.product-card:hover .primary-img {
  transform: scale(1.02);
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.info-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.brand-name,
.sku-text,
.color-info {
  margin: 0;
  color: #737373;
  font-size: 13px;
}

.product-title {
  margin: 12px 0 10px;
  font-size: 20px;
  line-height: 1.3;
  min-height: 52px;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
}

.old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  min-height: 76px;
  align-content: flex-start;
}

.size-chip {
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.size-chip.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.add-to-cart-btn,
.details-btn {
  flex: 1;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #111;
}

.add-to-cart-btn {
  background: #111;
  color: #fff;
}

.details-btn {
  color: #111;
  background: #fff;
}

.vue-home-categories {
  padding: 8px 20px 64px;
}

.vue-category-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.vue-category-showcase__item {
  position: relative;
  display: block;
  min-height: 800px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.vue-category-showcase__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.vue-category-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.vue-category-showcase__item:hover img {
  transform: scale(1.03);
}

.vue-category-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 36px 20px;
}

.vue-category-showcase__title {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.vue-wardrobe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 20px 50px;
}

.vue-wardrobe-card {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
}

.vue-wardrobe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.vue-wardrobe-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68));
}

.vue-breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 20px 12px;
}

.vue-catalog-page__intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 20px 34px;
}

.vue-catalog-page .vue-breadcrumbs {
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.2;
}

.vue-catalog-page .vue-breadcrumbs a,
.vue-catalog-page .vue-breadcrumbs .separator,
.vue-catalog-page .vue-breadcrumbs .current {
  color: inherit;
  text-decoration: none;
}

.vue-catalog-page .vue-breadcrumbs .current {
  color: #232323;
  font-weight: 500;
}

.vue-catalog-page .catalog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.vue-catalog-page .category-header {
  width: 100%;
  text-align: center;
}

.vue-catalog-page__title {
  margin: 0;
  color: #222;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.vue-catalog-page .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  flex-wrap: wrap;
}

.vue-catalog-page__sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vue-catalog-page__sort label {
  margin: 0;
  color: #242424;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.vue-catalog-page__sort select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 266px;
  height: 48px;
  padding: 0 44px 0 20px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background:
    linear-gradient(45deg, transparent 50%, #222 50%) calc(100% - 20px) calc(50% - 3px) / 8px 8px no-repeat,
    linear-gradient(135deg, #222 50%, transparent 50%) calc(100% - 14px) calc(50% - 3px) / 8px 8px no-repeat,
    #fff;
  color: #222;
  font-size: 18px;
  line-height: 1;
  box-shadow: none;
}

.vue-catalog-page__sort select:focus {
  outline: none;
  border-color: #222;
}

.vue-catalog-page__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vue-catalog-page__toggle button {
  min-width: 92px;
  height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #222;
  font-size: 17px;
  font-weight: 400;
  transition: 0.2s ease;
  box-shadow: none;
}

.vue-catalog-page__toggle button.active {
  background: #222;
  border-color: #222;
  color: #fff;
}

.catalog-landing__intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 20px 34px;
}

.catalog-landing .vue-breadcrumbs {
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.2;
}

.catalog-landing .vue-breadcrumbs a,
.catalog-landing .vue-breadcrumbs .separator,
.catalog-landing .vue-breadcrumbs .current {
  color: inherit;
  text-decoration: none;
}

.catalog-landing .vue-breadcrumbs .current {
  color: #232323;
  font-weight: 500;
}

.catalog-landing__headline {
  max-width: 720px;
}

.catalog-landing__title {
  margin: 0 0 14px;
  color: #222;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}

.catalog-landing__text {
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

.catalog-landing__search {
  max-width: 560px;
  margin-top: 28px;
}

.catalog-landing__search-label {
  display: block;
  margin-bottom: 10px;
  color: #242424;
  font-size: 18px;
  line-height: 1.2;
}

.catalog-landing__search-input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  color: #222;
  font-size: 17px;
  line-height: 1;
}

.catalog-landing__search-input:focus {
  outline: none;
  border-color: #222;
}

.catalog-landing__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.catalog-landing__card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: #131313;
}

.catalog-landing__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.catalog-landing__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 14%, rgba(0, 0, 0, 0.6) 100%);
}

.catalog-landing__card:hover img {
  transform: scale(1.04);
}

.catalog-landing__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 18px 16px;
}

.catalog-landing__meta {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-landing__name {
  margin-bottom: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 0.98;
  font-weight: 500;
  text-transform: uppercase;
}

.catalog-landing__count {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

.catalog-landing__empty {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 20px 120px;
}

.catalog-landing__empty-title {
  margin: 0 0 10px;
  color: #222;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}

.catalog-landing__empty-text {
  margin: 0 0 18px;
  color: #666;
  font-size: 17px;
  line-height: 1.6;
}

.catalog-landing__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.contacts {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 20px 60px;
}

.page__footer {
  position: relative;
  z-index: 1;
  background: #fff;
  margin-top: 0;
  border-top: 1px solid #f2f2f2;
}

.product-page-wrapper {
  width: 100%;
  background: #fff;
}

.product-detail {
  display: flex;
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 20px 70px;
  gap: 42px;
}

.product-visuals {
  flex: 1.15;
  min-width: 0;
}

.main-slider {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
}

.main-slider img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.vue-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.vue-thumbnail {
  border: 0;
  background: transparent;
  padding: 0;
  width: 88px;
  flex: 0 0 88px;
  opacity: 0.55;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.vue-thumbnail.is-active {
  opacity: 1;
  outline: 2px solid #111;
}

.vue-thumbnail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-content {
  flex: 1;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.vue-muted {
  opacity: 0.75;
}

.main-title {
  margin: 12px 0 20px;
  font-size: 34px;
  line-height: 1.2;
}

.price-box {
  margin-bottom: 28px;
}

.curr-price {
  font-size: 30px;
  font-weight: 800;
}

.selection-area {
  margin-bottom: 26px;
}

.section-label {
  margin-bottom: 12px;
  font-weight: 600;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sz-item {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 13px 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.sz-item.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.sz-item.out {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.btn-whatsapp {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 24px;
}

.product-page__actions {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.product-page__actions .btn-whatsapp {
  margin-bottom: 0;
}

.btn-add-cart {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn-add-cart.is-disabled,
.btn-add-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-page__hint {
  margin: -6px 0 22px;
  color: #d62828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.desc-text {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.vue-description {
  white-space: pre-line;
  line-height: 1.75;
}

.warranty-block {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.95em;
  color: #666;
}

.contact-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
}

.contact-fab__main {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.contact-fab__main i {
  font-size: 24px;
}

.contact-fab__items {
  position: absolute;
  right: 4px;
  bottom: 4px;
}

.contact-fab__item {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.8);
  transition: all 0.28s ease;
}

.contact-fab__item i {
  font-size: 22px;
  line-height: 1;
}

.contact-fab.is-open .contact-fab__item {
  opacity: 1;
  pointer-events: auto;
}

.contact-fab.is-open .contact-fab__item--phone {
  transform: translateY(-66px) scale(1);
}

.contact-fab.is-open .contact-fab__item--insta {
  transform: translateY(-132px) scale(1);
}

.contact-fab.is-open .contact-fab__item--wa {
  transform: translateY(-198px) scale(1);
}

.contact-fab__item--phone {
  background: #0d6efd;
}

.contact-fab__item--insta {
  background: linear-gradient(45deg, #f7b801, #f6514c, #a839c2, #3f5efb);
}

.contact-fab__item--wa {
  background: #25d366;
}

.contact-fab__tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.contact-fab__item:hover .contact-fab__tooltip {
  opacity: 1;
}

@media (max-width: 960px) {
  .home-benefits__grid,
  .home-collections-grid__wrap,
  .home-trust__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-collections-grid__card {
    min-height: 420px;
  }

  .home-trust__layout {
    gap: 20px;
  }

  .home-cta-band__layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-band__actions {
    justify-content: flex-start;
  }

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

  .product-detail {
    flex-direction: column;
    padding-top: 24px;
  }

  .product-content {
    position: static;
  }
}

@media (max-width: 768px) {
  .vue-header .header {
    min-height: 88px;
    align-items: center;
  }

  .vue-header .header__col {
    flex: 1;
    align-items: center;
  }

  .vue-header .header__col:last-child {
    justify-content: flex-end;
  }

  .header__col:first-child .header__link--insta,
  .vue-header__catalog-link,
  .vue-header__desktop-menu,
  .header__col:first-child .menu-trigger {
    display: none;
  }

  .vue-header__search-desktop {
    display: none;
  }

  .vue-header__cart-desktop {
    display: none;
  }

  .vue-header__search-mobile,
  .vue-header__cart-mobile,
  .vue-header__burger {
    display: inline-flex;
  }

  .vue-header .header__col:last-child {
    gap: 10px;
  }

  .vue-header__logo {
    width: 124px;
  }

  .home-hero__stage {
    min-height: calc(100vh - 88px);
  }

  .home-hero__image {
    height: calc(100vh - 88px);
  }

  .home-hero__content {
    bottom: 56px;
    width: calc(100% - 32px);
  }

  .home-hero__title {
    font-size: 44px;
  }

  .home-hero__text {
    font-size: 18px;
  }

  .home-hero__nav {
    width: 52px;
    height: 52px;
  }

  .home-hero__nav--prev {
    left: 14px;
  }

  .home-hero__nav--next {
    right: 14px;
  }

  .collections-layout {
    display: grid;
    gap: 14px;
    padding: 0 20px;
  }

  .catalog-grid,
  .new-products-section,
  .contacts {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .new-products-section--home {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .home-benefits,
  .home-collections-grid,
  .home-trust,
  .home-cta-band {
    padding-bottom: 64px;
  }

  .home-benefits__grid,
  .home-collections-grid__wrap,
  .home-trust__layout {
    grid-template-columns: 1fr;
  }

  .home-benefits__card,
  .home-trust__content,
  .home-trust__stat {
    padding: 22px 18px;
  }

  .home-collections-grid__card {
    min-height: 360px;
  }

  .home-collections-grid__overlay {
    padding: 22px 18px;
  }

  .vue-home-categories {
    padding: 8px 16px 42px;
  }

  .vue-category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vue-category-showcase__item {
    min-height: 360px;
    border-radius: 16px;
  }

  .vue-category-showcase__overlay {
    padding: 22px 14px;
  }

  .vue-category-showcase__title {
    font-size: 20px;
  }

  .new-products-slider__track {
    gap: 16px;
    padding-bottom: 10px;
  }

  .new-products-slider__slide {
    flex-basis: 82%;
    min-width: 0;
  }

  .new-products-slider__nav {
    display: none;
  }

  .search-overlay {
    padding: 12px;
    align-items: stretch;
  }

  .search-overlay__panel {
    max-height: 100vh;
    border-radius: 22px;
    padding: 20px 16px 24px;
  }

  .search-overlay__discover-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .search-overlay__title {
    font-size: 28px;
  }

  .search-overlay__close {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .search-overlay__field {
    min-height: 58px;
    padding: 0 14px;
  }

  .search-overlay__input {
    font-size: 16px;
  }

  .search-overlay__item {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }

  .search-overlay__thumb {
    width: 60px;
    height: 60px;
  }

  .cart-overlay__panel {
    width: 100%;
    padding: 18px 14px 22px;
  }

  .cart-overlay__title {
    font-size: 28px;
  }

  .cart-overlay__item {
    grid-template-columns: 74px 1fr;
    gap: 12px;
  }

  .cart-overlay__thumb {
    width: 74px;
    height: 92px;
  }

  .cart-overlay__item-title {
    font-size: 16px;
  }

  .contact-fab {
    right: 20px;
    bottom: 20px;
  }

  .contact-fab__main {
    width: 74px;
    height: 74px;
  }

  .contact-fab__main i {
    font-size: 30px;
  }

  .contact-fab__items {
    right: 6px;
    bottom: 6px;
  }

  .contact-fab__item {
    width: 68px;
    height: 68px;
  }

  .contact-fab__item i {
    font-size: 28px;
  }

  .contact-fab.is-open .contact-fab__item--phone {
    transform: translateY(-82px) scale(1);
  }

  .contact-fab.is-open .contact-fab__item--insta {
    transform: translateY(-164px) scale(1);
  }

  .contact-fab.is-open .contact-fab__item--wa {
    transform: translateY(-246px) scale(1);
  }

  .vue-catalog-page__intro {
    padding: 20px 16px 26px;
  }

  .catalog-landing__intro {
    padding: 20px 16px 26px;
  }

  .catalog-landing .vue-breadcrumbs {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .catalog-landing__title {
    font-size: 52px;
  }

  .catalog-landing__text {
    font-size: 17px;
  }

  .catalog-landing__search {
    max-width: 100%;
    margin-top: 22px;
  }

  .catalog-landing__search-label {
    font-size: 17px;
  }

  .catalog-landing__search-input {
    height: 54px;
    font-size: 16px;
  }

  .catalog-landing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px 72px;
  }

  .catalog-landing__empty {
    padding: 10px 16px 72px;
  }

  .catalog-landing__card {
    min-height: 250px;
  }

  .catalog-landing__overlay {
    padding: 16px 14px;
  }

  .catalog-landing__name {
    font-size: 22px;
  }

  .vue-catalog-page .vue-breadcrumbs {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .vue-catalog-page .catalog-header {
    align-items: stretch;
    gap: 18px;
  }

  .vue-catalog-page .category-header {
    text-align: left;
  }

  .vue-catalog-page__title {
    font-size: 38px;
    line-height: 1.05;
  }

  .vue-catalog-page .controls {
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
  }

  .vue-catalog-page__sort {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .vue-catalog-page__sort label {
    font-size: 21px;
  }

  .vue-catalog-page__sort select {
    width: 100%;
    min-width: 0;
    height: 56px;
    font-size: 18px;
    padding-left: 18px;
    padding-right: 48px;
  }

  .vue-catalog-page__toggle {
    display: none;
  }

  .catalog-grid--grid,
  .vue-product-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-group {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .catalog-grid--grid,
  .vue-product-grid--featured {
    grid-template-columns: 1fr;
  }

  .catalog-landing__title {
    font-size: 40px;
  }

  .catalog-landing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__title {
    font-size: 36px;
  }

  .home-hero__text {
    font-size: 16px;
  }

  .home-section-intro__title,
  .home-cta-band__title {
    font-size: 28px;
  }

  .home-benefits__title {
    font-size: 22px;
  }

  .home-collections-grid__title {
    font-size: 24px;
  }

  .vue-category-showcase {
    grid-template-columns: 1fr;
  }

  .vue-category-showcase__item {
    min-height: 300px;
  }

  .main-title {
    font-size: 28px;
  }

  .contact-fab {
    right: 18px;
    bottom: 18px;
  }
}
