/* =========================================
   KRAFIKNOT STUDIO — DARK THEME
   Colors from Logo:
   · Deep Black   #0D0E12
   · Steel Blue   #6B8FA8
   · Warm Cream   #EDE5D4
   ========================================= */

:root {
  /* === DARK BACKGROUNDS === */
  --bg-base:      #0D0E12;
  --bg-raised:    #13151B;
  --bg-card:      #191C24;
  --bg-surface:   #1F2230;
  --bg-hover:     #252A38;

  /* === BRAND COLORS (from logo) === */
  --blue:         #6B8FA8;
  --blue-light:   #8AAFC6;
  --blue-dim:     #4A6880;
  --blue-glow:    rgba(107,143,168,0.25);

  --cream:        #EDE5D4;
  --cream-dim:    #C8BFA8;
  --cream-muted:  #8A8070;

  /* === TEXT === */
  --text-primary: #EDE5D4;
  --text-muted:   #8A8A96;
  --text-faint:   #55555F;

  /* === BORDERS === */
  --border:       #252A38;
  --border-light: #323848;
  --border-blue:  rgba(107,143,168,0.3);

  /* === INSTAGRAM === */
  --ig-grad: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

  /* === SHADOWS === */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --glow-blue:  0 0 30px rgba(107,143,168,0.2);

  /* === MISC === */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:    76px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: 'Jost', sans-serif; font-size: 0.95rem; }
::selection { background: var(--blue); color: var(--cream); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }

/* ===== OVERLAY ===== */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(13,14,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.5rem;
}

/* Logo image */
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 54px; width: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-dim);
  transition: var(--transition);
  box-shadow: 0 0 16px rgba(107,143,168,0.2);
}
.logo:hover .logo-img {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(107,143,168,0.4);
  transform: scale(1.05);
}

/* Nav */
.nav {
  display: flex; align-items: center; gap: 0.25rem;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1.5px; background: var(--blue);
  transition: var(--transition);
}
.nav-link:hover { color: var(--cream); }
.nav-link.active { color: var(--blue-light); }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }
.nav-close { display: none; }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: 0.75rem;
  margin-left: auto;
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--blue-dim); color: var(--blue-light); background: var(--bg-surface); }

/* Instagram DM button in header */
.header-ig-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--ig-grad);
  color: #fff; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(220,39,67,0.3);
}
.header-ig-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220,39,67,0.45); }

/* Search Bar */
.search-bar {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem 1rem;
  display: flex; align-items: center; gap: 1rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.search-bar.open { max-height: 80px; }
.search-bar input {
  flex: 1; padding: 0.75rem 1.25rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem; color: var(--text-primary);
  outline: none; transition: var(--transition);
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar input:focus { border-color: var(--blue); background: var(--bg-raised); }
#searchClose {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-surface);
  color: var(--text-muted); font-size: 0.85rem; transition: var(--transition);
}
#searchClose:hover { background: var(--bg-hover); color: var(--cream); }

/* Mobile Menu */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; width: 36px; padding: 4px;
}
.mobile-menu-btn span { display: block; height: 1.5px; background: var(--cream); transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}

.btn-primary {
  background: var(--blue); color: var(--bg-base);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,143,168,0.4);
}

.btn-outline {
  border: 1.5px solid var(--blue-dim); color: var(--blue-light);
}
.btn-outline:hover {
  background: var(--blue-dim); color: var(--cream);
  transform: translateY(-2px);
}

.btn-hero {
  background: var(--blue); color: var(--bg-base);
  font-size: 0.9rem; padding: 1rem 2.5rem;
  font-weight: 600;
}
.btn-hero:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(107,143,168,0.45);
}

.btn-ig-dm {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(107,143,168,0.12);
  color: var(--cream);
  border: 1.5px solid rgba(107,143,168,0.35);
  font-size: 0.9rem; padding: 1rem 2rem;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.btn-ig-dm:hover {
  background: var(--ig-grad); border-color: transparent;
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(220,39,67,0.4);
}

.btn-dm {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--ig-grad); color: #fff;
  padding: 0.55rem 1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 3px 10px rgba(220,39,67,0.3);
  text-transform: none;
}
.btn-dm:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(220,39,67,0.5); }

.btn-primary-ig {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ig-grad); color: #fff;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(220,39,67,0.3);
}
.btn-primary-ig:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(220,39,67,0.5); }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
  color: var(--cream); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--blue-light); }
