@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --black: #080808;
  --black-2: #111111;
  --dark-grey: #1b1b1b;
  --grey: #777;
  --light-grey: #bdbdbd;
  --off-white: #f5f5f2;
  --white: #ffffff;
  --border: rgba(255,255,255,0.13);
  --dark-border: rgba(0,0,0,0.12);
  --max-width: 1400px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--white);
  color: var(--black);
}


/* LOADER */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -4px;
  animation: loaderPulse 1s infinite alternate;
}

@keyframes loaderPulse {
  from {
    transform: scale(.85);
    opacity: .4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* NAVBAR */

.navbar {
  height: 82px;
  width: 100%;
  padding: 0 5vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .4s ease;
}

.navbar.scrolled {
  height: 68px;
  background: rgba(8,8,8,.92);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: .8;
}

.logo span {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -3px;
}

.logo small {
  margin-top: 6px;
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--light-grey);
}

.desktop-nav {
  display: flex;
  gap: 42px;
}

.nav-link {
  position: relative;
  color: #aaa;
  font-size: 13px;
  letter-spacing: .5px;
  transition: color .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: white;
  transition: width .3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 8px;
  width: 25px;
  height: 1px;
  background: white;
  transition: .3s;
}

.menu-btn span:first-child {
  top: 15px;
}

.menu-btn span:last-child {
  top: 24px;
}

.menu-btn.open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-btn.open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 48%, #282828 0, #111 27%, #080808 62%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-content {
  position: absolute;
  z-index: 10;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 45vw);
}

.eyebrow {
  color: #999;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(60px, 8vw, 125px);
  line-height: .82;
  letter-spacing: -7px;
  font-weight: 600;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px #aaa;
}

.hero h1 strong {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-description {
  max-width: 390px;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin: 35px 0;
}

.primary-btn,
.outline-btn,
.submit-btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid white;
  background: white;
  color: black;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: transform .35s var(--ease), background .35s, color .35s;
}

.primary-btn:hover,
.submit-btn:hover {
  transform: translateY(-4px);
  background: transparent;
  color: white;
}

.primary-btn b,
.outline-btn span,
.submit-btn b {
  font-size: 18px;
  font-weight: 400;
}

.showroom {
  position: absolute;
  right: 3vw;
  top: 50%;
  width: 57vw;
  height: 760px;
  max-width: 850px;
  transform: translateY(-50%);
  perspective: 1400px;
}

.hero-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #444, #181818 58%, transparent 70%);
  opacity: .65;
  filter: blur(2px);
}

.clothing-item {
  position: absolute;
  width: 300px;
  height: 500px;
  z-index: 3;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    opacity .7s var(--ease),
    transform 1s var(--ease),
    filter .7s;
}

.clothing-item img {
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  filter: grayscale(100%);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  transition: transform .6s var(--ease), filter .5s;
}

.clothing-item:hover img {
  filter: grayscale(0%);
}

.clothing-item span {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 11px;
  letter-spacing: 2px;
}

.item-shadow {
  position: absolute;
  width: 80%;
  height: 35px;
  left: 10%;
  bottom: -30px;
  border-radius: 50%;
  background: black;
  filter: blur(20px);
  opacity: .8;
}

.item-one {
  left: 0;
  top: 170px;
  transform: rotateY(15deg) rotateZ(-4deg);
}

.item-two {
  left: 29%;
  top: 40px;
  z-index: 5;
  transform: rotateY(-8deg) rotateZ(2deg) scale(1.1);
}

.item-three {
  right: 0;
  top: 190px;
  transform: rotateY(-15deg) rotateZ(4deg);
}

.floating-label {
  position: absolute;
  z-index: 8;
  color: #777;
  font-size: 9px;
  letter-spacing: 2px;
}

.label-one {
  left: -20px;
  top: 135px;
}

.label-two {
  left: 50%;
  top: 5px;
}

