/* ==========================================================================
   AZAAN ENTERPRISES - HANDCRAFTED RUGS
   Custom Design System & Stylesheet
   ========================================================================== */

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

:root {
  --font-serif: 'Playfair Display', Didot, 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Raleway', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-alt: 'Montserrat', sans-serif;

  --color-black: #000000;
  --color-dark: #121212;
  --color-charcoal: #2b2b2b;
  --color-white: #ffffff;
  --color-offwhite: #fbfbfb;
  --color-cream: #F1F0EF;
  --color-border: #e6e6e6;
  --color-border-dark: #333333;
  --color-text: #222222;
  --color-text-muted: #5d5d61;
  --color-text-light: #808080;
  --color-accent-sale: #b33939;

  --container-max-width: 1240px;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s ease;
  --header-height: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.serif {
  font-family: var(--font-serif);
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 48px;
  gap: 20px;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.header-brand-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-black);
  text-transform: uppercase;
}

.header-brand-subtitle {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px 18px 48px;
  border-top: 1px solid #f0f0f0;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width var(--transition-fast);
}

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

.header-contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-email,
.header-phone {
  font-size: 0.88rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-email:hover,
.header-phone:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-socials a img {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header-socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.btn-header-inquire {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-header-inquire:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: left var(--transition-normal);
  z-index: 2000;
}

.mobile-drawer.active {
  left: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1999;
}

.mobile-drawer-overlay.active {
  display: block;
}

.mobile-drawer .nav-link {
  font-size: 1.15rem;
}

/* ==========================================================================
   HERO SECTION (Luxury Black Theme)
   ========================================================================== */
.hero-section {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 100px 24px 90px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--color-white);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: #dddddd;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

.hero-welcome-badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbbbbb;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #c9c9c9;
  margin-bottom: 20px;
  font-weight: 300;
  text-align: center;
}

/* ==========================================================================
   BACKGROUND REVEALING EFFECT (Window / Fixed Reveal Effect)
   ========================================================================== */
.hero-reveal-strip {
  position: relative;
  width: 100%;
  height: 560px;
  background-color: var(--color-black);
  background-image: url('./images/section_2.jpeg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 16px 24px -10px rgba(0, 0, 0, 0.6), inset 0 -16px 24px -10px rgba(0, 0, 0, 0.6);
}

@supports (-webkit-overflow-scrolling: touch) {

  /* Smooth touch device support */
  .hero-reveal-strip {
    background-attachment: scroll;
    background-position: center center;
  }
}

/* ==========================================================================
   ATELIER REVEAL STRIP (Fixed Parallax Effect between Collections & About)
   ========================================================================== */
.atelier-reveal-strip {
  position: relative;
  width: 100%;
  height: 520px;
  background-color: #111;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), url('./images/atelier-heritage-bg.png');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  box-shadow: inset 0 20px 30px -10px rgba(0, 0, 0, 0.7), inset 0 -20px 30px -10px rgba(0, 0, 0, 0.7);
  padding: 40px 24px;
}

.reveal-content-overlay {
  max-width: 880px;
  margin: 0 auto;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reveal-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.reveal-quote-title {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.reveal-quote-sub {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reveal-badge-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 24px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.reveal-badge-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
}

@supports (-webkit-overflow-scrolling: touch) {
  .atelier-reveal-strip {
    background-attachment: scroll;
    background-position: center center;
  }
}

/* ==========================================================================
   BANNER: OUR PRODUCTS
   ========================================================================== */
.banner-our-products {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 80px 24px;
}

.banner-our-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.banner-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #e5e5e5;
}

.banner-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-outline-white {
  display: inline-block;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 12px 36px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ==========================================================================
   CATEGORY SPLIT SECTIONS (Full-Width Edge-to-Edge Stacking Panels)
   ========================================================================== */
.category-split-section {
  padding: 0;
  background: var(--color-white);
  position: relative;
  width: 100%;
}

.category-split-section > .container {
  /* The section heading scrolls away on desktop; only the panels stack. */
  position: relative;
  background: var(--color-white);
  padding-top: 40px;
  padding-bottom: 20px;
}

.stacking-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.stacking-section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stacking-section-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1.25;
  margin-bottom: 14px;
}

.stacking-section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.fullwidth-stack-container {
  width: 100%;
  position: relative;
}

.fullwidth-stack-panel {
  position: -webkit-sticky;
  position: sticky;
  top: calc(24px + (var(--panel-index, 1) - 1) * 24px);
  z-index: calc(10 + var(--panel-index, 1));
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
  border-radius: 2px 2px 0 0;
  padding: 60px 6vw;
  box-sizing: border-box;
}

.fullwidth-panel-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.split-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 0;
}

.split-card-badge .badge-num {
  color: var(--color-black);
  font-weight: 700;
}

.split-card-badge .badge-sep {
  color: var(--color-gold);
}

.split-text-col {
  flex: 1;
  max-width: 540px;
}

.split-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  margin-top: 28px;
  transition: all 0.25s ease;
}

.split-card-cta:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.split-image-col {
  flex: 1;
  max-width: 580px;
  border-radius: 0;
  overflow: hidden;
}

.split-image-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullwidth-stack-panel:hover .split-image-col img {
  transform: scale(1.02);
}

.section-heading-serif {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FRAMED OPENING HOURS (Card 1 & 2)
   ========================================================================== */
.framed-hours-section {
  background-color: var(--color-black);
  padding: 60px 24px;
}

.framed-hours-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-white);
  display: flex;
  align-items: stretch;
  min-height: 420px;
}