.section-subtitle { font-size: 0.95rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: hero-zoom 8s ease-out forwards; }
@keyframes hero-zoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,14,18,0.88) 0%,
    rgba(13,14,18,0.65) 50%,
    rgba(13,14,18,0.4) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 2rem 3rem;
  animation: fade-up 1s 0.3s both;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-tagline::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--blue);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 1.5rem; max-width: 820px;
}
.hero-headline em { font-style: italic; color: var(--blue-light); font-weight: 400; }

.hero-sub {
  font-size: 1.05rem; color: rgba(237,229,212,0.65);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--blue-light); line-height: 1;
}
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.hero-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  animation: fade-up 1s 1s both;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--blue-dim), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.3} }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem; text-align: center;
}
.announcement-bar p { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--text-muted); }
.announcement-bar a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; }

/* ===== HOW TO ORDER ===== */
.how-to-order {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.hto-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hto-step {
  text-align: center; max-width: 190px; padding: 1.75rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  flex: 1; min-width: 150px; transition: var(--transition);
}
.hto-step:hover { transform: translateY(-5px); border-color: var(--blue-dim); box-shadow: var(--glow-blue); }
.hto-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.hto-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--cream);
}
.hto-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.hto-arrow { font-size: 1.2rem; color: var(--blue-dim); flex-shrink: 0; }

/* ===== COLLECTIONS ===== */
.collections { background: var(--bg-base); }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.collection-card {
  cursor: pointer; border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.collection-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-dim);
  box-shadow: var(--shadow-md), var(--glow-blue);
}
.collection-img-wrap { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.collection-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); filter: brightness(0.85); }
.collection-card:hover .collection-img-wrap img { transform: scale(1.08); filter: brightness(0.95); }
.collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,14,18,0.85), transparent 55%);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: var(--transition);
}
.collection-card:hover .collection-overlay { opacity: 1; }
.collection-overlay span { color: var(--blue-light); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.collection-info { padding: 1.25rem; }
.collection-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 0.4rem; line-height: 1.3; color: var(--cream); }
.collection-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ===== SHOP ===== */
.shop { background: var(--bg-raised); }

.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: var(--bg-base); border-color: var(--blue); font-weight: 600; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--blue-dim);
  box-shadow: var(--shadow-md), var(--glow-blue);
  transform: translateY(-5px);
}
.product-card.hidden { display: none; }

.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); filter: brightness(0.88); }
.product-card:hover .product-img { transform: scale(1.06); filter: brightness(1); }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue); color: var(--bg-base);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.product-badge.new-badge { background: var(--cream); color: var(--bg-base); }

.product-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 0.4rem; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; line-height: 1.3; margin-bottom: 0.5rem; color: var(--cream); }
.product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.75rem; }
.price-current { font-size: 1.1rem; font-weight: 600; color: var(--blue-light); }

/* Shop CTA */
.shop-cta {
  margin-top: 4rem; text-align: center; padding: 3rem;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-blue);
  box-shadow: var(--glow-blue);
}
.shop-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }

/* ===== INSTAGRAM SECTION ===== */
.instagram-section { background: var(--bg-base); }

/* Profile Card */
.ig-profile-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--glow-blue);
}
.ig-profile-left { display: flex; align-items: center; gap: 2rem; flex: 1; }
.ig-profile-avatar {
  width: 90px; height: 90px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 3px solid transparent;
  background: var(--ig-grad);
  padding: 3px;
  box-shadow: 0 0 0 3px var(--bg-card);
}
.ig-profile-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.ig-profile-name { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.2rem; }
.ig-profile-name h3 { font-size: 1.2rem; font-weight: 600; color: var(--cream); }
.ig-verified-badge {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ig-grad); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.ig-profile-fullname { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.ig-profile-bio { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.6; margin-bottom: 1rem; }
.ig-profile-stats { display: flex; gap: 2rem; }
.ig-stat { display: flex; flex-direction: column; align-items: center; }
.ig-stat strong { font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.ig-stat span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.ig-profile-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ig-btn-follow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--ig-grad); color: #fff;
  border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(220,39,67,0.3);
}
.ig-btn-follow:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220,39,67,0.5); }
.ig-btn-msg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--bg-surface); color: var(--cream);
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  transition: var(--transition);
}
.ig-btn-msg:hover { border-color: var(--blue); color: var(--blue-light); }

