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

:root {
  --black: #132033;
  --white: #ffffff;
  --cream: #fffaf3;
  --beige: #EBD3B0;
  --taupe: #c49d68;
  --brown: #2b3f68;
  --muted: #667086;
  --line: #eadcc6;
  --primary: #7A80A1;
  --primary-dark: #315791;
  --primary-soft: #e8eef8;
  --gold: #EF8777;
  --gold-deep: #c69d64;
  --ink: #132033;
  --shadow: 0 24px 58px rgba(74, 113, 181, 0.14);
  --gold-shadow: 0 18px 42px rgba(235, 211, 176, 0.42);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.top-slider {
  width: 100%;
  background: linear-gradient(90deg, #6A7090 0%, #7A80A1 50%, #6A7090 100%);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(74, 113, 181, 0.18);
}

.top-slider-track {
  display: inline-flex;
  gap: 72px;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 800;
  animation: topSlide 24s linear infinite;
}

.top-slider-track span {
  min-width: max-content;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74, 113, 181, 0.16);
  box-shadow: 0 12px 34px rgba(74, 113, 181, 0.08);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
}

.site-logo-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  transition: transform 0.35s ease, letter-spacing 0.35s ease, color 0.35s ease;
}

.site-logo-text:hover {
  transform: scale(1.04);
  letter-spacing: 15px;
  color: var(--gold-deep);
}

.custom-logo-link img {
  max-height: 72px;
  width: auto;
}

.search-link,
.header-icons a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s ease;
}

.search-link:hover,
.header-icons a:hover {
  color: var(--primary);
}

.header-icons {
  justify-self: end;
  display: flex;
  gap: 22px;
}

.primary-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 18px;
}

.primary-nav .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding-bottom: 8px;
}

.primary-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.32s ease;
}

.primary-nav a:hover::after {
  width: 100%;
}

.primary-nav .sale-link,
.primary-nav .menu li:last-child a {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--primary);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.slides {
  display: flex;
  width: 300%;
  animation: heroSlide 21s infinite ease-in-out;
}

.slide {
  flex: 0 0 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.88) 42%, rgba(255, 250, 243, 0.25) 70%, rgba(255, 250, 243, 0.04) 100%),
    radial-gradient(circle at 25% 40%, rgba(235, 211, 176, 0.45), transparent 32%);
}

.hero-copy {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 28px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-copy h1 {
  max-width: 720px;
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
  color: var(--primary);
}

.hero-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid var(--primary) !important;
  border-radius: 999px;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.single_add_to_cart_button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

.btn-dark {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.btn-light {
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--primary) !important;
  border-color: var(--gold) !important;
}

.btn-light:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

@keyframes heroSlide {
  0%, 27% {
    transform: translateX(0);
  }
  33%, 60% {
    transform: translateX(-33.3333%);
  }
  66%, 93% {
    transform: translateX(-66.6666%);
  }
  100% {
    transform: translateX(0);
  }
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  background: rgba(74, 113, 181, 0.28);
  border-radius: 50%;
  animation: dotPulse 21s infinite;
}

.hero-dots span:nth-child(2) {
  animation-delay: 7s;
}

.hero-dots span:nth-child(3) {
  animation-delay: 14s;
}

@keyframes dotPulse {
  0%, 28% {
    transform: scale(1.7);
    background: var(--primary);
  }
  29%, 100% {
    transform: scale(1);
    background: rgba(235, 211, 176, 0.85);
  }
}

.section,
.luxe-woocommerce-page,
.woocommerce-page .site-main {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 76px 28px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section h2,
.trust-strip h3,
.promo-card h2,
.page-header h1,
.post-card h2,
.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.related.products h2,
.upsells.products h2,
.cross-sells h2,
.cart_totals h2 {
  font-family: "Playfair Display", serif;
}

.section h2,
.page-header h1,
.woocommerce-products-header__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--primary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.category-card {
  background: var(--white);
  min-height: 218px;
  border: 1px solid rgba(235, 211, 176, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(74, 113, 181, 0.08);
  padding: 14px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.category-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: var(--shadow);
  border-color: rgba(74, 113, 181, 0.45);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.55s ease;
}

.category-card:hover img {
  transform: scale(1.12);
}

.category-card span {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--primary);
}

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

.view-all {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: var(--primary);
  text-transform: uppercase;
  transition: transform 0.35s ease, color 0.35s ease;
}

.view-all:hover {
  transform: translateX(8px);
  color: var(--gold-deep);
}

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.product-slider::-webkit-scrollbar {
  height: 8px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 20px;
}

.product-card,
.woocommerce ul.products li.product {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(235, 211, 176, 0.82);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(74, 113, 181, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(74, 113, 181, 0.48);
}

.product-card img,
.woocommerce ul.products li.product img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: transform 0.65s ease;
  background: var(--primary-soft);
}

.product-card:hover img,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.08);
}

