/* ============================================================
   ACLEIA — Main Stylesheet
   Structure:
    1.  Fonts
    2.  Variables
    3.  Reset & Base
    4.  Global Background
    5.  Top Header
    6.  Navbar
    7.  Footer
    8.  Page Header (shared)
    9.  Breadcrumb (shared)
    10. Home — Hero
    11. Home — Collections
    12. Home — Experience & How It Works
    13. Home — Testimonial Carousel
    14. Rent — Filter Bar
    15. Rent — Product Grid & Card
    16. Rent — Pagination
    17. Collections Page
    18. Product Detail Page
    19. About Page
    20. FAQ Page
    21. Animations
    22. Media Queries
   ============================================================ */


/* ─── 1. FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400&display=swap');

/* Fry's Baskerville — self-hosted, used for the logo only */
@font-face {
  font-family: 'Frys Baskerville';
  src: url('../assets/fonts/FrysBaskerville.woff2') format('woff2'),
       url('../assets/fonts/FrysBaskerville.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ─── 2. VARIABLES ──────────────────────────────────────── */
:root {
  /* ── Core Palette ── */
  --pink:         #edc9d1;              /* dusty pink — primary brand & bg     */
  --pink-d:       #ddb0bc;             /* deeper pink — hover, card bg         */
  --pink-l:       #f8eef1;             /* lightest pink — subtle section bg    */
  --olive:        #778b40;             /* olive green — accent & secondary     */
  --olive-d:      #5a6b30;             /* darker olive — hover states          */
  --brown:        #4B342F;             /* dark brown — primary text            */
  --brown-d:      #2e1f1b;             /* deepest brown — footer, header strip */

  /* ── Semantic Aliases ── */
  --cream:        var(--pink-l);
  --cream-d:      var(--pink-d);
  --text:         var(--brown);
  --muted:        rgba(75, 52, 47, 0.55);
  --border:       rgba(75, 52, 47, 0.15);
  --white:        #fdf9fa;

  /* ── Typography ── */
  --font-logo:    'Frys Baskerville', 'Cormorant Garamond', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Montserrat', sans-serif;
}


/* ─── 3. RESET & BASE ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0.02em;
  position: relative;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }

img { display: block; width: 100%; object-fit: cover; }

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

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

ul { list-style: none; }


/* ─── 4. GLOBAL BACKGROUND ──────────────────────────────── */
.global-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/images/store_sample.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}


/* ─── 5. TOP HEADER ─────────────────────────────────────── */
.top-header,
.welcome-bar {
  background-color: var(--olive);
  color: var(--pink-l);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 7px;
  text-transform: uppercase;
}


/* ─── 6. NAVBAR ─────────────────────────────────────────── */
.navbar {
  background-color: var(--pink);
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Nav inner layout */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0;
}

/* Logo */
.nav-logo {
  font-family: var(--font-logo);
  font-size: 52px;
  font-weight: 400;
  font-style: normal;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-logo img {
  height: 70px;      
  width: auto;       
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links li a,
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links li a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--brown);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links a:hover::after { width: 100%; }

.nav-links a:hover { color: var(--olive); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Side panel */
.nav-panel {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100vh;
  background: var(--pink);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 72px 36px 48px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0, 0, 1);
}

.nav-panel.open { transform: translateX(0); }

.nav-panel-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.1rem;
  color: var(--brown);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav-panel-close:hover { opacity: 1; }

.nav-panel-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav-panel-links li a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.nav-panel-links li a:hover { opacity: 0.6; }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 31, 27, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.open { opacity: 1; pointer-events: all; }


/* ─── 7. FOOTER ─────────────────────────────────────────── */
footer {
  background-color: var(--pink);
  padding: 60px 60px 0;
  font-family: var(--font-sans);
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .brand-logo {
  font-family: var(--font-logo);
  font-size: 36px;
  font-weight: 400;
  color: var(--olive);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;      
  width: auto;      
  display: block;
}

.footer-brand .brand-tagline {
  font-size: 10px;
  font-weight: 300;
  color: var(--brown-d);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 11px;
  font-weight: 300;
  color: var(--brown-d);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--pink-l); }

.footer-divider {
  height: 0.5px;
  background: rgba(237, 201, 209, 0.2);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 10px;
  color: var(--brown-d);
  letter-spacing: 0.1em;
}


/* ─── 8. PAGE HEADER (shared) ───────────────────────────── */
.page-header {
  text-align: center;
  padding: 52px 24px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
}


/* ─── 9. BREADCRUMB (shared) ────────────────────────────── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--olive); }

.breadcrumb-sep { opacity: 0.5; }


/* ─── 10. HOME — HERO ───────────────────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-content { height: 100%; }

.hero-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─── 11. HOME — COLLECTIONS ────────────────────────────── */
.collections {
  background-color: var(--white);
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.collections h2 {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.collection-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 1s ease-in;
}

.collection-card:hover { transform: scale(1.03); }

.collection-card p {
  margin-top: 8px;
  padding-left: 6px;
  font-size: 13px;
  letter-spacing: 0.05em;
}


/* ─── 12. HOME — EXPERIENCE & HOW IT WORKS ─────────────── */
/*
  Uses height: 150vh with flex layout so the top and bottom
  bars are pinned, leaving a visible gap that reveals the
  parallax background image behind.
*/
.experience {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150vh;
  z-index: 2;
}

.experience-top,
.experience-bottom { width: 100%; }

.experience-bar {
  width: 100%;
  padding: 70px 0;
  background: var(--pink-l);
}

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

.experience h2 {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 11px;
  color: var(--brown);
  line-height: 1.7;
  max-width: 160px;
  margin: 0 auto;
  opacity: 0.65;
}


/* ─── 13. HOME — TESTIMONIAL CAROUSEL ──────────────────── */
.carousel {
  max-width: 600px;
  margin: 0 auto;
  min-height: 120px;
}

.carousel-slide { display: none; }

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.carousel-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 16px;
}

.carousel-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  padding: 0;
  transition: background 0.3s;
}

.dot.active { background: var(--olive); }

.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.arrow-btn {
  border: 1px solid var(--border);
  color: var(--brown);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.2s;
}

.arrow-btn:hover { background: rgba(75, 52, 47, 0.08); }


/* ─── 14. RENT — FILTER BAR ─────────────────────────────── */
.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.filter-select-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

.filter-select {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 28px 7px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234B342F'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--olive);
  color: var(--text);
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.product-count {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}


/* ─── 15. RENT — PRODUCT GRID & CARD ────────────────────── */
.grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 48px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  cursor: pointer;
  display: block;
  color: inherit;
  animation: fadeUp 0.5s ease both;
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-d);
}

