/*
Theme Name: LuxeFlora
Theme URI: https://luxeflora.co
Author: LuxeFlora
Description: Custom inquiry-focused WordPress theme for a premium artificial flowers B2B brand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: luxeflora
*/

:root {
  --lf-ink: #22302a;
  --lf-muted: #68746d;
  --lf-soft: #f7f3ee;
  --lf-paper: #fffdf9;
  --lf-line: #e3ddd3;
  --lf-leaf: #517260;
  --lf-moss: #314d3d;
  --lf-rose: #b96f73;
  --lf-gold: #b5925f;
  --lf-white: #ffffff;
  --lf-shadow: 0 18px 48px rgba(34, 48, 42, 0.12);
  --lf-radius: 8px;
  --lf-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lf-ink);
  background: var(--lf-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

a:hover {
  color: var(--lf-leaf);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lf-wrap {
  width: min(var(--lf-width), calc(100% - 40px));
  margin: 0 auto;
}

.lf-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--lf-line);
  backdrop-filter: blur(14px);
}

.lf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.lf-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  color: var(--lf-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.lf-brand span {
  color: var(--lf-muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.lf-brand img {
  width: auto;
  max-height: 54px;
}

.lf-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
  background: var(--lf-white);
  color: var(--lf-ink);
  cursor: pointer;
}

.lf-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.lf-main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lf-main-nav a {
  color: var(--lf-ink);
  font-size: 14px;
  font-weight: 700;
}

.lf-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--lf-moss);
  border-radius: var(--lf-radius);
  background: var(--lf-moss);
  color: var(--lf-white);
  font-size: 14px;
  font-weight: 800;
}

.lf-header-action:hover {
  color: var(--lf-white);
  background: var(--lf-leaf);
}

.lf-hero {
  position: relative;
  min-height: 640px;
  padding: 118px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 48, 42, 0.88), rgba(34, 48, 42, 0.54) 48%, rgba(34, 48, 42, 0.1)),
    url("assets/images/floral-studio.svg") center right / cover no-repeat;
  color: var(--lf-white);
}

.lf-hero-content {
  max-width: 680px;
}

.lf-eyebrow {
  margin: 0 0 14px;
  color: var(--lf-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lf-hero h1,
.lf-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lf-hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.lf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.lf-button,
.lf-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--lf-radius);
  font-size: 14px;
  font-weight: 900;
}

.lf-button {
  border: 1px solid var(--lf-gold);
  background: var(--lf-gold);
  color: var(--lf-ink);
}

.lf-button:hover {
  color: var(--lf-ink);
  background: #c5a673;
}

.lf-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--lf-white);
}

.lf-button-secondary:hover {
  color: var(--lf-white);
  border-color: var(--lf-white);
}

.lf-section {
  padding: 82px 0;
}

.lf-section-soft {
  background: var(--lf-soft);
}

.lf-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.lf-section-head h2,
.lf-card h3,
.lf-content h2,
.lf-product-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.lf-section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.lf-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--lf-muted);
}

.lf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lf-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lf-card,
.lf-product-card,
.lf-panel {
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
  background: var(--lf-white);
}

.lf-card {
  min-height: 220px;
  padding: 26px;
}

.lf-card h3 {
  font-size: 24px;
}

.lf-card p {
  margin: 12px 0 0;
  color: var(--lf-muted);
}

.lf-card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--lf-leaf);
  font-weight: 900;
}

.lf-product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.lf-product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--lf-soft);
}

.lf-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lf-product-body {
  padding: 18px;
}

.lf-product-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.lf-product-body p {
  margin: 9px 0 0;
  color: var(--lf-muted);
  font-size: 14px;
}

.lf-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lf-term-list a,
.lf-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--lf-line);
  border-radius: 999px;
  background: var(--lf-white);
  color: var(--lf-ink);
  font-size: 13px;
  font-weight: 800;
}

.lf-page-hero {
  padding: 78px 0;
  background: var(--lf-soft);
}

.lf-page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--lf-muted);
  font-size: 18px;
}

.lf-archive-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.lf-filter-box {
  position: sticky;
  top: 104px;
  padding: 20px;
}

.lf-filter-box h2 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lf-filter-box ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.lf-filter-box a {
  color: var(--lf-muted);
  font-weight: 700;
}

.lf-filter-box a:hover {
  color: var(--lf-leaf);
}

.lf-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 46px;
  align-items: start;
  padding: 70px 0;
}

.lf-gallery-main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--lf-radius);
  background: var(--lf-soft);
}

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

.lf-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.lf-gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
  background: var(--lf-white);
  cursor: pointer;
}

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

.lf-product-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.lf-product-summary {
  margin: 18px 0 0;
  color: var(--lf-muted);
  font-size: 18px;
}

.lf-spec-list {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
}

.lf-spec-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 16px;
  background: var(--lf-white);
}

.lf-spec-list dt {
  color: var(--lf-muted);
  font-weight: 800;
}

.lf-spec-list dd {
  margin: 0;
}

.lf-feature-list {
  padding-left: 20px;
}

.lf-inquiry-panel {
  padding: 24px;
  background: var(--lf-soft);
}

.lf-form {
  display: grid;
  gap: 16px;
}

.lf-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lf-form label {
  display: grid;
  gap: 7px;
  color: var(--lf-ink);
  font-size: 13px;
  font-weight: 900;
}

.lf-form input,
.lf-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
  background: var(--lf-white);
  color: var(--lf-ink);
  font: inherit;
}

.lf-form textarea {
  min-height: 142px;
  resize: vertical;
}

.lf-alert {
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #bad0c0;
  border-radius: var(--lf-radius);
  background: #eef7f1;
  color: var(--lf-moss);
  font-weight: 800;
}

.lf-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0;
}

.lf-content h1,
.lf-content h2,
.lf-content h3 {
  line-height: 1.2;
}

.lf-footer {
  padding: 54px 0 34px;
  background: var(--lf-ink);
  color: rgba(255, 255, 255, 0.78);
}

.lf-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.7fr));
  gap: 28px;
}

.lf-footer h2,
.lf-footer h3 {
  margin: 0 0 12px;
  color: var(--lf-white);
}

.lf-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.lf-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lf-footer a:hover {
  color: var(--lf-white);
}

.lf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 920px) {
  .lf-nav-toggle {
    display: inline-block;
  }

  .lf-main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--lf-line);
    background: var(--lf-paper);
  }

  .lf-main-nav.is-open {
    display: block;
  }

  .lf-main-nav ul {
    display: grid;
    gap: 16px;
  }

  .lf-header-action {
    display: none;
  }

  .lf-grid,
  .lf-grid-four,
  .lf-footer-grid,
  .lf-product-detail,
  .lf-archive-layout {
    grid-template-columns: 1fr;
  }

  .lf-filter-box {
    position: static;
  }

  .lf-section-head {
    display: grid;
  }
}

@media (max-width: 620px) {
  .lf-wrap {
    width: min(100% - 28px, var(--lf-width));
  }

  .lf-hero {
    min-height: 600px;
    padding: 88px 0 58px;
  }

  .lf-section {
    padding: 58px 0;
  }

  .lf-form-row,
  .lf-spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lf-footer-bottom {
    display: grid;
  }
}