.heart {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(235, 211, 176, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease;
}

.heart:hover {
  transform: scale(1.14) rotate(8deg);
  background: var(--gold);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 7px;
  color: var(--ink);
}

.product-info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.product-info strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--primary);
}

.cart-btn,
.woocommerce ul.products li.product .button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.cart-btn:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-3px);
  color: var(--white) !important;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 0 0 48px !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  margin: 0 !important;
  width: auto !important;
  padding: 16px !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 44px;
}

.woocommerce ul.products li.product .price {
  color: var(--primary);
  font-weight: 900;
  font-size: 17px;
}

.woocommerce span.onsale {
  background: var(--gold) !important;
  color: var(--ink) !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.woocommerce-page .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb {
  max-width: 1320px;
  margin: 28px auto 0 !important;
  padding: 0 28px;
  color: var(--muted) !important;
  font-size: 13px;
}

.woocommerce-page .woocommerce-breadcrumb a,
.woocommerce .woocommerce-breadcrumb a {
  color: var(--primary) !important;
  font-weight: 800;
}

.woocommerce-products-header {
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid rgba(235, 211, 176, 0.8);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(235, 211, 176, 0.48), transparent 36%),
    linear-gradient(135deg, rgba(74, 113, 181, 0.1), rgba(255, 255, 255, 0.95));
}

.woocommerce-products-header .term-description,
.woocommerce-products-header .page-description {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
}

.luxe-shop-toolbar {
  width: 100%;
  margin: 0 0 30px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(235, 211, 176, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--gold-shadow);
}

.luxe-shop-toolbar-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.luxe-shop-toolbar h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.luxe-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.woocommerce .woocommerce-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.woocommerce .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="search"],
.woocommerce select,
.woocommerce textarea {
  min-height: 46px;
  border: 1px solid rgba(74, 113, 181, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

.woocommerce .quantity .qty {
  width: 86px;
  text-align: center;
}

.luxe-shop-filter-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.luxe-filter-widget {
  background: var(--primary-soft);
  border: 1px solid rgba(74, 113, 181, 0.16);
  border-radius: 18px;
  padding: 18px;
}

.luxe-filter-title,
.luxe-filter-widget .widget-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.luxe-filter-widget ul,
.woocommerce .widget_product_categories ul,
.woocommerce .widget_layered_nav ul,
.woocommerce .widget_rating_filter ul {
  list-style: none;
}

.luxe-filter-widget li,
.woocommerce .widget_product_categories li,
.woocommerce .widget_layered_nav li,
.woocommerce .widget_rating_filter li {
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 700;
}

.luxe-filter-widget a,
.woocommerce .widget_product_categories a,
.woocommerce .widget_layered_nav a,
.woocommerce .widget_rating_filter a {
  color: var(--ink);
  transition: color 0.25s ease;
}

.luxe-filter-widget a:hover,
.woocommerce .widget_product_categories a:hover,
.woocommerce .widget_layered_nav a:hover,
.woocommerce .widget_rating_filter a:hover {
  color: var(--primary);
}

.luxe-search-filter .woocommerce-product-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.luxe-search-filter input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(74, 113, 181, 0.22);
  border-radius: 999px;
  padding: 0 15px;
}

.luxe-search-filter button,
.woocommerce-product-search button {
  min-height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--primary) !important;
  background: var(--primary-soft) !important;
  color: var(--ink) !important;
  border-radius: 16px;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--primary) !important;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(235, 211, 176, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  margin-bottom: 58px;
}

