/* LUXEFURN — Bright Premium Landing Page */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
}

:root {
  --cream: #FDF8F3;
  --white: #FFFFFF;
  --sand: #F5EDE4;
  --coral: #FF6B5B;
  --coral-light: #FFE8E5;
  --sage: #7BA68C;
  --sage-light: #E8F2EC;
  --gold: #D4A853;
  --gold-light: #FBF3E0;
  --charcoal: #2C2A26;
  --slate: #5C574F;
  --muted: #9A948A;
  --border: rgba(44, 42, 38, 0.08);
  --shadow-sm: 0 2px 12px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 42, 38, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 42, 38, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body[dir="rtl"] { text-align: right; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Announcement */
.announcement {
  background: linear-gradient(90deg, var(--coral) 0%, #FF8A7A 50%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
}

.logo__mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}

.nav a:hover { color: var(--coral); }
.nav .nav__mobile-only { display: none; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language / Region Picker */
.locale-picker {
  position: relative;
}

.locale-picker__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
}

.locale-picker__trigger:hover,
.locale-picker.open .locale-picker__trigger {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.locale-picker__flag { font-size: 1.1rem; line-height: 1; }

.locale-picker__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: start;
}

.locale-picker__region {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.locale-picker__lang {
  font-size: 0.625rem;
  color: var(--muted);
  font-weight: 500;
}

.locale-picker__chevron {
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.locale-picker.open .locale-picker__chevron {
  transform: rotate(180deg);
}

.locale-picker__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 200;
}

body[dir="rtl"] .locale-picker__dropdown {
  right: auto;
  left: 0;
}

.locale-picker.open .locale-picker__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.locale-picker__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.75rem 0.35rem;
}

.locale-picker__option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: start;
  font-family: var(--font-body);
  color: var(--charcoal);
  transition: background var(--transition);
}

.locale-picker__option:hover {
  background: var(--sand);
}

.locale-picker__option.active {
  background: var(--coral-light);
}

.locale-picker__option > span:first-child {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.locale-picker__option > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.8125rem;
  line-height: 1.3;
}

.locale-picker__option strong {
  font-weight: 600;
  margin-right: 0.25rem;
}

.locale-picker__option em {
  font-style: normal;
  font-size: 0.6875rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
}

.btn--ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 0.9375rem;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: min(88vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: var(--sand);
}

.hero-carousel__slides {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 8s ease;
  transform: scale(1.05);
}

.hero-carousel__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(253, 248, 243, 0.97) 0%,
    rgba(253, 248, 243, 0.88) 38%,
    rgba(253, 248, 243, 0.25) 68%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}

body[dir="rtl"] .hero-carousel__overlay {
  background: linear-gradient(
    -105deg,
    rgba(253, 248, 243, 0.97) 0%,
    rgba(253, 248, 243, 0.88) 38%,
    rgba(253, 248, 243, 0.25) 68%,
    transparent 100%
  );
}

.hero-carousel__content {
  max-width: 560px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-carousel__tag {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-carousel__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.hero-carousel__subtitle {
  font-size: 1.0625rem;
  color: var(--slate);
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.hero-carousel__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-carousel__controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  color: var(--charcoal);
}

.hero-carousel__arrow:hover {
  background: var(--white);
  transform: scale(1.08);
}

.hero-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(44, 42, 38, 0.25);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-carousel__dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--coral);
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-bar__icon {
  font-size: 1.25rem;
  color: var(--sage);
  line-height: 1;
  margin-top: 2px;
}

.trust-bar__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.trust-bar__item span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--white);
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section__desc {
  font-size: 1rem;
  color: var(--slate);
  max-width: 540px;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sand);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

/* Collections */
.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.collection-card--large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover img { transform: scale(1.05); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,42,38,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.collection-card__overlay span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.collection-card__overlay em {
  font-style: normal;
  font-size: 0.8125rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-split__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-split__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

body[dir="rtl"] .about-split__badge {
  right: auto;
  left: 1.5rem;
}

.about-split__badge span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.about-split__badge span:last-child {
  font-size: 0.75rem;
  color: var(--slate);
  font-weight: 500;
}

.about-split__content p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  margin-top: 1.5rem;
}

.about-list li {
  position: relative;
  padding-inline-start: 1.5rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  color: var(--charcoal);
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

body[dir="rtl"] .about-list li::before {
  left: auto;
  right: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--gold-light) 50%, var(--coral-light) 100%);
  padding: 4rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--slate);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer .logo { color: var(--white); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 240px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer a:hover { color: var(--white); }

.region-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  cursor: pointer;
}

.region-select option {
  background: var(--charcoal);
  color: var(--white);
}

.footer__detected {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer__bottom {
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card--large { grid-row: span 1; aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav, .header__actions .btn--ghost { display: none; }
  .menu-toggle { display: flex; }
  .header__actions { margin-left: auto; }

  .locale-picker__label { display: none; }
  .locale-picker__trigger { padding: 0.45rem 0.65rem; }
  .locale-picker__dropdown {
    width: min(92vw, 300px);
    right: -0.5rem;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav.open .nav__mobile-only { display: block; }

  .hero-carousel {
    height: auto;
    min-height: 580px;
  }

  .hero-carousel__overlay {
    background: linear-gradient(to top, rgba(253,248,243,0.98) 45%, rgba(253,248,243,0.7) 100%);
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .product-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}