.label-three {
  right: -10px;
  bottom: 130px;
}


/* SELECTED VIEW */

.selected-view {
  position: absolute;
  inset: 0;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #080808;
  transition: opacity .8s var(--ease), visibility .8s;
}

.hero.selected .selected-view {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero.selected .clothing-item,
.hero.selected .hero-circle,
.hero.selected .floating-label {
  opacity: 0;
  pointer-events: none;
  transform: scale(.7) translateY(80px);
}

.back-collection {
  position: absolute;
  top: 120px;
  left: 7vw;
  border: 0;
  background: none;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 1px;
  transition: color .3s;
}

.back-collection:hover {
  color: white;
}

.back-collection span {
  font-size: 18px;
  margin-right: 10px;
}

.selected-product {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8vw;
}

.selected-image-wrap {
  width: min(420px, 38vw);
  height: 580px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.selected-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: 40px 50px 100px rgba(0,0,0,.7);
  border-radius: 3px;
}

.selected-info {
  width: min(400px, 35vw);
}

.selected-info p:first-child {
  color: #777;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.selected-info h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -4px;
  margin-bottom: 25px;
}

.selected-info > p {
  color: #999;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 35px;
}

.outline-btn {
  background: transparent;
  color: white;
}

.outline-btn:hover {
  background: white;
  color: black;
  transform: translateY(-4px);
}


/* MARQUEE */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: #0c0c0c;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-size: 12px;
  letter-spacing: 4px;
  white-space: nowrap;
}

.marquee i {
  font-style: normal;
  color: #666;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* SECTIONS */

.section {
  max-width: var(--max-width);
  margin: auto;
  padding: 150px 5vw;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 75px;
}

.section-heading h2,
.about-content h2,
.contact-intro h2 {
  font-size: clamp(50px, 7vw, 100px);
  line-height: .9;
  letter-spacing: -5px;
}

.section-heading h2 em,
.about-content h2 em,
.contact-intro h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.section-heading > p {
  width: 270px;
  color: #777;
  line-height: 1.7;
  font-size: 13px;
}


/* CATEGORY */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
  background: #161616;
}

.category-card.large {
  height: 650px;
  grid-row: span 2;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1s var(--ease), filter .7s;
}

.category-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.category-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: end;
}

.category-overlay span {
  color: #aaa;
  font-size: 10px;
}

.category-overlay h3 {
  font-size: 30px;
  font-weight: 500;
}

.category-overlay b {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
}


/* ABOUT */

.about-section {
  min-height: 800px;
  padding: 100px 8vw;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 9vw;
  background: var(--off-white);
  color: var(--black);
}

.about-image {
  position: relative;
  height: 650px;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
}

.about-content {
  max-width: 520px;
}

.about-content .eyebrow {
  color: #777;
}

.about-content h2 {
  margin-bottom: 35px;
}

.about-content > p {
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid black;
  padding-bottom: 7px;
  font-size: 12px;
}


/* STATS */

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(55px, 8vw, 110px);
  font-weight: 500;
  letter-spacing: -6px;
}

.stat span {
  color: #777;
  font-size: 9px;
  letter-spacing: 3px;
}


/* CONTACT */

.contact-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 150px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.contact-details {
  margin-top: 70px;
  display: grid;
  gap: 25px;
}

.contact-details a,
.contact-details div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #bbb;
  font-size: 13px;
}