.woocommerce div.product::before,
.woocommerce div.product::after {
  display: none !important;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce div.product div.images img {
  border-radius: 18px;
  background: var(--primary-soft);
}

.woocommerce div.product .product_title {
  color: var(--primary);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 22px 0;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.woocommerce div.product .product_meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(235, 211, 176, 0.86);
  color: var(--muted);
  font-size: 14px;
}

.woocommerce div.product .product_meta a {
  color: var(--primary);
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 18px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(74, 113, 181, 0.22) !important;
  background: var(--primary-soft) !important;
  border-radius: 999px !important;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ink) !important;
  padding: 12px 20px !important;
  font-weight: 900 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--white) !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--cream);
  border: 1px solid rgba(235, 211, 176, 0.88);
  border-radius: 18px;
  padding: 26px;
  color: var(--muted);
  line-height: 1.8;
}

.related.products,
.upsells.products,
.cross-sells {
  margin-top: 54px;
}

.related.products h2,
.upsells.products h2,
.cross-sells h2,
.cart_totals h2 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 24px;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: var(--white);
  border: 1px solid rgba(235, 211, 176, 0.88) !important;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(74, 113, 181, 0.08);
  padding: 22px;
}

.woocommerce table.shop_table th {
  color: var(--primary);
  font-weight: 900;
}

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

.promo-card {
  min-height: 285px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  padding: 32px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.promo-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: var(--shadow);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(19, 32, 51, 0.82) 100%),
    linear-gradient(90deg, rgba(74, 113, 181, 0.58), transparent);
  transition: opacity 0.35s ease;
}

.promo-card:hover::before {
  opacity: 0.9;
}

.promo-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.promo-card p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-card .small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 11px;
}

.stylist {
  background-image: url("https://images.unsplash.com/photo-1600948836101-f9ffda59d250?auto=format&fit=crop&w=1000&q=80");
}

.academy {
  background-image: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1000&q=80");
}

.color {
  background-image: url("https://images.unsplash.com/photo-1527799820374-dcf8d9d4a388?auto=format&fit=crop&w=1000&q=80");
}

.trust-strip {
  max-width: 1320px;
  margin: 76px auto 0;
  padding: 42px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: linear-gradient(135deg, rgba(74, 113, 181, 0.12), rgba(235, 211, 176, 0.55));
  border-top: 1px solid rgba(74, 113, 181, 0.14);
  border-bottom: 1px solid rgba(74, 113, 181, 0.14);
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
  border-radius: 18px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.trust-strip div:hover {
  transform: translateY(-8px);
}

.trust-strip span {
  color: var(--primary);
  font-size: 28px;
}

.trust-strip h3 {
  color: var(--primary);
  font-size: 25px;
  margin: 10px 0 8px;
}

.trust-strip p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  background: #132033;
  color: var(--white);
  margin-top: 76px;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.site-footer h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.newsletter input {
  height: 50px;
  border: none;
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
}

.newsletter button {
  height: 50px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease;
}

.newsletter button:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 13px;
}

.page-content {
  min-height: 520px;
  padding-bottom: 80px;
}

.page-header {
  margin-bottom: 36px;
}

