/* ========================================
   SHHEK Collection Page — Premium Athleisure
   Luxury Editorial Design System
   ======================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --ivory: #F6F2EE;
  --warm-beige: #E8DED3;
  --sand: #D8C2AB;
  --clay: #B88A6A;
  --espresso: #2A2522;
  --charcoal: #4B4744;
  --white: #FFFFFF;
  --border: rgba(75, 71, 68, 0.12);
  --border-light: rgba(75, 71, 68, 0.06);
  --overlay-dark: rgba(42, 37, 34, 0.5);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.7rem;
  --fs-sm: 0.8rem;
  --fs-base: 0.95rem;
  --fs-md: 1.1rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --fs-hero: clamp(2.8rem, 5vw, 4.2rem);

  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  --max-width: 1440px;
  --gutter: 2.5rem;
  --header-h: 64px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-normal: 350ms;
  --dur-slow: 600ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--sand); color: var(--espresso); }

/* ---------- Loading Animation ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__text {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--espresso);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--dur-normal);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  flex-shrink: 0;
}
.header__nav { display: flex; align-items: center; gap: var(--sp-xl); }
.header__nav a {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative; padding-bottom: 2px;
}
.header__nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--espresso);
  transition: width var(--dur-normal) var(--ease-out);
}
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__nav a.active { color: var(--espresso); font-weight: 600; }
.header__icons { display: flex; align-items: center; gap: var(--sp-lg); }
.header__icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  transition: background var(--dur-fast);
}
.header__icon:hover { background: rgba(0,0,0,0.04); }
.header__icon svg { width: 20px; height: 20px; stroke: var(--espresso); fill: none; stroke-width: 1.5; }
.header__hamburger {
  display: none; flex-direction: column; gap: 5px; width: 22px; cursor: pointer;
}
.header__hamburger span {
  display: block; height: 1.5px; background: var(--espresso); border-radius: 2px;
  transition: var(--dur-normal);
}
.header__hamburger span:nth-child(2) { width: 70%; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 100px var(--gutter) var(--sp-2xl);
  flex-direction: column; gap: var(--sp-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--ff-heading); font-size: var(--fs-xl); font-weight: 400;
  color: var(--espresso); padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh; /* taller, more immersive */
  display: flex;
  align-items: center; /* center vertically */
  overflow: hidden;
  background: var(--espresso);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transform: scale(1.05); /* initial scale for reveal effect */
  animation: slowPan 25s ease-out infinite alternate;
}
@keyframes slowPan {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.5%, 2%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  /* Darker gradient to ensure text readability on the left */
  background: linear-gradient(90deg, rgba(42,37,34,0.85) 0%, rgba(42,37,34,0.4) 50%, transparent 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  height: 100%; width: 100%;
}
.hero__content {
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding: var(--sp-4xl) 0;
}
.hero__label {
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--warm-beige); margin-bottom: var(--sp-lg);
  display: inline-block;
}
.hero__title {
  font-family: var(--ff-heading); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 400;
  line-height: 1.05; margin-bottom: var(--sp-lg);
  color: var(--white); letter-spacing: -0.02em;
}
.hero__desc {
  font-size: var(--fs-md); color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 480px; margin-bottom: var(--sp-2xl);
}
.hero__actions {
  display: flex; align-items: center; gap: var(--sp-md);
}
.hero__cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.8rem; min-height: 52px; border-radius: var(--radius-full);
  background: var(--white); color: var(--espresso);
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-out);
}
.hero__cta:hover { background: var(--warm-beige); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.hero__cta:active { transform: translateY(0) scale(0.98); box-shadow: none; }

/* ---------- Filter Bar ---------- */
.filter-bar {
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky; top: var(--header-h); z-index: 100;
}
.filter-bar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); flex-wrap: wrap; }
.filter-bar__left { display: flex; align-items: center; gap: var(--sp-md); }
.filter-bar__right { display: flex; align-items: center; gap: var(--sp-lg); }
.filter-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 400;
  letter-spacing: 0.04em; color: var(--charcoal);
  transition: all var(--dur-fast);
  background: transparent; cursor: pointer;
}
.filter-btn:hover { border-color: var(--espresso); color: var(--espresso); }
.filter-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.filter-bar__count { font-size: var(--fs-xs); color: var(--charcoal); letter-spacing: 0.02em; }
.filter-bar__sort {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-xs); color: var(--charcoal); cursor: pointer;
  background: none; border: none; font-family: var(--ff-body);
}
.filter-bar__sort select {
  border: none; background: none; font-family: var(--ff-body);
  font-size: var(--fs-xs); color: var(--espresso); cursor: pointer;
  font-weight: 500; outline: none;
}

