:root {
  --primary: #111111;
  --primary-dark: #000000;
  --accent: #b88952;
  --background: #f6f2ec;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6f6a64;
  --border: #e8dfd3;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 10px 26px rgba(17, 17, 17, 0.05);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 137, 82, 0.08), transparent 24%),
    var(--background);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(34, 34, 34, 0.08);
  border-color: rgba(229, 231, 235, 0.9);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 82px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: #4e4a46;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 250px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fbf9f6;
}

.search-bar input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-bar span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-btn,
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  width: 44px;
  height: 44px;
  padding: 0;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-btn:hover,
.menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(44, 107, 237, 0.25);
  box-shadow: var(--shadow-soft);
}

.menu-btn {
  display: none;
}

.header-icon {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-dropdown {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mobile-dropdown.open {
  display: block;
}

.mobile-dropdown-inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
}

.mobile-search {
  margin-bottom: 1rem;
}

.mobile-nav {
  display: grid;
  gap: 0.65rem;
}

.mobile-nav a {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  font-weight: 600;
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0.55) 40%, rgba(13, 13, 13, 0.18) 100%),
    url("assets/images/fashion-hero.jpg") 68% center/cover no-repeat;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(184, 137, 82, 0.22);
  filter: blur(12px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.hero p {
  max-width: 580px;
  margin: 0 0 2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}

.btn-secondary.dark {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary.dark:hover {
  background: rgba(17, 17, 17, 0.04);
}

.section {
  padding: 5.5rem 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-header p,
.section-intro {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
}

.strip-grid,
.product-grid,
.category-grid,
.deal-grid,
.testimonial-grid,
.info-grid,
.catalog-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-card,
.testimonial-card,
.stat-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: none;
}

.strip-card strong,
.testimonial-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.55rem;
}

.strip-card p,
.testimonial-card p,
.stat-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

.product-card,
.deal-card,
.category-card,
.contact-layout,
.about-layout,
.info-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.product-card,
.deal-card,
.category-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card.is-hovered,
.product-card:hover,
.deal-card:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0ebe3;
}

.card-media img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.product-card:hover .card-media img,
.deal-card:hover .card-media img,
.category-card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.3rem;
}

.card-body h3,
.card-body h4 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.price-row,
.deal-price {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.price {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
}

.price-old {
  color: #9ca3af;
  text-decoration: line-through;
}

.price-new {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.deal-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 137, 82, 0.12);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.category-card .card-body {
  gap: 0.7rem;
}

.split-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.split-layout {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.split-copy,
.split-media,
.about-copy,
.about-media,
.contact-copy,
.contact-form-wrap {
  min-width: 0;
}

.split-copy,
.about-copy,
.contact-copy,
.contact-form-wrap {
  padding: 2rem;
}

.split-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.split-media img,
.about-media img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(184, 137, 82, 0.12), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f7f1e9 100%);
}

.page-hero .hero-copy {
  max-width: 740px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-sections {
  display: grid;
  gap: 1.5rem;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel {
  padding: 1.6rem;
}

.info-panel h3 {
  font-size: 1.2rem;
}

.info-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  gap: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(44, 107, 237, 0.45);
  box-shadow: 0 0 0 4px rgba(44, 107, 237, 0.08);
}

.form-error {
  min-height: 1.2rem;
  color: #d63b3b;
  font-size: 0.9rem;
}

.form-success {
  display: none;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #ecfdf3;
  color: #117a46;
  font-weight: 600;
}

.form-success.visible {
  display: block;
}

.contact-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-band {
  padding: 4rem 0;
}

.cta-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(38, 34, 30, 0.98));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-card p {
  max-width: 720px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #121212;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.12);
  color: #94a3b8;
  font-size: 0.95rem;
}

.catalog-page {
  background: #fbfaf8;
}

.catalog-shell {
  padding: 1rem 0 0;
}

.catalog-toolbar {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
}

.catalog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0 0.5rem;
}

.catalog-topline h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.catalog-topline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.catalog-count {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.55rem 0.9rem;
  border: 1px solid #bfb4a6;
  background: #fffdfb;
  color: #302b26;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-chip.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.catalog-grid.catalog-fashion {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.catalog-fashion .product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-fashion .product-card:hover,
.catalog-fashion .product-card.is-hovered {
  transform: none;
  box-shadow: none;
}

.catalog-fashion .card-media {
  position: relative;
  aspect-ratio: 0.76;
  background: #f1eeea;
}

.catalog-fashion .card-media::after {
  content: "Save";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 0.55rem;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: #28231f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.catalog-fashion .card-media img {
  transform: none;
}

.catalog-fashion .card-body {
  gap: 0.28rem;
  padding: 0.75rem 0 1.25rem;
}

.catalog-fashion .card-body h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.catalog-fashion .card-body p {
  display: none;
}

.catalog-fashion .price-row {
  gap: 0.45rem;
}

.catalog-fashion .price {
  font-size: 1rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-swatches {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.2rem;
}

.product-swatches span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
}

.product-note {
  color: #8a8177;
  font-size: 0.78rem;
}

.product-link-minimal {
  display: inline-flex;
  align-items: center;
  margin-top: 0.25rem;
  color: #24201c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .search-bar {
    min-width: 210px;
  }

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

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

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

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .desktop-search {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .hero {
    min-height: 78svh;
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.26) 0%, rgba(13, 13, 13, 0.48) 34%, rgba(13, 13, 13, 0.82) 100%),
      url("assets/images/fashion-hero.jpg") 74% 18%/cover no-repeat;
  }

  .split-layout,
  .about-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-topline {
    align-items: start;
    flex-direction: column;
  }

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

  .split-media {
    min-height: 320px;
  }
}

@media (min-width: 921px) {
  .mobile-header-actions,
  .mobile-dropdown {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .logo {
    font-size: 1.1rem;
    max-width: calc(100vw - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-btn,
  .menu-btn {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    width: 100%;
    padding: 18rem 0 3.25rem;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 2.15rem;
  }

  .hero p {
    max-width: 320px;
    font-size: 1rem;
  }

  .button-row,
  .section-header {
    align-items: stretch;
  }

  .section {
    padding: 4.5rem 0;
  }

  .strip-grid,
  .product-grid,
  .catalog-grid,
  .catalog-grid.catalog-fashion,
  .category-grid,
  .deal-grid,
  .testimonial-grid,
  .grid-2,
  .grid-3,
  .info-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .about-copy,
  .contact-copy,
  .contact-form-wrap,
  .cta-card {
    padding: 1.5rem;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .filter-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.7rem;
  }

  .filter-chip {
    flex: 0 0 auto;
  }
}