.entry-content {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.entry-content p {
  margin-bottom: 20px;
}

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

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(235, 211, 176, 0.88);
  box-shadow: 0 10px 30px rgba(74, 113, 181, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.post-thumb img,
.single-featured-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.post-card-content {
  padding: 24px;
}

.post-card h2 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 12px;
}

.post-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pagination {
  margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px;
  min-width: 42px;
  min-height: 42px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(74, 113, 181, 0.16);
  color: var(--primary);
  font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

@media (max-width: 1100px) {
  .category-grid,
  .woocommerce ul.products,
  .luxe-shop-filter-widgets {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-slider {
    grid-template-columns: none;
  }

  .promo-section,
  .trust-strip,
  .footer-grid,
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    min-height: 560px;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    text-align: center;
    min-height: auto;
    padding: 22px 20px;
  }

  .mobile-toggle {
    display: block;
  }

  .search-link {
    display: none;
  }

  .header-icons {
    justify-self: end;
    gap: 10px;
    font-size: 12px;
  }

  .site-logo-text {
    font-size: 28px;
    letter-spacing: 6px;
  }

  .primary-nav {
    display: none;
    padding: 0 24px 24px;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    display: grid;
    gap: 16px;
    text-align: center;
  }

  .slide {
    min-height: 620px;
  }

  .slide::before {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.74) 60%, rgba(255, 250, 243, 0.18) 100%);
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .category-grid,
  .promo-section,
  .trust-strip,
  .footer-grid,
  .posts-grid,
  .woocommerce ul.products,
  .luxe-shop-filter-widgets {
    grid-template-columns: 1fr;
  }

  .section-row,
  .luxe-shop-toolbar-top {
    align-items: start;
    flex-direction: column;
  }

  .luxe-toolbar-actions {
    justify-content: flex-start;
  }

  .newsletter form,
  .luxe-search-filter .woocommerce-product-search {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Premium revision 1.2.0 */
body {
  background:
    /*radial-gradient(circle at 8% 4%, rgba(235, 211, 176, 0.36), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(74, 113, 181, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 54%, #f7f0e6 100%);*/
    radial-gradient(circle at 8% 4%, rgba(239, 135, 119, 0.36), transparent 28%), radial-gradient(circle at 92% 0%, rgba(134, 138, 174, 0.13), transparent 30%), linear-gradient(180deg, #F8F9FF 0%, #ffffff 54%, #F1F2FA 100%);
}

.top-slider {
  background: linear-gradient(90deg, #6A7090 0%, #7A80A1 50%, #6A7090 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(235, 211, 176, 0.5);
}

.top-slider-track {
  padding: 11px 0;
  font-size: 12px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.top-slider-track span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(235, 211, 176, 0.16);
  vertical-align: middle;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(74, 113, 181, 0.12);
  box-shadow: 0 18px 44px rgba(31, 55, 93, 0.08);
}

.header-inner {
  min-height: 86px;
}

.site-branding {
  position: relative;
  text-align: center;
}

.site-branding::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 76px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.search-link,
.header-icons a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(74, 113, 181, 0.06);
  border: 1px solid rgba(74, 113, 181, 0.12);
}

.search-link::before {
  content: "⌕";
  margin-right: 7px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.header-icons a:hover,
.search-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.primary-nav {
  padding-bottom: 16px;
  padding-top:25px !important;
}

.primary-nav .menu {
  gap: 18px;
}

.primary-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px 8px;
  border-radius: 999px;
  color: #24324a;
}

.primary-nav a:hover {
  color: var(--primary);
  background: rgba(74, 113, 181, 0.06);
}

.primary-nav .sale-link,
.primary-nav .menu li:last-child a {
  color: var(--primary);
  background: rgba(235, 211, 176, 0.28);
  border: 1px solid rgba(235, 211, 176, 0.78);
}

.luxe-slider-frame {
  max-width: min(1640px, calc(100% - 44px));
  margin: 32px auto 0;
  border: 1px solid rgba(235, 211, 176, 0.82);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 211, 176, 0.26));
  box-shadow: 0 38px 90px rgba(74, 113, 181, 0.18);
  position: relative;
}

.luxe-slider-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}

.luxe-slider-frame .metaslider,
.luxe-slider-frame .metaslider .slides,
.luxe-slider-frame .metaslider .slides img {
  border-radius: 34px;
}

.luxe-slider-frame .metaslider .caption-wrap {
  background: linear-gradient(90deg, rgba(19, 32, 51, 0.76), rgba(74, 113, 181, 0.28), transparent) !important;
}

.luxe-brand-highlights {
  max-width: 1320px;
  margin: 34px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.luxe-brand-highlights div {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(235, 211, 176, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 238, 248, 0.82)),
    radial-gradient(circle at top right, rgba(235, 211, 176, 0.54), transparent 36%);
  box-shadow: 0 16px 42px rgba(74, 113, 181, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.luxe-brand-highlights div:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(74, 113, 181, 0.16);
  border-color: rgba(74, 113, 181, 0.38);
}

.luxe-brand-highlights span,
.trust-strip span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(74, 113, 181, 0.28);
}

.luxe-brand-highlights strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 8px;
}

.luxe-brand-highlights p,
.section-title p,
.section-row p {
  color: var(--muted);
  line-height: 1.7;
}

