/*
Theme Name: Luxe Veil Beauty
Author: Luxe Veil Beauty
Version: 1.1
*/

:root {
  --ink: #171310;
  --muted: #756f68;
  --line: #e8e1da;
  --soft: #f7f3ef;
  --cream: #fbfaf7;
  --rose: #b96f6f;
  --deep: #2b211c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171310;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251,250,247,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 42px;
}
.logo {
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { color: #332b26; }
.nav-left a:hover, .nav-right a:hover { color: var(--rose); }

.mobile-toggle { display: none; }

.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(23,19,16,.76), rgba(23,19,16,.18), rgba(23,19,16,.1)),
    url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
  color: #fff;
}
.kicker {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .96;
  font-weight: 400;
}
.hero p {
  max-width: 520px;
  margin: 24px 0 30px;
  font-size: 17px;
  line-height: 1.7;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.btn.secondary { color: #fff; }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.section h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
}
.section-sub {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.brand-track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  padding: 22px 0;
  animation: marquee 28s linear infinite;
  font-family: Georgia, serif;
  font-size: 22px;
  color: #3b312b;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.category-card {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.category-card span {
  position: relative;
  font-family: Georgia, serif;
  font-size: 28px;
}
.cat-1 { background-image: url("https://images.unsplash.com/photo-1586495777744-4413f21062fa?auto=format&fit=crop&w=900&q=80"); }
.cat-2 { background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=900&q=80"); }
.cat-3 { background-image: url("https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=900&q=80"); }
.cat-4 { background-image: url("https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?auto=format&fit=crop&w=900&q=80"); }

.editorial {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.editorial-image {
  min-height: 580px;
  background: url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1200&q=80") center/cover;
}
.editorial-copy {
  padding: 36px 0;
}
.editorial-copy h2 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.03;
}
.editorial-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.placeholder-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-shell {
  background: #fff;
  border: 1px solid var(--line);
}
.product-image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(185,111,111,.28), rgba(255,255,255,.4)),
    url("https://images.unsplash.com/photo-1625093742435-6fa192b6fb10?auto=format&fit=crop&w=700&q=80") center/cover;
}
.product-shell:nth-child(2) .product-image { background-image: linear-gradient(145deg, rgba(43,33,28,.24), rgba(255,255,255,.35)), url("https://images.unsplash.com/photo-1590156221328-12fe76d039bd?auto=format&fit=crop&w=700&q=80"); }
.product-shell:nth-child(3) .product-image { background-image: linear-gradient(145deg, rgba(198,158,142,.26), rgba(255,255,255,.35)), url("https://images.unsplash.com/photo-1608248597279-f99d160bfcbc?auto=format&fit=crop&w=700&q=80"); }
.product-shell:nth-child(4) .product-image { background-image: linear-gradient(145deg, rgba(90,54,61,.26), rgba(255,255,255,.35)), url("https://images.unsplash.com/photo-1617897903246-719242758050?auto=format&fit=crop&w=700&q=80"); }
.product-meta { padding: 18px; }
.product-meta strong {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-meta small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  background: var(--deep);
  color: #fff;
  padding: 56px 42px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid h3, .footer-grid h4 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-weight: 400;
}
.footer-grid p, .footer-grid a {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-size: 14px;
}
.footer-links { display: grid; gap: 8px; }
.copyright {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

@media (max-width: 860px) {
  .announcement { font-size: 10px; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 18px;
  }
  .logo { font-size: 19px; text-align: center; }
  .mobile-toggle {
    display: inline-flex;
    border: 0;
    background: transparent;
    font-size: 24px;
  }
  .nav-left {
    display: none;
    position: absolute;
    top: 109px;
    left: 0;
    right: 0;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-left.open { display: flex; }
  .nav-right { gap: 14px; font-size: 12px; }
  .hero { min-height: 620px; }
  .category-grid, .placeholder-products, .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-card { min-height: 280px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-image { min-height: 380px; }
  .section { width: min(100% - 32px, 1180px); padding: 48px 0; }
}

.nav-left {
  gap: 16px;
  justify-content: center;
}
.nav-left a {
  white-space: nowrap;
}
.header-inner {
  grid-template-columns: auto 1fr auto;
}
.logo {
  min-width: 210px;
}
.kicker.dark {
  color: #9d6b5f;
}
.quick-edit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.quick-edit a {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 22px;
}
.quick-edit span {
  font-family: Inter, Arial, sans-serif;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: .12em;
}
.department-intro {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: end;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.shop-tile {
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.shop-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.66));
}
.shop-tile div {
  position: relative;
  display: grid;
  gap: 10px;
}
.shop-tile small {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}
.shop-tile strong {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}
.shop-tile span {
  max-width: 230px;
  color: rgba(255,255,255,.84);
  line-height: 1.55;
  font-size: 14px;
}
.tile-new { background-image: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=1000&q=80"); }
.tile-best { background-image: url("https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=1000&q=80"); }
.tile-lips { background-image: url("https://images.unsplash.com/photo-1586495777744-4413f21062fa?auto=format&fit=crop&w=1000&q=80"); }
.tile-face { background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1000&q=80"); }
.tile-eye { background-image: url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1000&q=80"); }
.tile-tools { background-image: url("https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?auto=format&fit=crop&w=1000&q=80"); }

.editorial-band {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(43,33,28,.82), rgba(43,33,28,.38)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}
.editorial-band-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.editorial-band h2 {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}
.editorial-band p {
  max-width: 540px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.feature-row > div {
  background: #fff;
  padding: 34px;
  min-height: 220px;
}
.feature-row h3 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}
.feature-row p {
  color: var(--muted);
  line-height: 1.7;
}
.feature-row a {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1100px) {
  .nav-left {
    gap: 10px;
    font-size: 11px;
  }
  .logo {
    min-width: auto;
    font-size: 20px;
  }
}
@media (max-width: 860px) {
  .nav-left {
    top: 109px;
  }
  .quick-edit,
  .department-intro,
  .shop-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }
  .quick-edit a {
    min-height: 74px;
    font-size: 20px;
  }
  .shop-tile {
    min-height: 310px;
  }
}

/* Luxe Veil clean WooCommerce template */
.lv-shop-template {
  max-width: 1360px;
  margin: 0 auto;
  padding: 42px 34px 78px;
  background: #fffaf6;
}

.lv-shop-template .woocommerce-breadcrumb {
  color: #746961;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.lv-shop-template .woocommerce-products-header {
  border-bottom: 1px solid #e7ddd4;
  margin-bottom: 26px;
  padding-bottom: 20px;
}

.lv-shop-template .woocommerce-products-header__title,
.lv-shop-template h1.page-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: .045em;
  color: #18130f;
  margin: 0;
}

.lv-shop-template .woocommerce-result-count {
  color: #6d625b;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 4px 0 22px;
}

.lv-shop-template .woocommerce-ordering select {
  min-width: 210px;
  border: 1px solid #e7ddd4;
  background: #fff;
  color: #18130f;
  border-radius: 0;
  padding: 11px 14px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lv-shop-template ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 30px;
  list-style: none !important;
  padding: 0 !important;
  margin: 34px 0 64px !important;
}

.lv-shop-template ul.products::before,
.lv-shop-template ul.products::after {
  display: none !important;
}

.lv-shop-template ul.products li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left;
}

.lv-shop-template ul.products li.product a {
  text-decoration: none;
}

.lv-shop-template ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  display: block;
  margin: 0 0 16px !important;
  background: #f4eee8;
  border: 1px solid rgba(36, 26, 21, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.lv-shop-template ul.products li.product:hover img {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(36, 26, 21, .09);
}

.lv-shop-template .woocommerce-loop-product__title {
  padding: 0 !important;
  margin: 0 0 7px !important;
  color: #18130f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  line-height: 1.42 !important;
  font-weight: 400 !important;
  letter-spacing: .025em;
}

.lv-shop-template ul.products li.product .price {
  color: #6d625b !important;
  font-size: 13px !important;
  letter-spacing: .04em;
}

.lv-shop-template ul.products li.product .button {
  border: 1px solid #18130f !important;
  background: transparent !important;
  color: #18130f !important;
  border-radius: 0 !important;
  padding: 11px 15px !important;
  font-size: 11px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500 !important;
}

.lv-shop-template ul.products li.product .button:hover {
  background: #18130f !important;
  color: #fff !important;
}

.lv-shop-template span.onsale {
  display: none !important;
}

@media (max-width: 1100px) {
  .lv-shop-template ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lv-shop-template {
    padding: 30px 18px 58px;
  }

  .lv-shop-template ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
}