.hours-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 40px;
}

.hours-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hours-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.hours-time {
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}

.hours-link {
  font-size: 0.95rem;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.hours-link:hover {
  opacity: 0.7;
}

.hours-image-col {
  flex: 1;
  overflow: hidden;
}

.hours-image-col img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ==========================================================================
   ABOUT AZAAN ENTERPRISES
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--color-white);
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-image-col {
  flex: 1.1;
}

.about-image-col img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.about-text-col {
  flex: 1;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-black);
  line-height: 1.25;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.about-text-col p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.about-cta-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-black);
  font-weight: 500;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ==========================================================================
   WHY CHOOSE US STICKY PINNED HORIZONTAL SCROLL
   ========================================================================== */
.why-us-pinned-wrapper {
  position: relative;
  height: 240vh;
  background: #fcfbf9;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.why-us-sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 30px 0;
}

.why-us-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5vw 24px 5vw;
}

.why-us-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.why-us-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-black);
  margin-bottom: 4px;
}

.why-us-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.why-us-nav-controls {
  display: flex;
  gap: 12px;
}

.why-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-nav-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.why-us-rail-viewport {
  width: 100%;
  overflow: hidden;
}

.why-us-rail {
  display: flex;
  gap: 28px;
  padding: 0 5vw;
  width: max-content;
  will-change: transform;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card {
  position: relative;
  width: 70vw;
  max-width: 920px;
  min-width: 320px;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.why-us-card::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Heavier gradient at bottom to make bottom-anchored content readable */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.80) 100%);
  transition: background 0.4s ease;
}

.why-us-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.85) 100%);
}

.why-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 32px 28px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.why-card-badge {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-card-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: #eeeeee;
  margin-bottom: 18px;
}

.why-card-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 28px;
  font-weight: 300;
}

.why-us-indicator-bar {
  width: calc(100% - 10vw);
  margin: 32px 5vw 0 5vw;
  height: 3px;
  background: #e2e2e2;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.why-us-indicator-fill {
  height: 100%;
  width: 20%;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform 0.2s ease, width 0.2s ease;
}

/* ==========================================================================
   CUSTOMER SERVICE FEEDBACK STRIP
   ========================================================================== */