.luxe-premium-section {
  position: relative;
}

.section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2,
.section-row h2,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  letter-spacing: -0.8px;
}

.category-section .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.category-card.premium-category-card {
  min-height: 330px;
  padding: 0;
  border-radius: 30px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(74, 113, 181, 0.12);
}

.category-card.premium-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.05) 0%, rgba(19, 32, 51, 0.72) 100%),
    linear-gradient(45deg, rgba(74, 113, 181, 0.62), transparent 62%);
}

.category-card.premium-category-card::after {
  content: "Explore";
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.category-card.premium-category-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 0;
}

.category-card.premium-category-card span,
.category-card.premium-category-card small {
  position: absolute;
  left: 24px;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.category-card.premium-category-card span {
  bottom: 74px;
  margin: 0;
  max-width: calc(100% - 140px);
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  text-transform: none;
}

.category-card.premium-category-card small {
  bottom: 36px;
  max-width: calc(100% - 150px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.product-section .section-row {
  align-items: flex-end;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(239, 135, 119, 0.48), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 240, 250, 0.72));
  border: 1px solid rgba(235, 211, 176, 0.82);
  box-shadow: 0 16px 46px rgba(74, 113, 181, 0.09);
}

.view-all {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 0 14px 30px rgba(74, 113, 181, 0.2);
}

.view-all:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.product-card,
.woocommerce ul.products li.product {
  border-radius: 28px;
  border: 1px solid rgba(235, 211, 176, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.94));
  box-shadow: 0 16px 44px rgba(74, 113, 181, 0.10);
}

.woocommerce ul.products li.product {
  padding: 0 !important;
}

.product-card::before,
.woocommerce ul.products li.product::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.product-card:hover::before,
.woocommerce ul.products li.product:hover::before {
  opacity: 1;
}

.product-card img,
.woocommerce ul.products li.product img {
  height: 310px;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at center, rgba(235, 211, 176, 0.26), rgba(232, 238, 248, 0.78));
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .luxe-product-category-label,
.woocommerce ul.products li.product .luxe-product-microcopy,
.woocommerce ul.products li.product .star-rating {
  margin-left: 20px;
  margin-right: 20px;
}

.luxe-product-category-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 40px);
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(74, 113, 181, 0.09);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .luxe-product-category-label {
  margin-top: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: auto;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-size: 17px;
  letter-spacing: -0.15px;
}

.woocommerce ul.products li.product .price {
  margin-top: 12px;
  margin-bottom: 15px;
}

.luxe-product-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.luxe-product-microcopy::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.woocommerce ul.products li.product .button {
  margin: 0 20px 20px !important;
  width: calc(100% - 40px);
  min-height: 48px;
  box-shadow: 0 12px 24px rgba(74, 113, 181, 0.16);
}

.woocommerce .star-rating {
  color: var(--gold-deep);
}

.woocommerce span.onsale {
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
  z-index: 4;
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 26px rgba(74, 113, 181, 0.24);
}

.luxe-shop-full-width #secondary,
.luxe-shop-full-width .sidebar,
.luxe-shop-full-width .widget-area,
.woocommerce-page #secondary,
.woocommerce-page .sidebar {
  display: none !important;
}

.luxe-shop-full-width .content-area,
.woocommerce-page .content-area,
.luxe-shop-full-width .site-main,
.woocommerce-page .site-main {
  width: 100% !important;
  max-width: none;
}

.woocommerce-products-header {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(235, 211, 176, 0.64), transparent 34%),
    linear-gradient(135deg, rgba(74, 113, 181, 0.14), rgba(255, 255, 255, 0.98) 62%);
  box-shadow: 0 18px 54px rgba(74, 113, 181, 0.10);
}

.woocommerce-products-header::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 34px solid rgba(74, 113, 181, 0.08);
}

.luxe-shop-toolbar {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.94)),
    radial-gradient(circle at top right, rgba(235, 211, 176, 0.5), transparent 34%);
  box-shadow: 0 22px 62px rgba(74, 113, 181, 0.11);
}