.card-image-wrap img {
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}

.product-card:hover .card-image-wrap img { transform: scale(1.06); }

.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(75, 52, 47, 0.85);
  color: var(--pink-l);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.card-info { padding: 14px 4px 0; }

.card-boutique {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.card-price {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-price span {
  color: var(--olive);
  font-weight: 500;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
}


/* ─── 16. RENT — PAGINATION ─────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0 56px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.pag-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.pag-btn:hover {
  border-color: var(--border);
  color: var(--olive);
}

.pag-btn.active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

.pag-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pag-arrow { font-size: 1rem; color: var(--muted); }


/* ─── 17. COLLECTIONS PAGE ──────────────────────────────── */
.col-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

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

.col-card {
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
}

.col-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-d);
  border-radius: 5px;
}

.col-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0, 1);
}

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

.col-card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px 0;
}

.col-card-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.col-card-arrow {
  font-size: 0.78rem;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.col-card:hover .col-card-arrow {
  transform: translateX(4px);
  color: var(--olive);
}


/* ─── 18. PRODUCT DETAIL PAGE ───────────────────────────── */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-d);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

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

.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--olive); }

/* Product info panel */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-boutique {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}

.product-price {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-price span {
  color: var(--olive);
  font-weight: 500;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Size & duration buttons */
.size-buttons,
.duration-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn,
.duration-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  cursor: pointer;
}

.size-btn:hover,
.duration-btn:hover,
.size-btn.active,
.duration-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

/* Size table */
.size-table-wrap { overflow-x: auto; }

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
  min-width: 320px;
}

.size-table th {
  background: var(--olive);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  font-weight: 400;
  text-align: left;
}

.size-table td {
  padding: 7px 12px;
  border-bottom: 1px solid var(--cream-d);
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.size-table tr:last-child td { border-bottom: none; }

.size-table tbody tr.highlighted td {
  background: rgba(119, 139, 64, 0.08);
  color: var(--text);
}

/* Description */
.product-description {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Contact button */
.contact-btn {
  display: block;
  background: var(--olive);
  color: var(--white);
  text-align: center;
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s;
  margin-top: 8px;
}

.contact-btn:hover { background: var(--olive-d); }

/* Social links */
.social-links {
  display: flex;
  gap: 20px;
  padding-top: 4px;
}

.social-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.social-links a:hover { color: var(--olive); }
.social-links a:hover::after { transform: scaleX(1); }


/* ─── 19. ABOUT PAGE ────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 100vh;
  background-image: url("");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 31, 27, 0.52);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 720px;
}

.about-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 0.88rem;
  color: rgba(248, 238, 241, 0.9);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* Values */
.values-section {
  background: var(--pink);
  padding: 88px 40px;
  text-align: center;
}

.values-section h2 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--olive);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--olive);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.value-item p {
  font-size: 0.78rem;
  color: var(--brown);
  line-height: 1.85;
  max-width: 220px;
  margin: 0 auto;
  opacity: 0.75;
}

/* About CTA */
.about-cta {
  background: var(--cream);
  text-align: center;
  padding: 88px 24px;
}