.customer-service-section {
  position: relative;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-service-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cs-content-box {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.cs-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cs-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #eaeaea;
  margin-bottom: 24px;
}

.cs-intro-text {
  font-size: 0.96rem;
  line-height: 1.85;
  color: #dcdcdc;
  margin-bottom: 40px;
  font-weight: 300;
}

.cs-form {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.cs-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.cs-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs-form-group.full-width {
  width: 100%;
  margin-bottom: 24px;
}

.cs-form-label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #eaeaea;
  letter-spacing: 0.5px;
}

.cs-form-input,
.cs-form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  color: var(--color-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.cs-form-input:focus,
.cs-form-textarea:focus {
  border-bottom-color: var(--color-white);
}

.cs-form-textarea {
  resize: vertical;
  min-height: 60px;
}

.cs-submit-container {
  text-align: center;
  margin-top: 30px;
}

.btn-send-white {
  background: var(--color-white);
  color: var(--color-black);
  padding: 12px 48px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.btn-send-white:hover {
  background: #ececec;
  transform: translateY(-2px);
}

/* ==========================================================================
   FEATURED COLLECTIONS
   ========================================================================== */
.featured-collections-section {
  padding: 100px 0 80px 0;
  background: var(--color-white);
}

.collections-header {
  text-align: center;
  margin-bottom: 70px;
}

.collections-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.collections-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.collection-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 90px;
}

.collection-item-row:last-of-type {
  margin-bottom: 70px;
}

.collection-text-col {
  flex: 1;
  max-width: 520px;
}

.collection-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.collection-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.collection-img-col {
  flex: 1;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.collection-img-col img {
  max-height: 480px;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.collections-quote-strip {
  text-align: center;
  max-width: 860px;
  margin: 60px auto 0 auto;
  padding: 40px 20px;
  border-top: 1px solid #f0f0f0;
}

.collections-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   SUBSCRIBE FORM STRIP
   ========================================================================== */
.subscribe-section {
  padding: 60px 24px;
  background: var(--color-white);
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.subscribe-container {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-heading {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.subscribe-subtext {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.subscribe-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscribe-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-black);
  padding: 8px 0;
  font-size: 0.95rem;
  outline: none;
}

.btn-submit-black {
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  padding: 12px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 1px;
  transition: opacity var(--transition-fast);
}

.btn-submit-black:hover {
  opacity: 0.85;
}

.btn-submit-black:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   INSTAGRAM FEED WIDGET
   ========================================================================== */
.instagram-section {
  padding: 80px 0;
  background: var(--color-white);
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto 36px auto;
  padding: 0 20px;
}

.insta-user-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.insta-avatar-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
  border: 1px solid #e0e0e0;
}

.insta-handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.insta-stats {
  display: flex;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.insta-stats span strong {
  color: var(--color-black);
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cccccc;
  padding: 8px 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-black);
  transition: all var(--transition-fast);
}

.btn-insta-follow:hover {
  background: #f7f7f7;
  border-color: var(--color-black);
}

.insta-bio {
  max-width: 720px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 36px auto;
  padding: 0 20px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.insta-card:hover img {
  transform: scale(1.05);
}

.insta-overlay-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 0.8rem;
}

.insta-hashtag-strip {
  text-align: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
}

.insta-hashtag-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.insta-strip-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.insta-strip-row::-webkit-scrollbar {
  display: none;
}

.insta-strip-row img {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.insta-strip-row img:hover {
  opacity: 0.85;
  transform: scale(1.03);
  box-shadow: none;
}

/* ==========================================================================
   PRODUCT CAROUSEL & FULL PRODUCT CATALOG GRID
   ========================================================================== */
/* ==========================================================================
   ARTISANAL CATEGORIES SHOWCASE (Replaces eCommerce)
   ========================================================================== */
.categories-showcase-section {
  padding: 100px 0 80px 0;
  background: var(--color-white);
}

.categories-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.categories-showcase-section {
  padding: 80px 0;
  background: var(--color-white);
  width: 100%;
  overflow: hidden;
}

.categories-container-full {
  width: 100%;
  padding-left: max(40px, 4.5vw);
  padding-right: max(40px, 4.5vw);
}

.categories-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0 0 32px 0;
}

.categories-header-text {
  text-align: left;
}

.categories-main-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.categories-main-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.categories-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
  background: #111111;
  color: #ffffff;
}

.categories-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: visible;
}

.categories-carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;

  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.categories-carousel-track::-webkit-scrollbar {
  display: none;
}

.categories-carousel-track .category-card {
  flex: 0 0 380px;
  width: 380px;
  min-width: 380px;
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .categories-carousel-track .category-card {
    flex: 0 0 340px;
    width: 340px;
    min-width: 340px;
  }
}




.category-card {
  position: relative;
  background: transparent;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 0;
}

.category-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.category-card:hover .category-card-img-wrap img {
  transform: none;
}

.category-card-quickview {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #111111;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  z-index: 4;
}

.category-card:hover .category-card-quickview {
  transform: translateY(0);
  opacity: 1;
}

.category-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(30, 30, 30, 0.75);
  color: #ffffff;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 0;
  z-index: 2;
}

.category-card-info {
  padding: 4px 0 0 0;
  text-align: left;
}

.category-card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.3;
}

.category-card-materials {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 400;
  line-height: 1.4;
}

/* ==========================================================================
   CATEGORY DETAILS PAGE & LOOKBOOK
   ========================================================================== */
.category-page-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.btn-back-home:hover {
  color: var(--color-black);
}

/* Category Tab Switcher */
.category-switcher-strip {
  background: #fafafa;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow-x: auto;
}

.category-switcher-inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
}