.luxe-shop-title-block p:not(.eyebrow) {
  margin-top: 10px;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.luxe-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.luxe-filter-chips a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(74, 113, 181, 0.07);
  border: 1px solid rgba(74, 113, 181, 0.15);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.luxe-filter-chips a:hover,
.luxe-filter-chips a.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.luxe-toolbar-search-row {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.luxe-toolbar-search .woocommerce-product-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(232, 238, 248, 0.88);
  border: 1px solid rgba(74, 113, 181, 0.14);
}

.luxe-toolbar-search input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: none;
  background: transparent;
  padding: 0 14px;
}

.luxe-toolbar-search button,
.woocommerce-product-search button {
  min-height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxe-toolbar-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.luxe-toolbar-note span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(235, 211, 176, 0.32);
  color: #6f5a3f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxe-shop-filter-widgets {
  margin-top: 18px;
}

.luxe-filter-widget {
  background: rgba(232, 238, 248, 0.72);
  border-color: rgba(74, 113, 181, 0.14);
}

.woocommerce div.product {
  border-radius: 34px;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.94)),
    radial-gradient(circle at top right, rgba(235, 211, 176, 0.42), transparent 34%);
  box-shadow: 0 26px 78px rgba(74, 113, 181, 0.13);
}

.woocommerce div.product div.images img {
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(74, 113, 181, 0.12);
}

.woocommerce div.product form.cart {
  padding: 18px;
  border-radius: 24px;
  background: rgba(232, 238, 248, 0.58);
  border: 1px solid rgba(74, 113, 181, 0.12);
}

.luxe-single-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.luxe-single-trust div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(235, 211, 176, 0.26);
  border: 1px solid rgba(235, 211, 176, 0.8);
}

.luxe-single-trust strong,
.luxe-single-trust span {
  display: block;
}

.luxe-single-trust strong {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 6px;
}

.luxe-single-trust span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.promo-section {
  gap: 26px;
}

.promo-card {
  min-height: 365px;
  border-radius: 32px;
  box-shadow: 0 22px 62px rgba(74, 113, 181, 0.14);
  border: 1px solid rgba(235, 211, 176, 0.52);
}

.promo-card::before {
  background:
    linear-gradient( 180deg, rgba(53, 59, 84, 0.3) 0%, rgba(53, 59, 84, 0.94) 100% ), linear-gradient( 90deg, rgba(122, 128, 161, 0.88), rgba(74, 80, 110, 0.45) );
}

