/*
Theme Name: Luxe Fashion
Theme URI: https://yoursite.com
Author: Your Name
Author URI: https://yoursite.com
Description: A sophisticated light-themed fashion WordPress theme with elegant editorial aesthetics, featuring home, shop, about, and contact pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxe-fashion
Tags: fashion, light, elegant, one-column, two-columns, custom-menu, featured-images, custom-logo
*/

/* =============================================
   CSS VARIABLES & ROOT
============================================= */
:root {
  --cream:         #FAF7F2;
  --white:         #FFFFFF;
  --warm-gray:     #F2EDE6;
  --light-tan:     #E8DED2;
  --rose-gold:     #C9A882;
  --rose-deep:     #A07850;
  --charcoal:      #2C2C2C;
  --text-dark:     #1A1A1A;
  --text-mid:      #555555;
  --text-light:    #888888;
  --border:        #E0D8CF;
  --shadow-soft:   0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:  0 8px 40px rgba(0,0,0,0.10);
  --radius:        2px;
  --transition:    all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:     'Jost', 'Gill Sans', 'Trebuchet MS', sans-serif;
  --font-accent:   'Montserrat', 'Futura', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: var(--font-body);
  border: none;
  outline: none;
  appearance: none;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: block;
  margin-bottom: 1rem;
}

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--large {
  padding: 9rem 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--text-dark);
  color: var(--white);
  border: 1.5px solid var(--text-dark);
}

.btn--primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn--outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--white);
}

.btn--light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* =============================================
   IMAGE PLACEHOLDER STYLES
============================================= */
.img-placeholder {
  background: linear-gradient(135deg, var(--warm-gray) 0%, var(--light-tan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(201,168,130,0.08) 20px,
    rgba(201,168,130,0.08) 21px
  );
}

.img-placeholder__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  border: 1px solid var(--rose-gold);
  border-radius: var(--radius);
}