.cat-tab-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: var(--color-white);
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cat-tab-btn:hover {
  border-color: var(--color-black);
}

.cat-tab-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Category Hero & Details Showcase Page */
.category-hero-section {
  padding: 40px 0 70px 0;
  background: var(--color-white);
  border-bottom: 1px solid #f0f0f0;
}

/* Breadcrumbs & Prev/Next Bar */
.cat-breadcrumbs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: #777;
}

.cat-breadcrumb-links a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.cat-prev-next-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-nav-arrow {
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: #333;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.cat-nav-arrow:hover {
  color: #000;
  font-weight: 600;
}

.cat-nav-sep {
  color: #ccc;
}

/* Centered Main Showcase Stage */
.cat-showcase-stage {
  max-width: 560px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.cat-main-image-wrap {
  width: 100%;
  max-height: 520px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-main-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Thumbnail Track underneath Main Image */
.cat-thumbnails-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cat-thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ddd;
  padding: 2px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.cat-thumb-img:hover {
  opacity: 1;
  border-color: #777;
}

.cat-thumb-img.active {
  opacity: 1;
  border: 2px solid #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Clean Minimal Details Block */
.cat-details-clean-block {
  max-width: 820px;
  margin: 45px auto 0 auto;
  text-align: center;
}

.cat-details-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--color-black);
}

.cat-details-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.cat-details-desc {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #444;
  margin: 0 auto;
}





/* Lookbook Gallery */
.lookbook-section {
  padding: 80px 0;
  background: #ffffff;
}

.lookbook-header {
  text-align: center;
  margin-bottom: 50px;
}

.lookbook-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lookbook-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lookbook-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.lookbook-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

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

.lookbook-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
  color: var(--color-white);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.lookbook-card:hover .lookbook-card-overlay {
  opacity: 1;
}

/* Fullscreen Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #dddddd;
  font-size: 0.95rem;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--color-white);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 5010;
  opacity: 0.8;
  background: none;
  border: none;
  transition: opacity var(--transition-fast);
}

.lightbox-close-btn:hover {
  opacity: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5010;
  outline: none;
  transition: all 0.3s ease;
}

.lightbox-arrow:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.lightbox-arrow.prev {
  left: 28px;
}

.lightbox-arrow.next {
  right: 28px;
}


/* ==========================================================================
   BLOG TEASER
   ========================================================================== */
.blog-teaser-section {
  padding: 90px 24px;
  text-align: center;
  background: var(--color-white);
}

.blog-teaser-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.blog-teaser-subtext {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   OUR PROCESS SECTION
   ========================================================================== */
.our-process-section {
  padding: 80px 0;
  background: #fdfdfd;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.process-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888888;
  display: block;
  margin-bottom: 12px;
}

.process-main-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 10px;
}

.process-main-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.gallery-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-side-item {
  flex: 0 0 15%;
  height: 480px;
  opacity: 0.4;
  overflow: hidden;
}

.gallery-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main-item {
  flex: 0 0 70%;
  height: 520px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-main-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 70%, transparent 100%);
  padding: 36px 32px 28px 32px;
  color: #ffffff;
  text-align: left;
  z-index: 5;
}

.process-step-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  line-height: 1.5;
  font-weight: 300;
}

.gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-nav-arrow:hover {
  background: #111111;
  color: #ffffff;
}

.gallery-nav-arrow.prev {
  left: 16.5%;
}

.gallery-nav-arrow.next {
  right: 16.5%;
}