.contact-details span {
  color: #555;
  font-size: 9px;
  letter-spacing: 2px;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.social-buttons a {
  border: 1px solid var(--border);
  padding: 13px 18px;
  font-size: 10px;
  transition: .3s;
}

.social-buttons a:hover {
  background: white;
  color: black;
}


/* FORM */

.contact-form {
  padding-top: 20px;
}

.input-group {
  margin-bottom: 30px;
}

.input-group label {
  display: block;
  color: #777;
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #333;
  outline: none;
  background: transparent;
  color: white;
  padding: 12px 0;
  resize: vertical;
  transition: border .3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: white;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #444;
}

.input-group.invalid input,
.input-group.invalid textarea {
  border-color: #888;
}

.error {
  display: block;
  margin-top: 7px;
  color: #aaa;
  font-size: 10px;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

.whatsapp-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: .3s;
}

.whatsapp-btn:hover {
  border-color: white;
}

.form-status {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  color: #aaa;
}


/* SHOP PAGE */

.shop-page {
  background: var(--black);
  min-height: 100vh;
}

.shop-hero {
  min-height: 650px;
  padding: 190px 8vw 100px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 70% 45%, #222, #080808 50%);
}

.shop-hero h1 {
  font-size: clamp(80px, 13vw, 190px);
  line-height: .75;
  letter-spacing: -10px;
}

.shop-hero h1 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.shop-hero-text > p:last-child {
  max-width: 400px;
  margin-top: 40px;
  color: #888;
  line-height: 1.8;
}

.shop-hero-number {
  color: #555;
  font-size: 10px;
  letter-spacing: 2px;
}

.shop-controls {
  padding: 35px 5vw;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(15px);
}

.filter-buttons {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.filter-btn {
  color: #777;
  background: none;
  border: 0;
  font-size: 11px;
  transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
}

.products-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 100px 5vw 150px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 25px;
}

.product-card {
  position: relative;
  transition: opacity .4s, transform .5s var(--ease);
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: #171717;
  perspective: 1000px;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .8s var(--ease), filter .6s;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.product-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 2px;
}

.product-info {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 500;
}

.product-info p {
  margin-top: 7px;
  font-size: 9px;
  color: #666;
  letter-spacing: 2px;
}

.product-info strong {
  font-size: 13px;
  font-weight: 500;
}

.view-product {
  width: 100%;
  height: 48px;
  border: 1px solid #333;
  background: transparent;
  color: white;
  font-size: 11px;
  transition: .3s;
}

.view-product:hover {
  background: white;
  color: black;
}


/* PRODUCT MODAL */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s, visibility .5s;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}

.product-detail {
  position: absolute;
  width: min(1100px, 90vw);
  max-height: 90vh;
  overflow: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  background: #121212;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform .6s var(--ease);
}

.product-modal.open .product-detail {
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  z-index: 10;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #555;
  background: rgba(0,0,0,.4);
  color: white;
  border-radius: 50%;
  font-size: 25px;
}

.detail-image {
  min-height: 650px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.detail-content {
  padding: 80px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-content h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: .9;
  letter-spacing: -4px;
  margin-bottom: 25px;
}

.detail-description {
  color: #888;
  line-height: 1.8;
  font-size: 13px;
  max-width: 400px;
}

.detail-price {
  margin: 35px 0;
  font-size: 20px;
}

.size-area > span {
  color: #666;
  font-size: 9px;
  letter-spacing: 2px;
}

#sizeButtons {
  display: flex;
  gap: 8px;
  margin: 15px 0 35px;
  flex-wrap: wrap;
}

.size-button {
  min-width: 43px;
  height: 38px;
  border: 1px solid #444;
  background: transparent;
  color: white;
  font-size: 10px;
}

.size-button.selected,
.size-button:hover {
  background: white;
  color: black;
}

.detail-content .primary-btn {
  width: 100%;
}


/* FOOTER */