.promo-tag {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.stylist {
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=80");
}

.academy {
  background-image: url("https://images.unsplash.com/photo-1580618672591-eb180b1a973f?auto=format&fit=crop&w=1200&q=80");
}

.color {
  background-image: url("https://images.unsplash.com/photo-1527799820374-dcf8d9d4a388?auto=format&fit=crop&w=1200&q=80");
}

.trust-strip {
  border-radius: 34px;
  margin-top: 76px;
  background:
    linear-gradient(135deg, rgba(74, 113, 181, 0.18), rgba(235, 211, 176, 0.52)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 36%);
  border: 1px solid rgba(235, 211, 176, 0.84);
  box-shadow: 0 24px 70px rgba(74, 113, 181, 0.12);
}

.trust-strip div {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.trust-strip h3 {
  font-size: 23px;
}

.site-footer {
  background:radial-gradient(circle at 12% 4%, rgba(239, 135, 119, 0.16), transparent 24%), linear-gradient(135deg, #24304F 0%, #5F668F 100%);
  border-top: 1px solid rgba(235, 211, 176, 0.24);
}

.site-footer h4 {
  color: var(--gold);
}

.footer-grid {
  padding-top: 78px;
}

.newsletter input {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 1100px) {
  .luxe-brand-highlights,
  .category-section .category-grid,
  .luxe-single-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxe-toolbar-search-row {
    grid-template-columns: 1fr;
  }

  .luxe-toolbar-note {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .top-slider-track {
    font-size: 11px;
    gap: 42px;
  }

  .header-inner {
    padding: 18px;
  }

  .header-icons a {
    padding: 0 10px;
    min-height: 36px;
  }

  .luxe-slider-frame {
    max-width: calc(100% - 24px);
    margin-top: 20px;
    border-radius: 22px;
  }

  .luxe-slider-frame .metaslider,
  .luxe-slider-frame .metaslider .slides,
  .luxe-slider-frame .metaslider .slides img {
    border-radius: 22px;
  }

  .luxe-brand-highlights,
  .category-section .category-grid,
  .luxe-single-trust {
    grid-template-columns: 1fr;
  }

  .luxe-brand-highlights {
    padding: 0 20px;
  }

  .section,
  .luxe-woocommerce-page,
  .woocommerce-page .site-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-section .section-row,
  .woocommerce-products-header,
  .luxe-shop-toolbar,
  .woocommerce div.product {
    padding: 22px;
    border-radius: 24px;
  }

  .category-card.premium-category-card,
  .category-card.premium-category-card img {
    min-height: 275px;
  }

  .category-card.premium-category-card span {
    font-size: 31px;
  }

  .luxe-toolbar-search .woocommerce-product-search {
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product img,
  .product-card img {
    height: 260px;
  }

  .promo-card {
    min-height: 310px;
  }
}


/* Revision 1.3.0: static JS slider, floating search popup and clearer bottom image sections */
button.search-link {
  cursor: pointer;
  font-family: inherit;
}

.luxe-hero-static-slider {
  max-width: min(1640px, calc(100% - 44px));
  margin: 32px auto 0;
  min-height: clamp(420px, 42vw, 690px);
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(235, 211, 176, 0.86);
  background: #10213c;
  box-shadow: 0 38px 90px rgba(74, 113, 181, 0.18);
  isolation: isolate;
}

.luxe-slide-track,
.luxe-slide {
  min-height: inherit;
}

.luxe-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1s ease;
  background-image:
    linear-gradient(90deg, rgba(12, 28, 54, 0.94) 0%, rgba(74, 113, 181, 0.78) 39%, rgba(74, 113, 181, 0.26) 68%, rgba(19, 32, 51, 0.15) 100%),
    radial-gradient(circle at 26% 35%, rgba(235, 211, 176, 0.36), transparent 32%),
    var(--slide-image);
  background-position: center;
  background-size: cover;
}

.luxe-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.luxe-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.luxe-slide-content {
  width: min(680px, 58%);
  position: relative;
  z-index: 3;
  padding: clamp(34px, 6vw, 92px);
  color: var(--white);
}

.luxe-slide-content .eyebrow {
  color: var(--gold);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.luxe-slide-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 22px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.33);
}

.luxe-slide-content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.75;
  margin-bottom: 30px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
}

.luxe-slide-content .btn {
  position: relative;
  z-index: 4;
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 18px 42px rgba(235, 211, 176, 0.28);
}

.luxe-slide-content .btn:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
}

.luxe-slider-control {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.18);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.luxe-slider-control:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--gold);
  color: var(--ink);
}

.luxe-slider-control.prev {
  left: 22px;
}

.luxe-slider-control.next {
  right: 22px;
}

.luxe-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 7;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.luxe-slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: width 0.28s ease, background 0.28s ease;
}

.luxe-slider-dots button.is-active {
  width: 34px;
  background: var(--gold);
}

.luxe-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.luxe-search-modal.is-open {
  display: flex;
}

.luxe-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 39, 0.66);
  backdrop-filter: blur(8px);
}

.luxe-search-dialog {
  width: min(720px, 100%);
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 34px;
  border: 1px solid rgba(235, 211, 176, 0.78);
  background:
    radial-gradient(circle at 90% 5%, rgba(235, 211, 176, 0.4), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 238, 248, 0.96));
  box-shadow: 0 34px 90px rgba(9, 20, 39, 0.34);
  animation: searchDialogIn 0.28s ease;
}

@keyframes searchDialogIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.luxe-search-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.luxe-search-dialog h2 {
  max-width: 560px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  color: var(--primary);
  margin-bottom: 12px;
}

.luxe-search-help {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 22px;
}

.luxe-popup-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(74, 113, 181, 0.18);
  box-shadow: 0 16px 42px rgba(74, 113, 181, 0.12);
}

.luxe-popup-search-form input[type="search"] {
  min-height: 54px;
  border: 0;
  outline: none;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 16px;
  background: transparent;
}