/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */
.contact-us-section {
  padding: 72px 0;
  background: var(--color-white);
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.contact-info-col {
  flex: 0.8;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7f6f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black, #111111);
  margin-top: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--color-black, #111111);
  color: #ffffff;
  border-color: var(--color-black, #111111);
  transform: translateY(-2px);
}

.contact-detail-content {
  flex: 1;
}

.contact-info-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-info-text a {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-info-text a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.contact-form-col {
  flex: 1.2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row-2col {
  display: flex;
  gap: 24px;
}

.form-field-underline {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field-underline label {
  font-size: 0.85rem;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.form-field-underline input,
.form-field-underline textarea {
  border: none;
  border-bottom: 1px solid var(--color-black);
  padding: 8px 0;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
}

.form-field-underline textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-submit-wrap {
  margin-top: 16px;
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-section {
  width: 100%;
  height: 440px;
  background: #f0f0f0;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-white);
  padding: 60px 0 30px 0;
  border-top: 1px solid #eeeeee;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-info-line {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-info-line a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-info-line a:hover {
  color: var(--color-black);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--color-black);
  letter-spacing: 0.02em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--color-black);
  transform: translateX(3px);
}

.footer-map-col {
  display: flex;
  flex-direction: column;
}

.footer-map-wrapper {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-sub-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.footer-sub-form {
  display: flex;
  gap: 12px;
}

.footer-sub-input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--color-black);
  padding: 8px 0;
  font-size: 0.92rem;
  outline: none;
}

.footer-sub-btn {
  background: var(--color-black);
  color: var(--color-white);
  padding: 8px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  transition: opacity var(--transition-fast);
}

.footer-sub-btn:hover {
  opacity: 0.85;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #f2f2f2;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a img {
  width: 16px;
  height: 16px;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

.footer-socials a:hover img {
  opacity: 1;
}



/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--color-white);
  max-width: 800px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-black);
}

.modal-image-col {
  flex: 1;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-image-col img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.08));
}

.modal-details-col {
  flex: 1.1;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.modal-badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.modal-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.modal-quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
}

.qty-btn {
  padding: 6px 14px;
  font-size: 1.1rem;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 500;
}

.btn-add-to-cart {
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
}

.btn-add-to-cart:hover {
  opacity: 0.85;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-black);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 4000;
  opacity: 0;
  transition: all 0.35s ease;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Floating WhatsApp contact shortcut */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3500;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---- 1200px: Reduce carousel card sizes ---- */
