/* ==========================================================================
   W.CONCEPT — Fashion E-Commerce
   Inspired by wconcept.com editorial style
   ========================================================================== */

/* ----------  Reset & Base  ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-gray-100: #e5e5e5;
  --color-gray-300: #b3b3b3;
  --color-gray-500: #707070;
  --color-gray-700: #333333;
  --color-line: #d8d8d8;

  --font-display: "Anton", "Bebas Neue", "Oswald", "Noto Sans SC",
    "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-stencil: "Stardos Stencil", "Bebas Neue", "Noto Sans SC", sans-serif;
  --font-body: "Inter", "Helvetica Neue", "Microsoft YaHei", "PingFang SC",
    Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --container: 1440px;
  --gutter: 60px;
}

html,
body {
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ----------  Layout helpers  ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 120px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 64px);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

/* ----------  Header  ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: #fff;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out),
    mix-blend-mode 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  mix-blend-mode: normal;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-black);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-line);
}

.site-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
}

.site-logo span {
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}

.menu-toggle span:nth-child(2) {
  width: 14px;
  margin-left: auto;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 22px;
}

/* ----------  Off-canvas Menu  ---------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 0 60px 60px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

.overlay-menu.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.overlay-menu__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: var(--header-h);
}

.overlay-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overlay-menu__nav a {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  width: max-content;
  position: relative;
  transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.overlay-menu__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}

.overlay-menu__nav a:hover::after {
  width: 100%;
}

.overlay-menu__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.overlay-menu__info h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 16px;
}

.overlay-menu__info p,
.overlay-menu__info a {
  font-size: 16px;
  line-height: 1.7;
}

.overlay-menu__info ul li {
  margin-bottom: 8px;
}

/* ----------  Hero — Video version  ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--color-black);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.05) 70%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 4px;
  padding: 0 40px;
}

.hero__title .line-1 {
  font-size: clamp(48px, 7.5vw, 116px);
  line-height: 1.05;
  letter-spacing: 6px;
}

.hero__title .line-2 {
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: 10px;
  margin: 0;
  font-weight: 400;
  text-indent: 10px;
}

.hero__title .line-3 {
  font-size: clamp(70px, 11vw, 180px);
  line-height: 0.9;
  font-family: var(--font-stencil);
  letter-spacing: 14px;
  text-indent: 14px;
}

/* Hero side elements */
.hero__shop {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 3;
}

.hero__shop a {
  position: relative;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease-out);
}

.hero__shop a:hover {
  gap: 20px;
}

.hero__counter {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero__counter .count {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero__counter .bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__counter .bars span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
}

.hero__counter .bars span.active {
  background: #fff;
  width: 40px;
}

.hero__year {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero__year::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

/* ----------  Hero — Image version (used on inner pages)  ---------- */
.hero--image {
  height: 100vh;
  min-height: 720px;
}

.hero--image .hero__media {
  object-fit: cover;
  object-position: center 22%;
}

/* ----------  Spring Collection Section  ---------- */
.spring-section {
  padding: 120px 0 140px;
  position: relative;
}

.spring-section .section-title {
  margin-bottom: 60px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 18px;
  margin-bottom: 80px;
}

.tabs a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 22px;
  color: var(--color-gray-500);
  transition: color 0.3s ease;
}

.tabs a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-black);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}

.tabs a.is-active,
.tabs a:hover {
  color: var(--color-black);
}