.luxe-popup-search-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.luxe-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.luxe-search-tags a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(74, 113, 181, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxe-floating-search {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(235, 211, 176, 0.78);
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 20px 44px rgba(74, 113, 181, 0.32);
  cursor: pointer;
  font-family: inherit;
}

.luxe-floating-search span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 18px;
}

.luxe-floating-search strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body.luxe-search-active {
  overflow: hidden;
}

.promo-card,
.promo-card h2,
.promo-card p,
.promo-card .promo-tag,
.trust-strip h3,
.trust-strip p {
  text-shadow: none;
}

.promo-card::before {
  opacity: 1;
  background:
    linear-gradient( 180deg, rgba(53, 59, 84, 0.3) 0%, rgba(53, 59, 84, 0.94) 100% ), linear-gradient( 90deg, rgba(122, 128, 161, 0.88), rgba(74, 80, 110, 0.45) );
}

.promo-card > div {
  width: 100%;
  padding: 4px;
}

.promo-card h2,
.promo-card p {
  color: var(--white) !important;
}

.promo-card p {
  max-width: 360px;
  font-weight: 600;
}

.promo-card .btn-light {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
}

.promo-card .btn-light:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

.trust-strip {
  background:
    linear-gradient( 135deg, rgba(90, 97, 129, 0.96), rgba(122, 128, 161, 0.9) ), radial-gradient( circle at top right, rgba(180, 186, 215, 0.32), transparent 35% );
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.trust-strip h3,
.trust-strip p {
  color: var(--white);
}

.trust-strip span {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 760px) {
  .luxe-hero-static-slider {
    max-width: calc(100% - 24px);
    margin-top: 20px;
    min-height: 560px;
    border-radius: 24px;
  }

  .luxe-slide {
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(12, 28, 54, 0.18) 0%, rgba(12, 28, 54, 0.92) 74%, rgba(12, 28, 54, 0.97) 100%),
      var(--slide-image);
  }

  .luxe-slide-content {
    width: 100%;
    padding: 34px 24px 70px;
  }

  .luxe-slide-content h1 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .luxe-slider-control {
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .luxe-slider-control.prev {
    left: 12px;
  }

  .luxe-slider-control.next {
    right: 12px;
  }

  .luxe-popup-search-form {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .luxe-popup-search-form button {
    width: 100%;
  }

  .luxe-floating-search {
    right: 16px;
    bottom: 16px;
    padding-right: 12px;
  }

  .luxe-floating-search strong {
    display: none;
  }
}


/* Revision 1.4.0: front-page category carousel */
.luxe-category-carousel {
  position: relative;
  padding: 8px 74px 46px;
}

.luxe-carousel-viewport {
  overflow: hidden;
}

.luxe-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.luxe-carousel-slide {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
}

.luxe-carousel-control {
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 18px);
  z-index: 4;
  border: 1px solid rgba(74, 113, 181, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: 0 18px 40px rgba(74, 113, 181, 0.16);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.luxe-carousel-control:hover {
  transform: scale(1.07);
  background: var(--primary);
  color: var(--white);
}

.luxe-carousel-control:disabled {
  opacity: 0.45;
  cursor: default;
}

.luxe-carousel-control.prev {
  left: 0;
}

.luxe-carousel-control.next {
  right: 0;
}

.luxe-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.luxe-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(74, 113, 181, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.luxe-carousel-dots button.is-active {
  width: 32px;
  background: var(--primary);
}

.category-section .section-title {
  margin-bottom: 26px;
}

.category-card.premium-category-card {
  width: 100%;
}

.category-card.premium-category-card::after {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.category-card.premium-category-card:hover::after {
  transform: translateX(4px);
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .luxe-carousel-slide {
    flex-basis: calc((100% - 24px) / 2);
  }

  .luxe-category-carousel {
    padding-left: 62px;
    padding-right: 62px;
  }
}

@media (max-width: 760px) {
  .luxe-category-carousel {
    padding: 0 0 40px;
  }

  .luxe-carousel-slide {
    flex-basis: 100%;
  }

  .luxe-carousel-control {
    top: auto;
    bottom: -2px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .luxe-carousel-control.prev {
    left: calc(50% - 62px);
  }

  .luxe-carousel-control.next {
    right: calc(50% - 62px);
  }

  .luxe-carousel-dots {
    margin-top: 18px;
  }
}