/* =============================================
   TOP BAR
============================================= */
.topbar {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 0;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar a { color: var(--rose-gold); }
.topbar a:hover { color: var(--white); }

/* =============================================
   HEADER / NAVIGATION
============================================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-logo__text span {
  color: var(--rose-gold);
}

.site-logo__tagline {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose-gold);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--text-dark);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
  width: 100%;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.header-icon-btn:hover { color: var(--rose-gold); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
}

.hero__title {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.hero__image-wrap .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 92vh;
}

.hero__badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  text-align: center;
  min-width: 130px;
}

.hero__badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose-deep);
  line-height: 1;
}

.hero__badge-text {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  background: var(--text-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}

/* =============================================
   FEATURED CATEGORIES
============================================= */
.categories {
  background: var(--white);
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-top: 0.5rem;
}

.section-header p {
  max-width: 500px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.cat-card:first-child {
  grid-row: 1 / 3;
}

.cat-card .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .img-placeholder {
  transform: scale(1.04);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, transparent 55%);
  transition: var(--transition);
}

.cat-card:hover .cat-card__overlay {
  background: linear-gradient(to top, rgba(26,26,26,0.65) 0%, transparent 55%);
}

.cat-card__label {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  color: var(--white);
}

.cat-card__label h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cat-card__label span {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cat-card:hover .cat-card__label span {
  color: var(--rose-gold);
  gap: 0.75rem;
}

.cat-card__label span::after {
  content: '→';
}

/* =============================================
   FEATURED PRODUCTS
============================================= */
.featured-products {
  background: var(--cream);
  padding: 7rem 0;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-card__img .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__img .img-placeholder {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rose-gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.product-card__wish {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  color: var(--text-light);
  opacity: 0;
}

.product-card:hover .product-card__wish {
  opacity: 1;
}

.product-card__wish:hover {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

.product-card__add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.85rem;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  border: none;
  width: 100%;
}

.product-card:hover .product-card__add {
  transform: translateY(0);
}

.product-card__add:hover {
  background: var(--rose-deep);
}

.product-card__info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-card__brand {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-card__price .price {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-card__price .price--old {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}

/* =============================================
   LOOKBOOK / SPLIT SECTION
============================================= */
.lookbook {
  background: var(--warm-gray);
  padding: 0;
  overflow: hidden;
}

.lookbook__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.lookbook__image .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.lookbook__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
}

.lookbook__content h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.lookbook__content p {
  margin-bottom: 2rem;
  max-width: 420px;
}

.lookbook__features {
  margin-bottom: 2.5rem;
}

.lookbook__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.lookbook__feature:last-child { border-bottom: none; }

.lookbook__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

.lookbook__feature-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.lookbook__feature-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  background: var(--white);
  padding: 7rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-gold);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar .img-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-card__stars {
  color: var(--rose-gold);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

/* =============================================
   INSTAGRAM / GALLERY STRIP
============================================= */
.instagram-strip {
  background: var(--cream);
  padding: 6rem 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

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

.insta-item .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.insta-item:hover .img-placeholder {
  transform: scale(1.08);
}

.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,130,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-item__overlay {
  opacity: 1;
}

.insta-item__overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

.instagram-strip__handle {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.instagram-strip__handle a:hover {
  color: var(--rose-gold);
}

/* =============================================
   NEWSLETTER
============================================= */
.newsletter {
  background: var(--text-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,130,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.newsletter__text h2 {
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter__text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form__row {
  display: flex;
  gap: 0;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  border-color: var(--rose-gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-form__submit {
  background: var(--rose-gold);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form__submit:hover {
  background: var(--rose-deep);
}

.newsletter-form__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #111111;
  color: var(--white);
  padding-top: 5rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .site-logo__text {
  color: var(--white);
  font-size: 1.6rem;
}

.footer__brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.footer__social-btn:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--rose-gold);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer__bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-radius: 2px;
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(201,168,130,0.04) 30px,
    rgba(201,168,130,0.04) 31px
  );
}

.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 0.5rem; margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.breadcrumb a { color: var(--rose-gold); }
.breadcrumb span { opacity: 0.4; }

/* =============================================
   SHOP PAGE
============================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 5rem 0;
}

.shop-sidebar__section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.shop-sidebar__section:last-child {
  border-bottom: none;
}

.shop-sidebar__title {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: var(--transition);
  padding: 0.25rem 0;
}

.sidebar-filter-item:hover { color: var(--rose-deep); }

.sidebar-filter-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.sidebar-filter-item input[type="checkbox"]:checked {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.sidebar-filter-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -1px;
  left: 1px;
  color: var(--white);
  font-size: 10px;
}

.color-swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch:hover, .color-swatch.active {
  border-color: var(--text-dark);
  transform: scale(1.1);
}

.price-range-slider {
  width: 100%;
  margin-top: 1rem;
}

.price-range-slider input {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  background: linear-gradient(to right, var(--rose-gold) 0%, var(--rose-gold) 60%, var(--border) 60%);
  outline: none;
  cursor: pointer;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.shop-count {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-sort label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.shop-sort select {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  appearance: none;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition);
}

.view-btn.active, .view-btn:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.page-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-mid);
}

.page-num:hover, .page-num.active {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-intro {
  background: var(--white);
  padding: 7rem 0;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-intro__image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
}

.about-intro__content h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
}

.about-intro__content p {
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  line-height: 1.9;
}

.about-intro__content p:last-of-type {
  margin-bottom: 2.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--cream);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.team-section {
  background: var(--white);
  padding: 7rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

.team-card__img .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.team-card:hover .team-card__img .img-placeholder {
  box-shadow: var(--shadow-hover);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

.values-section {
  background: var(--warm-gray);
  padding: 7rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section {
  background: var(--white);
  padding: 7rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__content strong {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail__content span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.contact-social-btn:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  background: rgba(201,168,130,0.05);
}

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3rem;
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.form-group label span {
  color: var(--rose-gold);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(201,168,130,0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
  font-size: 0.85rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit {
  width: 100%;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--rose-deep);
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.form-message.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  display: block;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  display: block;
}

/* =============================================
   MAP SECTION
============================================= */
.map-section {
  background: var(--warm-gray);
  padding: 0;
}

.map-section iframe,
.map-placeholder {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-placeholder {
  background: var(--light-tan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-placeholder span:first-child {
  font-size: 2.5rem;
  opacity: 0.4;
}

.map-placeholder span:last-child {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =============================================
   FLOATING ELEMENTS & ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.animate-up:nth-child(1) { animation-delay: 0.1s; }
.animate-up:nth-child(2) { animation-delay: 0.2s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }
.animate-up:nth-child(4) { animation-delay: 0.4s; }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border-radius: 2px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--rose-gold);
  transform: translateY(-3px);
}

/* =============================================
   NOTIFICATIONS
============================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-dark);
  color: var(--white);
  padding: 1rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10000;
  white-space: nowrap;
}

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

/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image-wrap { display: none; }
  .hero__content { padding: 5rem 3rem; min-height: 75vh; justify-content: center; }

  .categories__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }

  .cat-card:first-child { grid-row: 1; }

  .lookbook__inner { grid-template-columns: 1fr; }
  .lookbook__image { display: none; }
  .lookbook__content { padding: 5rem 3rem; }

  .newsletter__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-intro__image { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .site-header__inner { padding: 0 1.25rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero__content { padding: 4rem 1.5rem 3rem; }
  .hero__scroll-hint { left: 1.5rem; }

  .grid-3, .grid-4, .testimonials-grid,
  .team-grid, .values-grid { grid-template-columns: 1fr; }

  .grid-2 { grid-template-columns: 1fr; }

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

  .cat-card:first-child { grid-row: auto; }
  .cat-card .img-placeholder { min-height: 220px; }

  .section { padding: 4rem 0; }
  .section--large { padding: 5rem 0; }

  .container { padding: 0 1.25rem; }

  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

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

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

  .stats-row { grid-template-columns: 1fr; }

  .newsletter-form__row { flex-direction: column; }
}

/* =============================================
   MOBILE MENU (overlay)
============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  display: block;
  padding: 0.35rem 0;
  transition: var(--transition);
}

.mobile-menu ul li a:hover {
  color: var(--rose-gold);
  padding-left: 0.5rem;
}

/* =============================================
   WORDPRESS SPECIFIC
============================================= */
.wp-caption { max-width: 100%; }
.alignnone, .aligncenter, .alignright, .alignleft { margin: 1rem 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin-left: 1rem; }
.alignleft { float: left; margin-right: 1rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute!important; width: 1px; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--rose-gold);
  background: var(--cream);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
