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

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory: #F8F5F0;
  --warm-white: #FDFCFA;
  --charcoal: #1A1A1A;
  --stone: #4A4440;
  --muted: #9A9290;
  --accent: #C4A882;
  --accent-light: #E8D9C5;
  --border: #E5DED6;
  --shadow: rgba(26, 26, 26, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  display: flex;
  align-items: center;
  padding: 6px;
  transition: color 0.2s;
}

.nav-icon-btn:hover { color: var(--charcoal); }

.cart-badge {
  position: relative;
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.cart-badge-count.visible { opacity: 1; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 6px;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw 6vw 5vw 8vw;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.9;
  max-width: 320px;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--stone);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-visual:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: white;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 1s 0.5s both;
}

.hero-badge-icon {
  color: var(--accent);
}

.hero-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-badge-text strong {
  display: block;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.75rem;
}

/* ── MARQUEE ─────────────────────────────────────── */
.marquee-strip {
  background: var(--charcoal);
  color: white;
  padding: 14px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.marquee-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ──────────────────────────────── */
section {
  padding: 7rem 8vw;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}

.section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-title em { font-style: italic; }

.view-all-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.view-all-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ── PRODUCT GRID ────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--ivory);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  transition: background 0.35s;
}

.product-card:hover .product-overlay {
  background: rgba(26, 26, 26, 0.18);
}

.product-quick-btn {
  background: white;
  border: none;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .product-quick-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-wish-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  box-shadow: 0 2px 12px var(--shadow);
  opacity: 0;
  transition: opacity 0.3s, color 0.2s;
}

.product-card:hover .product-wish-btn { opacity: 1; }
.product-wish-btn:hover { color: var(--charcoal); }
.product-wish-btn.active { color: #c0392b; }

.product-badge-new {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--charcoal);
  color: white;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-info {
  padding: 1.25rem 1.25rem 1.75rem;
  background: white;
}

.product-category {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.05em;
}

.product-add-btn {
  background: none;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--stone);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-add-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
}

/* ── FEATURED BANNER ─────────────────────────────── */
.featured-banner {
  background: var(--charcoal);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-visual {
  position: relative;
  overflow: hidden;
}

.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform 0.8s ease;
}

.featured-visual:hover img { transform: scale(1.04); }

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw 7vw;
  color: white;
}

.featured-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.featured-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.featured-title em { font-style: italic; }

.featured-desc {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}

.btn-accent:hover {
  background: #b8996e;
  transform: translateY(-1px);
}

/* ── VALUES ──────────────────────────────────────── */
.values-section {
  background: var(--ivory);
  padding: 5rem 8vw;
}

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

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.value-desc {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--muted);
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials-section {
  padding: 7rem 8vw;
  background: var(--warm-white);
}

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

.testimonial-card {
  background: var(--ivory);
  padding: 2.5rem 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-author strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 2px;
}

/* ── NEWSLETTER ──────────────────────────────────── */
.newsletter-section {
  background: var(--ivory);
  padding: 6rem 8vw;
  text-align: center;
}

.newsletter-inner {
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.newsletter-desc {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  border: 1px solid var(--border);
  border-right: none;
  padding: 13px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  background: white;
  color: var(--charcoal);
  outline: none;
}

.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--stone); }

.newsletter-btn {
  background: var(--charcoal);
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.newsletter-btn:hover { background: var(--stone); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 5rem 8vw 2.5rem;
}

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

.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: white;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: rgba(255,255,255,0.4);
  max-width: 220px;
  margin-bottom: 1.75rem;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── CART DRAWER ─────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 4px;
  display: flex;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

#profile-view h3 {
  color: var(--charcoal);
  font-weight: 500;
}

#logout-btn:hover {
  background: #a93226 !important;
}

.account-form {
    transition: all 0.3s ease;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--muted);
  text-align: center;
}

.cart-empty-icon { color: var(--accent-light); }

.cart-empty p {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ivory);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-item-category {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.cart-item-price {
  font-size: 0.75rem;
  color: var(--stone);
}

/* ── NEW ARRIVALS ────────────────────────────────── */
.new-arrivals-section {
  background: var(--ivory);
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: 8vw;
  padding-right: 8vw;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--charcoal); }

.cart-footer {
  padding: 1.5rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cart-subtotal-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-subtotal-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
}

.cart-checkout-btn {
  width: 100%;
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.2s;
}

/* ── PROMO CODE SECTION ──────────────────────────── */
.cart-promo-section {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.promo-input-group {
  display: flex;
  gap: 0.5rem;
}

.promo-input-group input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.promo-input-group input:focus {
  border-color: var(--charcoal);
}

.promo-message {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.promo-message.success {
  color: #27ae60;
}

.promo-message.error {
  color: #c0392b;
}

/* ── ACCOUNT MODAL ───────────────────────────────── */
.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.account-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: min(440px, 90vw);
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  box-shadow: 0 12px 48px var(--shadow);
}

.account-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.account-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.account-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 4px;
  display: flex;
}

.account-body {
  padding: 2rem;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-group input {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--charcoal);
}

.account-switch {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

.account-switch a {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
}

.account-switch a:hover {
  text-decoration-color: var(--charcoal);
}

.cart-checkout-btn:hover { background: var(--stone); }


/* ── CATEGORY LIST (SEARCH MODAL) ────────────────── */
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  padding: 1rem 0;
}

.category-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block; /* για να δουλέψει σωστά το transform */
}

.category-list a:hover {
  color: var(--accent);
  transform: translateX(6px);
}
/* ── CART PROMO BANNER ───────────────────────────── */
.cart-promo-banner {
  background: var(--ivory);
  border: 1px solid var(--accent-light);
  padding: 12px 16px;
  margin: 0 1.75rem 1rem 1.75rem; /* Ίδια margins με το padding του drawer */
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.4s ease-out;
}

.cart-promo-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-promo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
}
/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: white;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

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

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE MENU ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 8vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 55vw; }
  .hero-content { padding: 4rem 8vw; }
  .featured-banner { grid-template-columns: 1fr; }
  .featured-visual { height: 55vw; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 4rem 5vw; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 3rem 5vw; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  .newsletter-btn { padding: 13px; }
  nav { padding: 0 5vw; }
}
/* ── PROFILE AVATAR ──────────────────────────────── */
.profile-avatar {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(196, 168, 130, 0.35);
}

/* ── PROFILE MENU BUTTONS ────────────────────────── */
.profile-menu-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--stone);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: left;
}

.profile-menu-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--charcoal);
}

.profile-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid #c0392b33;
  color: #c0392b;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.2s, border-color 0.2s;
}

.profile-logout-btn:hover {
  background: #fdf0ef;
  border-color: #c0392b88;
}

/* ── NAV ACCOUNT ICON — LOGGED-IN STATE ──────────── */
#account-btn {
  position: relative;
}

#account-btn.logged-in::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  border: 1.5px solid var(--warm-white);
}