.about-cta h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.about-cta p {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.about-cta-btn {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.about-cta-btn:hover { background: var(--olive-d); }


/* ─── 20. FAQ PAGE ──────────────────────────────────────── */
.faq-header {
  text-align: center;
  padding: 64px 24px 40px;
  background: var(--white);
}

.faq-header h1 {
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.faq-header p {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--pink-l);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
}

.faq-question:hover,
.faq-item.open .faq-question { background: rgba(75, 52, 47, 0.06); }

.faq-icon {
  font-size: 1rem;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--brown-d);
  border-top: 1px solid rgba(75, 52, 47, 0.1);
  padding-top: 14px;
}

/* FAQ CTA */
.faq-cta {
  background: var(--pink-l);
  text-align: center;
  padding: 72px 24px;
}

.faq-cta h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--olive);
  margin-bottom: 10px;
}

.faq-cta p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.faq-cta-btn {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.faq-cta-btn:hover { background: var(--olive-d); }


/* ─── 21. ANIMATIONS ────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ─── 22. MEDIA QUERIES ─────────────────────────────────── */

/* ── Navbar mobile ── */
@media (max-width: 768px) {
  .navbar {
    position: relative;
    flex-direction: row;
    justify-content: center;
    padding: 16px 20px;
  }

  .nav-logo { font-size: 36px; margin-bottom: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Footer ── */
@media (max-width: 900px) {
  footer { padding: 48px 40px 0; }

  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 32px;
    border-bottom: 0.5px solid rgba(237, 201, 209, 0.15);
    margin-bottom: 8px;
  }
}

@media (max-width: 580px) {
  footer { padding: 40px 24px 0; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }

  .footer-brand {
    grid-column: 1;
    padding-bottom: 28px;
    border-bottom: 0.5px solid rgba(237, 201, 209, 0.15);
  }
}

/* ── Collections (Home) ── */
@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .collection-card img {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .collections {
    padding: 56px 0;
  }

  .collections h2 {
    font-size: 1.3rem;
  }

  .collection-card p {
    font-size: 11px;
  }
}


/* ── Rent / Product Grid ── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ── Collections Page ── */
@media (max-width: 768px) {
  .col-section { padding: 28px 16px 60px; }
  .col-grid { gap: 20px; }
  .col-card-label { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .col-grid { grid-template-columns: 1fr; gap: 24px; }
  .col-card-image { aspect-ratio: 4 / 3; }
}

/* ── Product Detail ── */
@media (max-width: 900px) {
  .breadcrumb { padding: 16px 24px 0; }
  .product-detail { gap: 36px; padding: 24px 24px 60px; }
  .product-name { font-size: 1.85rem; }
}

@media (max-width: 768px) {
  .breadcrumb { padding: 14px 16px 0; font-size: 0.62rem; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; padding: 16px 16px 60px; }
  .gallery { position: static; }
  .gallery-main { aspect-ratio: 4 / 3; }
  .gallery-thumb { width: 56px; }
  .product-name { font-size: 1.6rem; }
  .size-table { font-size: 0.65rem; }
  .size-table th, .size-table td { padding: 6px 8px; }
  .size-btn, .duration-btn { padding: 9px 16px; font-size: 0.7rem; }
  .contact-btn { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .product-detail { padding: 12px 14px 48px; }
  .gallery-main { aspect-ratio: 1 / 1; }
  .gallery-thumb { width: 48px; }
  .product-name { font-size: 1.4rem; }
  .product-info { gap: 16px; }
  .social-links { gap: 14px; }
}

/* ── About Page ── */
@media (max-width: 900px) {
  .about-hero-content h1 { font-size: 2.6rem; }
  .values-section { padding: 72px 32px; }
  .values-section h2 { font-size: 2rem; margin-bottom: 40px; }
  .about-cta { padding: 72px 24px; }
  .about-cta h2 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .about-hero { height: 80vh; }
  .about-hero-content h1 { font-size: 2.2rem; }
  .about-hero-content p { font-size: 0.8rem; }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .value-item p { max-width: 100%; }
  .values-section { padding: 60px 24px; }
  .about-cta { padding: 60px 20px; }
  .about-cta h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .about-hero { height: 70vh; }
  .about-hero-content h1 { font-size: 1.9rem; }
  .values-section h2 { font-size: 1.8rem; }
  .value-item h3 { font-size: 1.15rem; }
  .about-cta h2 { font-size: 1.5rem; }
  .about-cta-btn { padding: 13px 28px; }
}

/* ── FAQ Page ── */
@media (max-width: 900px) {
  .faq-header { padding: 48px 24px 32px; }
  .faq-header h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .faq-header { padding: 40px 20px 28px; }
  .faq-header h1 { font-size: 1.9rem; }
  .faq-section { padding: 0 16px 56px; }
  .faq-question { font-size: 0.82rem; padding: 16px; }
  .faq-answer { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 16px; }
  .faq-cta { padding: 56px 20px; }
  .faq-cta h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .faq-header h1 { font-size: 1.6rem; }
  .faq-question { font-size: 0.78rem; }
  .faq-cta h2 { font-size: 1.5rem; }
  .faq-cta-btn { padding: 13px 28px; }
}

/* ── Experience (Home) ── */
@media (max-width: 768px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience { height: auto; }
}