/* Post Grid (3x3) */
.ig-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.ig-post {
  aspect-ratio: 1; overflow: hidden;
  position: relative; display: block;
  background: var(--bg-card);
}
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.82); }
.ig-post:hover img { transform: scale(1.06); filter: brightness(1); }
.ig-post-overlay {
  position: absolute; inset: 0;
  background: rgba(13,14,18,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post-overlay span {
  color: #fff; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* 9th tile — "View all" */
.ig-post-more {
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
  border: 1px solid var(--border-blue);
}
.ig-post-more-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem; text-align: center;
  color: var(--blue-light);
}
.ig-post-more-inner p { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.ig-post-more-inner span { font-size: 0.75rem; color: var(--text-muted); }
.ig-post-more:hover { background: var(--bg-hover); }
.ig-post-more:hover .ig-post-more-inner { color: var(--blue-light); }

.ig-cta { display: flex; justify-content: center; }

/* ===== ABOUT ===== */
.about { background: var(--bg-raised); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-media { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; border: 1px solid var(--border); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.about-img-accent { position: absolute; bottom: -2rem; right: -2rem; width: 45%; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 3px solid var(--bg-raised); aspect-ratio: 1; }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-years { position: absolute; top: 2rem; left: -1.5rem; background: var(--blue); color: var(--bg-base); padding: 1rem 1.25rem; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-md); }
.years-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; line-height: 1; }
.years-label { display: block; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.about-text .section-title { text-align: left; }
.about-lead { font-size: 1.1rem; color: var(--cream); font-weight: 400; line-height: 1.75; margin-bottom: 1.25rem; }
.about-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.value-item { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1.1rem; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.value-item:hover { border-color: var(--blue-dim); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item div { display: flex; flex-direction: column; }
.value-item strong { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.value-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--blue-dim); transform: translateY(-4px); box-shadow: var(--glow-blue); }
.testimonial-card.featured-testimonial { background: var(--blue); border-color: var(--blue); }
.testimonial-card.featured-testimonial p { color: rgba(13,14,18,0.85); }
.testimonial-card.featured-testimonial .testimonial-author strong { color: var(--bg-base); }
.testimonial-card.featured-testimonial .testimonial-author span { color: rgba(13,14,18,0.6); }
.stars { color: var(--blue-light); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.featured-testimonial .stars { color: var(--bg-base); opacity: 0.7; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-dim); color: var(--cream); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { color: var(--cream); font-size: 0.9rem; }
.testimonial-author span { color: var(--text-faint); font-size: 0.78rem; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-raised); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-info > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.contact-icon { font-size: 1.2rem; }
.contact-item a { color: var(--blue-light); font-weight: 500; }
.contact-item a:hover { color: var(--cream); }

/* Instagram Chat Card */
.contact-ig-preview { display: flex; align-items: stretch; }
.ig-card { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; width: 100%; border: 1px solid var(--border-blue); }
.ig-card-header { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: var(--ig-grad); color: #fff; }
.ig-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.ig-card-header div { display: flex; flex-direction: column; }
.ig-card-header strong { font-size: 0.95rem; }
.ig-card-header span { font-size: 0.72rem; opacity: 0.8; }
.ig-messages { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; background: var(--bg-base); min-height: 220px; }
.ig-msg { max-width: 85%; padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.85rem; line-height: 1.5; }
.ig-msg-them { background: var(--bg-surface); border: 1px solid var(--border); color: var(--text-primary); align-self: flex-start; border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px; }
.ig-msg-us { background: var(--ig-grad); color: #fff; align-self: flex-end; border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md); }
.ig-start-chat { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 1.5rem; background: var(--ig-grad); color: #fff; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em; transition: var(--transition); }
.ig-start-chat:hover { opacity: 0.9; }

/* ===== FOOTER ===== */
.footer-newsletter { background: var(--bg-card); border-top: 1px solid var(--border); padding: 4rem 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.newsletter-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--cream); margin-bottom: 0.4rem; }
.newsletter-text p { font-size: 0.9rem; color: var(--text-muted); }
.newsletter-form { display: flex; gap: 0.75rem; flex: 1; max-width: 500px; }
.newsletter-form input { flex: 1; padding: 0.85rem 1.25rem; background: var(--bg-surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--cream); font-size: 0.9rem; outline: none; transition: var(--transition); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form .btn-primary { flex-shrink: 0; }

.footer-main { background: var(--bg-base); border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-img { height: 52px; width: 52px; }
.footer-brand > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.social-link:hover { background: var(--ig-grad); color: #fff; border-color: transparent; }
.footer-col h4 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }
.footer-ig-handle a { color: var(--blue); font-weight: 500; }
.footer-ig-handle a:hover { color: var(--blue-light); }
.footer-credit { font-size: 0.75rem; color: var(--text-faint); width: 100%; text-align: center; margin-top: 0.5rem; letter-spacing: 0.03em; }
.footer-credit span { color: var(--blue-light); font-weight: 600; }
.footer-credit span a { color: var(--blue-light); font-weight: 600; text-decoration: none; transition: var(--transition); }
.footer-credit span a:hover { color: #fff; text-shadow: 0 0 8px var(--blue-light); }


/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--bg-surface); color: var(--cream);
  padding: 0.9rem 1.5rem; border-radius: var(--radius-md);
  font-size: 0.88rem; box-shadow: var(--shadow-lg);
  z-index: 600; transform: translateY(100px); opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none; max-width: 320px;
  border-left: 3px solid var(--blue);
  border: 1px solid var(--border-blue);
  border-left: 3px solid var(--blue);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* === HEADER === */
  .header-inner { padding: 0 1.25rem; gap: 0.75rem; }
  .logo-img { height: 44px; width: 44px; }
  .nav {
    position: fixed; inset: 0;
    background: var(--bg-base); z-index: 350;
    flex-direction: column; justify-content: center; gap: 0.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 2rem; border-right: 1px solid var(--border);
  }
  .nav.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.5rem; text-transform: none; letter-spacing: 0;
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    padding: 0.75rem 1rem; width: 100%; color: var(--cream);
  }
  .nav-link::after { display: none; }
  .nav-close {
    display: flex; position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-surface); color: var(--text-muted);
    font-size: 1rem; align-items: center; justify-content: center;
    border: 1px solid var(--border);
  }
  .mobile-menu-btn { display: flex; }
  .header-ig-btn span { display: none; }
  .header-ig-btn { padding: 0.5rem 0.65rem; }
  .header-actions { gap: 0.5rem; }

  /* === SEARCH BAR MOBILE FIX === */
  .search-bar {
    padding: 0 1.25rem;
    max-width: 100%;
  }
  .search-bar.open {
    padding: 0 1.25rem 1rem;
    max-height: 80px;
  }
  .search-bar input {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    width: 100%;
  }

  /* === HERO === */
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-content { padding: calc(var(--header-h) + 2rem) 1.25rem 2.5rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-actions { gap: 0.75rem; }

  /* === HOW TO ORDER === */
  .hto-arrow { display: none; }
  .hto-step { min-width: 140px; }

  /* === GRIDS === */
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* === FOOTER === */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
  .footer-credit { margin-top: 0.25rem; }

  /* === NEWSLETTER === */
  .newsletter-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .newsletter-form { flex-direction: column; width: 100%; gap: 0.75rem; }
  .newsletter-form input { width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* === SECTION HEADER === */
  .section-header { margin-bottom: 2.5rem; }

  /* === CONTACT === */
  .contact-ig-preview { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* === HEADER === */
  .header-inner { padding: 0 1rem; }
  .logo-img { height: 40px; width: 40px; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 16px; height: 16px; }

  /* === SEARCH BAR === */
  .search-bar { padding: 0 1rem; }
  .search-bar.open { padding: 0 1rem 0.75rem; }

  /* === HERO === */
  .hero-headline { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-content { padding: calc(var(--header-h) + 1.5rem) 1rem 2rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .btn-hero, .btn-ig-dm { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat { min-width: 80px; }

  /* === GRIDS === */
  .collections-grid { grid-template-columns: 1fr; gap: 1rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  /* === PRODUCTS === */
  .product-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-dm { width: 100%; justify-content: center; }

  /* === ABOUT === */
  .about-badges { flex-wrap: wrap; gap: 0.5rem; }

  /* === HTO === */
  .hto-steps { gap: 1rem; }
  .hto-step { min-width: 120px; padding: 1.25rem 1rem; }

  /* === SECTION TITLES === */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* === FOOTER === */
  .footer-bottom p { font-size: 0.72rem; }

  /* === TOAST === */
  .toast { right: 1rem; left: 1rem; max-width: unset; }
}

@media (max-width: 360px) {
  .hero-headline { font-size: 1.75rem; }
  .hero-tagline { font-size: 0.68rem; }
  .header-actions { gap: 0.35rem; }
  .header-ig-btn { display: none; }
}