@media (max-width: 1200px) {
  .categories-carousel-track .category-card {
    flex: 0 0 340px;
    width: 340px;
    min-width: 340px;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {
  .categories-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-side-item {
    display: none;
  }

  .gallery-main-item {
    flex: 0 0 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .gallery-nav-arrow.prev {
    left: 20px;
  }

  .gallery-nav-arrow.next {
    right: 20px;
  }

  /* Collection rows */
  .collection-item-row {
    gap: 36px;
  }

  /* About section */
  .about-grid {
    gap: 40px;
  }

  /* Contact */
  .contact-grid {
    gap: 40px;
  }

  /* Why Us — disable sticky pinned scroll on tablet, let it flow */
  .why-us-pinned-wrapper {
    height: auto;
  }

  .why-us-sticky-view {
    position: relative;
    height: auto;
    padding: 50px 0;
  }

  .why-us-rail {
    padding: 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .why-us-card {
    width: 80vw;
    flex-shrink: 0;
  }
}

/* ---- 768px: Tablet portrait / large phones ---- */
@media (max-width: 768px) {

  /* Header */
  .header-top {
    padding: 12px 16px;
    justify-content: space-between;
  }

  .header-logo-img {
    width: 44px;
    height: 44px;
  }

  .header-brand-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .header-brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
  }

  .header-nav-row {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile drawer improvements */
  .mobile-drawer {
    width: 300px;
    padding: 32px 20px;
    gap: 20px;
  }

  .mobile-drawer .nav-link {
    font-size: 1.1rem;
    padding: 6px 0;
  }

  /* Keep the layered scroll stack on mobile only. */
  .category-split-section > .container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .fullwidth-stack-panel {
    position: -webkit-sticky;
    position: sticky;
    top: calc(220px + (var(--panel-index, 1) - 1) * 30px);
    z-index: calc(10 + var(--panel-index, 1));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  }

  /* Hero */
  .hero-section {
    padding: 60px 20px 50px 20px;
  }

  .hero-main-title {
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .hero-welcome-badge {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .hero-reveal-strip {
    height: clamp(200px, 52vw, 320px);
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }

  /* Atelier Strip */
  .atelier-reveal-strip {
    height: auto;
    min-height: 320px;
    padding: 48px 20px;
  }

  .atelier-reveal-strip {
    background-position: center 18%;
  }

  .reveal-quote-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .reveal-quote-sub {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .reveal-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .reveal-badge-pill {
    font-size: 0.7rem;
    padding: 6px 18px;
  }

  /* Banner */
  .banner-title,
  .cs-title,
  .collections-title,
  .style-banner-title {
    font-size: 1.75rem;
  }

  .banner-our-products {
    min-height: 300px;
    padding: 55px 20px;
  }

  .banner-subtitle {
    font-size: 1.05rem;
  }

  .banner-text {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* Category split stacking panels */
  .category-split-section {
    padding: 44px 0 52px 0;
  }

  .stacking-section-header {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .stacking-section-title {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }

  .stacking-section-sub {
    font-size: 0.92rem;
  }

  .fullwidth-stack-panel {
    padding: 40px 20px;
    position: -webkit-sticky;
    position: sticky;
    top: calc(180px + (var(--panel-index, 1) - 1) * 20px);
  }

  .fullwidth-panel-inner {
    flex-direction: column;
    gap: 24px;
  }

  .split-text-col {
    max-width: 100%;
  }

  .fullwidth-stack-panel .section-heading-serif {
    font-size: 1.35rem;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
  }

  .fullwidth-stack-panel .section-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .split-card-cta {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-top: 20px;
  }

  .split-image-col {
    max-width: 100%;
    width: 100%;
  }

  .split-image-col img {
    height: auto;
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  /* Framed Hours */
  .framed-hours-card {
    flex-direction: column;
    min-height: auto;
  }

  .hours-image-col img {
    min-height: 200px;
    height: 200px;
  }

  .hours-content-col {
    padding: 32px 20px;
  }

  .hours-title {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }

  .hours-subtitle {
    font-size: 1rem;
  }

  /* Collections / Featured section */
  .featured-collections-section {
    padding: 60px 0 44px 0;
  }

  .collections-header {
    padding: 0 20px;
    margin-bottom: 36px;
  }

  .collections-title {
    font-size: 1.85rem;
    letter-spacing: 1.5px;
  }

  .collection-item-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding: 0 20px;
  }

  .collection-text-col {
    max-width: 100%;
  }

  .collection-img-col {
    max-width: 100%;
    width: 100%;
  }

  .collection-img-col img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .collection-name {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
  }

  .collection-tagline {
    font-size: 0.95rem;
  }

  .collection-desc {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* About section */
  .about-section {
    padding: 60px 0;
  }

  .about-grid {
    flex-direction: column;
    gap: 28px;
  }

  .about-image-col img {
    height: 420px;
    object-position: center top;
  }

  .about-title {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-text-col p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .about-cta-link {
    font-size: 0.88rem;
  }

  /* WHY CHOOSE US — mobile sticky horizontal scroll */
  .why-us-pinned-wrapper {
    position: relative;
  }

  .why-us-sticky-view {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 16px 0;
  }

  .why-us-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 0 16px 12px 16px;
  }

  .categories-main-title {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .categories-main-subtitle {
    font-size: 0.88rem;
  }

  .carousel-nav-btn {
    width: 38px;
    height: 38px;
  }

  .carousel-nav-btn svg {
    width: 15px;
    height: 15px;
  }

  .why-us-rail {
    padding: 0 16px;
    gap: 12px;
  }

  /* WHY CHOOSE US card fix — mobile screen longer height */
  .why-us-card {
    width: 82vw;
    height: 65vh;
    min-height: 480px;
    max-height: 580px;
    min-width: 260px;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .why-card-content {
    padding: 18px 16px 14px 16px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .why-card-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .why-card-title {
    font-size: 1.1rem;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .why-card-subtitle {
    font-size: 0.82rem;
    margin-bottom: 8px;
    line-height: 1.3;
    word-break: break-word;
  }

  .why-card-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .why-card-content .btn-outline-white {
    font-size: 0.7rem;
    padding: 8px 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    white-space: nowrap;
  }

  .why-us-indicator-bar {
    margin: 10px 16px 0 16px;
    width: calc(100% - 32px);
    height: 2px;
  }

  /* Customer service */
  .customer-service-section {
    padding: 60px 20px;
    min-height: 460px;
  }

  .cs-form-row,
  .contact-row-2col {
    flex-direction: column;
    gap: 14px;
  }

  /* Instagram section */
  .instagram-section {
    padding: 55px 0;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 12px;
    gap: 8px;
  }

  .insta-strip-row img {
    width: 80px;
    height: 80px;
  }

  /* Categories carousel */
  .categories-container-full {
    padding-left: 16px;
    padding-right: 16px;
  }

  .categories-header-row {
    display: block;
    margin-bottom: 32px;
  }

  .categories-carousel-controls {
    display: none;
  }

  .categories-carousel-wrapper {
    overflow: visible;
  }

  .categories-carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .categories-carousel-track .category-card {
    width: 100%;
    min-width: 0;
    flex: none;
    scroll-snap-align: none;
  }

  .category-card-title {
    font-size: 0.95rem;
  }

  .category-card-materials {
    font-size: 0.78rem;
  }

  /* Category showcase grid */
  .categories-showcase-grid,
  .categories-showcase-grid.row-2 {
    grid-template-columns: 1fr;
  }

  /* Category detail page (category.html) */
  .cat-hero-grid {
    flex-direction: column;
  }

  .cat-specs-table {
    grid-template-columns: 1fr;
  }

  .category-page-header {
    padding: 12px 16px;
  }

  .category-switcher-strip {
    padding: 8px 14px;
  }

  .category-switcher-inner {
    gap: 7px;
    justify-content: flex-start;
  }

  .cat-tab-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cat-breadcrumbs-row {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .cat-breadcrumb-links {
    min-width: 0;
    white-space: nowrap;
  }

  .cat-prev-next-nav {
    flex-shrink: 0;
  }

  .cat-showcase-stage {
    max-width: 460px;
  }

  .cat-main-image-wrap {
    padding: 12px;
    max-height: 420px;
  }

  .cat-main-image-wrap img {
    max-height: 390px;
  }

  .cat-details-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .cat-details-tagline {
    font-size: 0.96rem;
  }

  .cat-details-desc {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .cat-details-clean-block {
    margin-top: 28px;
    padding: 0 4px;
  }

  .cat-thumbnails-track {
    gap: 8px;
    margin-top: 12px;
  }

  .cat-thumb-img {
    width: 52px;
    height: 52px;
  }

  .lookbook-section {
    padding: 55px 0;
  }

  .lookbook-title {
    font-size: 1.55rem;
    letter-spacing: 1.5px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Process gallery */
  .our-process-section {
    padding: 55px 0;
  }

  .process-main-title {
    font-size: 1.75rem;
    letter-spacing: 2px;
  }

  .process-main-subtitle {
    font-size: 1rem;
  }

  .gallery-stage {
    padding: 0 14px;
  }

  .gallery-main-item {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .process-step-overlay {
    padding: 24px 18px 16px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 65%, transparent 100%);
  }

  .process-step-pill {
    font-size: 0.68rem;
    padding: 3px 9px;
    margin-bottom: 6px;
  }

  .process-step-title {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .process-step-desc {
    display: none !important;
  }

  /* Contact */
  .contact-us-section {
    padding: 44px 0;
  }

  .contact-grid {
    flex-direction: column;
    gap: 24px;
  }

  .contact-title {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
  }

  .contact-details-list {
    gap: 16px;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
  }

  .contact-info-text {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-name {
    font-size: 1.25rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
    font-size: 0.8rem;
  }

  /* Quick view modal */
  .modal-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-image-col img {
    max-height: 240px;
  }

  .modal-details-col {
    padding: 20px 16px;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  /* Map section */
  .map-section {
    height: 300px;
  }
}

/* ---- 480px: Small phones ---- */
@media (max-width: 480px) {

  /* Header */
  .header-top {
    padding: 10px 14px;
  }

  .header-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-logo-group {
    gap: 10px;
  }

  .header-brand-title {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
  }

  .header-brand-subtitle {
    display: none;
  }

  /* Hero */
  .hero-main-title {
    font-size: 1.85rem;
    letter-spacing: 0.3px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-section {
    padding: 50px 16px 44px 16px;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-reveal-strip {
    height: clamp(190px, 52vw, 260px);
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }

  .atelier-reveal-strip {
    min-height: 280px;
    padding: 36px 16px;
  }

  .reveal-quote-title {
    font-size: 1.35rem;
    letter-spacing: 0.3px;
  }

  .reveal-quote-sub {
    font-size: 0.85rem;
  }

  /* Stacking panels */
  .fullwidth-stack-panel {
    padding: 36px 16px;
    top: calc(170px + (var(--panel-index, 1) - 1) * 15px);
  }

  .fullwidth-stack-panel .section-heading-serif {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .split-image-col img {
    height: auto;
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  /* Collections */
  .collection-item-row {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .collection-name {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .collection-desc {
    font-size: 0.85rem;
  }

  /* WHY CHOOSE US — very small phones */
  .why-us-sticky-view {
    padding: 12px 0;
  }

  .why-us-card {
    height: 60vh;
    min-height: 440px;
    width: 85vw;
  }

  .why-us-header {
    padding: 0 14px 10px 14px;
  }

  .categories-main-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .categories-main-subtitle {
    font-size: 0.8rem;
  }

  .carousel-nav-btn {
    width: 34px;
    height: 34px;
  }

  .why-us-card {
    width: 88vw;
    min-width: 200px;
    max-height: calc(100vh - 150px);
  }

  .why-card-content {
    padding: 14px 12px 12px 12px;
  }

  .why-card-title {
    font-size: 0.95rem;
    letter-spacing: 0.2px;
  }

  .why-card-subtitle {
    font-size: 0.76rem;
    margin-bottom: 6px;
  }

  .why-card-desc {
    font-size: 0.72rem;
    line-height: 1.5;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
  }

  .why-card-content .btn-outline-white {
    font-size: 0.65rem;
    padding: 7px 14px;
  }

  .why-us-rail {
    padding: 0 14px;
    gap: 10px;
  }

  .why-us-indicator-bar {
    margin: 8px 14px 0 14px;
    width: calc(100% - 28px);
  }

  /* About */
  .about-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }

  .about-image-col img {
    height: 360px;
  }

  /* Lookbook */
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lookbook-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  /* Category tabs */
  .cat-tab-btn {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  /* Contact */
  .contact-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 0 8px;
  }

  .insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .insta-strip-row img {
    width: 65px;
    height: 65px;
  }

  /* Process */
  .gallery-main-item {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .process-step-overlay {
    padding: 18px 14px 12px 14px;
  }

  .process-step-pill {
    font-size: 0.62rem;
    padding: 2px 8px;
    margin-bottom: 4px;
  }

  .process-step-title {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 0;
  }

  .process-step-desc {
    display: none !important;
  }

  /* Category detail */
  .cat-showcase-stage {
    max-width: 100%;
  }

  .cat-main-image-wrap {
    padding: 8px;
    max-height: 340px;
  }

  .cat-main-image-wrap img {
    max-height: 320px;
  }

  .cat-details-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .cat-details-tagline {
    font-size: 0.9rem;
  }

  .cat-details-desc {
    font-size: 0.88rem;
  }

  .cat-thumb-img {
    width: 44px;
    height: 44px;
  }

  /* Footer */
  .footer-sub-form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-sub-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .footer-brand-name {
    font-size: 1.15rem;
  }

  .footer-col-title {
    font-size: 0.95rem;
  }

  .footer-info-line,
  .footer-links-list a {
    font-size: 0.82rem;
  }

  /* Lightbox arrows */
  .lightbox-arrow {
    width: 36px;
    height: 36px;
  }

  .lightbox-arrow.prev {
    left: 8px;
  }

  .lightbox-arrow.next {
    right: 8px;
  }

  /* Map section */
  .map-section {
    height: 250px;
  }

  /* Banner */
  .banner-our-products {
    padding: 44px 16px;
    min-height: 260px;
  }

  .banner-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .banner-subtitle {
    font-size: 0.95rem;
  }
}

/* Desktop stack: the heading scrolls away; only the content panels pin. */
@media (min-width: 769px) {
  .category-split-section > .container {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .fullwidth-stack-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 24px;
    z-index: calc(10 + var(--panel-index, 1));
    background: #ffffff;
    box-shadow: none;
  }

  .fullwidth-stack-panel + .fullwidth-stack-panel {
    margin-top: 0;
  }
}