/* ---------- Product Grid ---------- */
.products { padding: var(--sp-3xl) 0 var(--sp-5xl); background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl) var(--sp-xl); }
.product-card {
  position: relative; cursor: pointer;
  transition: transform var(--dur-normal) var(--ease-out);
}
.product-card:hover { transform: translateY(-3px); }
.product-card__img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--ivory); margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-normal) var(--ease-out);
}
.product-card:hover .product-card__img { box-shadow: var(--shadow-md); }
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), opacity 0.4s;
}
.product-card__img .product-card__img-hover {
  position: absolute; inset: 0; opacity: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s var(--ease-out);
}
.product-card:hover .product-card__img img:first-child { transform: scale(1.04); }
.product-card:hover .product-card__img .product-card__img-hover { opacity: 1; }
.product-card__badge {
  position: absolute; top: var(--sp-md); left: var(--sp-md);
  background: var(--espresso); color: var(--white);
  padding: 0.2rem 0.65rem; border-radius: var(--radius-full);
  font-size: 0.6rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card__wishlist {
  position: absolute; top: var(--sp-md); right: var(--sp-md);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(4px);
  transition: all var(--dur-normal) var(--ease-out);
}
.product-card:hover .product-card__wishlist { opacity: 1; transform: translateY(0); }
.product-card__wishlist svg {
  width: 16px; height: 16px; stroke: var(--espresso); fill: none; stroke-width: 1.5;
  transition: all var(--dur-fast);
}
.product-card__wishlist:hover svg { fill: #e85d75; stroke: #e85d75; }
.product-card__wishlist.active svg { fill: #e85d75; stroke: #e85d75; }
.product-card__info { display: flex; flex-direction: column; gap: 0.3rem; padding: 0 0.1rem; }
.product-card__name {
  font-family: var(--ff-heading); font-size: var(--fs-base); font-weight: 400;
  color: var(--espresso); line-height: 1.25; letter-spacing: -0.005em;
}
.product-card__color { font-size: var(--fs-xs); color: var(--charcoal); font-weight: 400; letter-spacing: 0.04em; }
.product-card__price {
  font-family: var(--ff-body); font-size: var(--fs-sm); font-weight: 700;
  color: var(--espresso); margin-top: 0.25rem; letter-spacing: 0.02em;
}

/* ---------- Philosophy ---------- */
.philosophy { padding: var(--sp-4xl) 0; background: var(--ivory); }
.philosophy .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--warm-beige); min-height: 520px;
}
.philosophy__img { position: relative; overflow: hidden; min-height: 520px; }
.philosophy__img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy__quote {
  position: absolute; bottom: var(--sp-2xl); left: var(--sp-xl); right: var(--sp-xl);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  padding: var(--sp-xl); border-radius: var(--radius-md);
}
.philosophy__quote p {
  font-family: var(--ff-heading); font-size: var(--fs-sm); font-style: italic;
  line-height: 1.7; color: var(--espresso);
}
.philosophy__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-3xl) var(--sp-3xl);
}
.philosophy__label {
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); margin-bottom: var(--sp-lg);
}
.philosophy__title {
  font-family: var(--ff-heading); font-size: var(--fs-3xl); font-weight: 400;
  line-height: 1.15; color: var(--espresso); margin-bottom: var(--sp-xl);
}
.philosophy__text {
  font-size: var(--fs-sm); color: var(--charcoal);
  line-height: 1.8; margin-bottom: var(--sp-xl); max-width: 420px;
}
.philosophy__link {
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--espresso); display: inline-flex; align-items: center; gap: 0.5rem;
  padding-bottom: 2px; border-bottom: 1px solid var(--espresso);
  transition: all var(--dur-normal);
}
.philosophy__link:hover { gap: 0.8rem; color: var(--clay); border-color: var(--clay); }
.philosophy__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Newsletter ---------- */
.newsletter {
  padding: var(--sp-5xl) 0; text-align: center;
  background: var(--white); border-top: 1px solid var(--border-light);
}
.newsletter__title {
  font-family: var(--ff-heading); font-size: var(--fs-3xl); font-weight: 400;
  color: var(--espresso); margin-bottom: var(--sp-md);
}
.newsletter__text {
  font-size: var(--fs-sm); color: var(--charcoal);
  max-width: 520px; margin: 0 auto var(--sp-2xl); line-height: 1.7;
}
.newsletter__form {
  display: flex; max-width: 520px; margin: 0 auto;
  border: 1.5px solid var(--border); border-radius: var(--radius-full);
  overflow: hidden; transition: border-color var(--dur-normal);
}
.newsletter__form:focus-within { border-color: var(--clay); }
.newsletter__input {
  flex: 1; padding: 0.9rem 1.5rem; border: none; outline: none;
  background: transparent; font-family: var(--ff-body); font-size: var(--fs-sm);
  color: var(--espresso);
}
.newsletter__input::placeholder { color: var(--charcoal); opacity: 0.5; }
.newsletter__submit {
  padding: 0.9rem 1.75rem; background: var(--espresso); color: var(--white);
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius-full); margin: 4px;
  transition: all var(--dur-normal);
  min-height: 44px;
}
.newsletter__submit:hover { background: #3d3633; transform: translateY(-1px); }
.newsletter__submit:active { transform: scale(0.98); }

/* ---------- Footer ---------- */
.footer { background: var(--ivory); border-top: 1px solid var(--border); padding: var(--sp-4xl) 0 var(--sp-xl); }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-3xl); padding-bottom: var(--sp-3xl); border-bottom: 1px solid var(--border);
}
.footer__brand-logo {
  font-family: var(--ff-heading); font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: var(--sp-lg); display: block;
}
.footer__brand-text {
  font-size: var(--fs-sm); color: var(--charcoal); line-height: 1.7; max-width: 320px;
}
.footer__nav-title {
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--espresso); margin-bottom: var(--sp-lg);
}
.footer__nav-list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer__nav-list a { font-size: var(--fs-sm); color: var(--charcoal); transition: color var(--dur-fast); }
.footer__nav-list a:hover { color: var(--espresso); }
.footer__social { display: flex; gap: var(--sp-md); margin-top: var(--sp-xl); }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  transition: all var(--dur-normal);
}
.footer__social a:hover { background: var(--espresso); border-color: var(--espresso); }
.footer__social a:hover svg { stroke: var(--white); }
.footer__social svg { width: 16px; height: 16px; stroke: var(--espresso); fill: none; stroke-width: 1.5; }
.footer__bottom {
  padding-top: var(--sp-xl); text-align: center;
  font-size: var(--fs-xs); color: var(--charcoal);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clay); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy .container { grid-template-columns: 1fr; }
  .philosophy__img { min-height: 360px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; --header-h: 56px; }
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { min-height: 70vh; align-items: flex-end; }
  .hero__overlay { background: linear-gradient(to top, rgba(42,37,34,0.85) 0%, rgba(42,37,34,0.4) 50%, transparent 100%); }
  .hero__content { padding: var(--sp-4xl) 0 var(--sp-3xl); max-width: 100%; text-align: center; align-items: center; }
  .hero__title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .filter-bar__left { flex-wrap: wrap; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
  .product-card:hover { transform: none; } /* disable lift on touch */
  .product-card__wishlist { opacity: 1; transform: none; }
  .product-card__name { font-size: var(--fs-sm); }
  .philosophy .container { grid-template-columns: 1fr; }
  .philosophy__img { min-height: 300px; }
  .philosophy__content { padding: var(--sp-2xl); }
  .philosophy__title { font-size: var(--fs-2xl); }
  .newsletter__title { font-size: var(--fs-2xl); }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .footer__bottom { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
  .hero { min-height: 60vh; }
  .filter-bar .container { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
  .filter-bar__right { width: 100%; justify-content: space-between; }
  .newsletter__form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter__submit { border-radius: var(--radius-full); margin: var(--sp-sm); }
  .philosophy__quote { left: var(--sp-md); right: var(--sp-md); bottom: var(--sp-md); padding: var(--sp-md); }
  .hero__cta { width: 100%; }
}

/* ================================================================
   EDITORIAL TROUSER SECTION
   ================================================================ */
.editorial-trouser {
  background-color: #D6D5CF; /* Soft stone/beige */
  display: flex;
  margin: var(--sp-4xl) 0;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem; /* Add padding so images aren't flush */
}
.editorial-trouser__inner {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.editorial-trouser__left {
  flex: 0 0 40%;
  position: relative;
  padding-right: 2rem;
}
.editorial-trouser__left img {
  width: 100%;
  height: 600px; /* Constrain height */
  object-fit: cover;
  display: block;
}
.editorial-trouser__badge {
  position: absolute;
  top: 75%;
  right: -20px;
  transform: translateY(-50%) rotate(-3deg);
  background: #fff;
  color: #111;
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.editorial-trouser__right {
  flex: 0 0 60%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.editorial-trouser__right-top-img {
  position: absolute;
  top: -2rem; /* Pull up slightly */
  left: 5%;
  width: 65%;
  height: 380px;
  z-index: 1;
}
.editorial-trouser__right-top-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-trouser__right-bottom-img {
  position: absolute;
  bottom: -4rem; /* Pull down slightly */
  right: -2rem;
  width: 30%;
  aspect-ratio: 4/5;
  z-index: 1;
}
.editorial-trouser__right-bottom-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.editorial-trouser__content {
  position: relative;
  z-index: 2;
  margin-top: 420px; /* Clear the top image */
  padding-left: 5%;
}
.editorial-trouser__content h2 {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 400;
}
.editorial-trouser__action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 85%;
}
.editorial-trouser__action-row p {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #222;
  text-transform: uppercase;
  margin: 0;
  max-width: 250px;
  line-height: 1.6;
}
.editorial-trouser__action .shhek-btn {
  background: #000;
  color: #fff;
  padding: 1rem 2.5rem;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}
.editorial-trouser__action .shhek-btn:hover {
  background: #333;
}

@media (max-width: 991px) {
  .editorial-trouser {
    padding: 2rem 1rem;
  }
  .editorial-trouser__inner {
    flex-direction: column;
  }
  .editorial-trouser__left, .editorial-trouser__right {
    flex: 0 0 100%;
    padding-right: 0;
  }
  .editorial-trouser__left img {
    height: 400px;
  }
  .editorial-trouser__right-top-img, .editorial-trouser__right-bottom-img {
    display: none;
  }
  .editorial-trouser__content {
    margin-top: 2rem;
    padding-left: 0;
  }
  .editorial-trouser__action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 100%;
  }
}