.tabs a.is-active::after {
  width: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px;
  position: relative;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.4;
  overflow: hidden;
  background: var(--color-off-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 12px;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-black);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.product-card__brand {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card__name {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--color-gray-700);
  margin-bottom: 14px;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.product-card__price del {
  color: var(--color-gray-300);
  font-size: 12px;
}

.product-card__price strong {
  font-weight: 600;
  font-size: 16px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 4;
  transition: background 0.3s ease, color 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--color-black);
  color: #fff;
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* ----------  Banner strip  ---------- */
.banner {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.banner__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.banner__kicker {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}

.banner__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.banner__desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s var(--ease-out);
}

.btn:hover {
  background: #fff;
  color: #000;
  gap: 18px;
}

.btn--invert {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn--invert:hover {
  background: transparent;
  color: #fff;
}

/* ----------  Lookbook  ---------- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 40px;
  margin-top: 80px;
}

.lookbook-grid .item {
  position: relative;
  overflow: hidden;
  background: var(--color-off-white);
}

.lookbook-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.lookbook-grid .item:hover img {
  transform: scale(1.05);
}

.lookbook-grid .item-1 {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.lookbook-grid .item-2 {
  grid-column: span 7;
  aspect-ratio: 16 / 9;
}

.lookbook-grid .item-3 {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.lookbook-grid .item-4 {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.lookbook-grid .item-5 {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.lookbook-grid .item .caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lookbook-grid .item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.lookbook-grid .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.lookbook-grid .item:hover::after {
  opacity: 1;
}

/* ----------  Category Cards  ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-off-white);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s ease, transform 0.8s var(--ease-out);
}

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

.category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.category-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-card__overlay span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
}

/* ----------  Page intro  ---------- */
.page-intro {
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
}

.page-intro .breadcrumb {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 18px;
}

.page-intro .breadcrumb a:hover {
  color: var(--color-black);
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 100px);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.page-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gray-700);
  font-size: 15px;
  line-height: 1.8;
}

/* ----------  Product Detail  ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.product-detail__media {
  position: relative;
  background: var(--color-off-white);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-detail__thumbs button {
  width: 80px;
  height: 100px;
  background: var(--color-off-white);
  overflow: hidden;
  border: 1px solid transparent;
}

.product-detail__thumbs button.is-active {
  border-color: var(--color-black);
}

.product-detail__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail__brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-detail__name {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 18px;
}

.product-detail__price del {
  color: var(--color-gray-300);
  font-size: 16px;
}

.product-detail__price strong {
  font-weight: 600;
  font-size: 24px;
}

.product-detail__options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
}

.product-detail__options h5 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.size-list,
.color-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-list button {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  font-size: 12px;
  letter-spacing: 1px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.size-list button.is-active,
.size-list button:hover {
  border-color: var(--color-black);
  background: var(--color-black);
  color: #fff;
}

.color-list button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  position: relative;
  transition: transform 0.3s ease;
}

.color-list button.is-active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}

.product-detail__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-line);
  width: max-content;
}

.product-detail__qty button {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.product-detail__qty span {
  width: 44px;
  text-align: center;
  font-size: 14px;
}

.product-detail__cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.product-detail__cta .btn {
  flex: 1;
  justify-content: center;
}

.product-detail__desc {
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-700);
}

.product-detail__desc h5 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ----------  Filters / Toolbar  ---------- */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 60px;
}

.toolbar__left,
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.toolbar__filter {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.toolbar__count {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-gray-500);
  text-transform: uppercase;
}

.toolbar__sort {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 0;
  background: transparent;
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-line);
}

.product-grid--list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  padding: 0 60px 120px;
}

.product-grid--list .product-card__media {
  aspect-ratio: 3 / 4;
}

/* ----------  Footer  ---------- */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 100px 60px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__brand p {
  color: var(--color-gray-300);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.footer__col h5 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.7;
}

.footer__col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer__col a:hover {
  opacity: 0.7;
}

.newsletter {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 12px;
  margin-top: 20px;
  max-width: 320px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  outline: none;
  padding: 6px 0;
  font-family: inherit;
}

.newsletter input::placeholder {
  color: var(--color-gray-300);
}

.newsletter button {
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  color: var(--color-gray-300);
  letter-spacing: 1px;
}

/* ----------  Animations  ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 1.2s var(--ease-out) both;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}

/* ----------  Responsive  ---------- */
@media (max-width: 1100px) {
  :root {
    --gutter: 30px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid--list {
    grid-template-columns: repeat(3, 1fr);
  }

  .lookbook-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .lookbook-grid .item-1 {
    grid-column: span 6;
  }
  .lookbook-grid .item-2 {
    grid-column: span 6;
  }
  .lookbook-grid .item-3,
  .lookbook-grid .item-4,
  .lookbook-grid .item-5 {
    grid-column: span 2;
  }

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

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

  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .hero__bg-text {
    font-size: 80px;
  }

  .hero__shop,
  .hero__counter,
  .hero__year,
  .hero__scroll {
    display: none;
  }

  .product-grid,
  .product-grid--list {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .tabs {
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer {
    padding: 60px 24px 30px;
  }

  .toolbar {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .overlay-menu {
    padding: 0 20px 30px;
  }

  .overlay-menu__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