footer {
  min-height: 180px;
  border-top: 1px solid var(--border);
  padding: 50px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo strong {
  font-size: 35px;
  letter-spacing: -4px;
}

.footer-logo span {
  color: #666;
  font-size: 8px;
  letter-spacing: 3px;
}

footer p,
footer > a {
  color: #555;
  font-size: 10px;
}

footer > a:hover {
  color: white;
}


/* SCROLL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(20px);
    padding: 20px 5vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-130%);
    transition: transform .5s var(--ease);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 20px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
  }

  .hero-content {
    left: 6vw;
    width: 50vw;
  }

  .showroom {
    right: -10vw;
    width: 65vw;
  }

  .clothing-item {
    width: 230px;
    height: 400px;
  }

  .item-two {
    left: 29%;
  }

  .selected-product {
    gap: 5vw;
  }

  .selected-image-wrap {
    width: 38vw;
    height: 500px;
  }

  .about-section {
    padding: 100px 6vw;
  }

  .contact-section {
    padding: 100px 6vw;
  }

  .product-image {
    height: 550px;
  }
}


@media (max-width: 700px) {

  .navbar {
    height: 68px;
    padding: 0 5vw;
  }

  .navbar.scrolled {
    height: 62px;
  }

  .logo span {
    font-size: 25px;
  }

  .hero {
    height: 900px;
    min-height: 900px;
  }

  .hero-content {
    top: 145px;
    left: 7vw;
    transform: none;
    width: 85vw;
    z-index: 20;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 95px);
    letter-spacing: -5px;
  }

  .hero-description {
    margin: 25px 0;
    max-width: 320px;
  }

  .showroom {
    top: 500px;
    right: auto;
    left: 0;
    width: 100vw;
    height: 450px;
    transform: none;
  }

  .hero-circle {
    width: 340px;
    height: 340px;
  }

  .clothing-item {
    width: 145px;
    height: 250px;
  }

  .item-one {
    left: 2vw;
    top: 120px;
  }

  .item-two {
    left: calc(50% - 72px);
    top: 20px;
  }

  .item-three {
    right: 2vw;
    top: 120px;
  }

  .floating-label {
    display: none;
  }

  .selected-view {
    overflow-y: auto;
  }

  .back-collection {
    top: 95px;
    left: 6vw;
  }

  .selected-product {
    padding: 150px 7vw 70px;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .selected-image-wrap {
    width: 75vw;
    height: 430px;
  }

  .selected-info {
    width: 85vw;
  }

  .selected-info h2 {
    font-size: 45px;
  }

  .section {
    padding: 90px 5vw;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 60px;
    letter-spacing: -4px;
  }

  .section-heading > p {
    margin-top: 30px;
  }

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

  .category-card,
  .category-card.large {
    height: 480px;
    grid-row: auto;
  }

  .about-section {
    padding: 80px 7vw;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    height: 450px;
  }

  .about-content h2 {
    font-size: 58px;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding: 90px 7vw;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-intro h2 {
    font-size: 60px;
  }

  footer {
    padding: 45px 7vw;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .shop-hero {
    min-height: 570px;
    padding: 150px 7vw 70px;
    display: block;
  }

  .shop-hero h1 {
    font-size: 100px;
    letter-spacing: -7px;
  }

  .shop-hero-number {
    margin-top: 50px;
  }

  .shop-controls {
    top: 68px;
    padding: 20px 5vw;
  }

  .filter-buttons {
    gap: 17px;
  }

  .filter-btn {
    font-size: 10px;
  }

  .products-section {
    padding: 70px 5vw 100px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .product-image {
    height: 500px;
  }

  .product-detail {
    width: 92vw;
    max-height: 92vh;
    grid-template-columns: 1fr;
  }

  .detail-image {
    min-height: 380px;
    height: 45vh;
  }

  .detail-content {
    padding: 45px 25px 35px;
  }

  .detail-content h2 {
    font-size: 45px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}


@media (max-width: 400px) {

  .hero {
    min-height: 850px;
    height: 850px;
  }

  .hero-content {
    top: 125px;
  }

  .showroom {
    top: 470px;
  }

  .clothing-item {
    width: 125px;
    height: 220px;
  }

  .item-two {
    left: calc(50% - 62px);
  }

  .section-heading h2,
  .about-content h2,
  .contact-intro h2 {
    font-size: 52px;
  }

  .shop-hero h1 {
    font-size: 82px;
  }
}