:root {
  --cx-primary: #016275;
  --cx-primary-2: #4b90aa;
  --cx-green: #8bcc9f;
  --cx-blue: #cfe0e6;
  --cx-ice: #f6f7f4;
  --cx-soft: #edf1ef;
  --cx-graphite: #11161b;
  --cx-text: #5c6870;
  --cx-white: #ffffff;
  --cx-border: rgba(17, 22, 27, 0.08);
  --cx-border-strong: rgba(1, 98, 117, 0.16);
  --cx-shadow-soft: 0 14px 30px rgba(13, 25, 35, 0.05);
  --cx-shadow-card: 0 18px 40px rgba(13, 25, 35, 0.06);
  --cx-radius-xl: 34px;
  --cx-radius-lg: 24px;
  --cx-radius-md: 18px;
  --cx-radius-sm: 12px;
  --cx-container: 1160px;
  --cx-transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cx-text);
  background: var(--cx-ice);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1rem; color: var(--cx-text); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  color: var(--cx-graphite);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
h1 { font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1rem; font-weight: 600; }

.cristalux-container {
  width: min(calc(100% - 40px), var(--cx-container));
  margin-inline: auto;
}
.cristalux-site-main { min-height: 60vh; }

.cristalux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cx-primary);
  font-weight: 800;
  margin-bottom: 18px;
}
.cristalux-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: .8;
}

.cristalux-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cx-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--cx-transition), background var(--cx-transition), border-color var(--cx-transition), box-shadow var(--cx-transition), color var(--cx-transition);
  box-shadow: none;
}
.cristalux-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover {
  transform: translateY(-1px);
  background: #095f71;
  color: #fff;
}
.cristalux-button--ghost {
  background: transparent;
  color: var(--cx-graphite);
  border-color: rgba(1, 98, 117, 0.28);
}
.cristalux-button--ghost:hover {
  background: rgba(1, 98, 117, 0.06);
  color: var(--cx-primary);
}
.cristalux-button--light {
  background: #fff;
  color: var(--cx-graphite);
}
.cristalux-button--light:hover {
  background: #fff;
  color: var(--cx-primary);
}

.cristalux-site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(246, 247, 244, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 22, 27, 0.05);
}
.cristalux-header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.cristalux-brand-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 34px !important; width: auto; }
.cristalux-text-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--cx-primary);
}
.cristalux-primary-nav { justify-self: center; }
.cristalux-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cristalux-menu a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(17, 22, 27, 0.88);
}
.cristalux-menu a:hover,
.cristalux-menu .current-menu-item > a { color: var(--cx-primary); }
.cristalux-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cristalux-header-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 22, 27, 0.10);
  background: rgba(255,255,255,0.55);
  color: var(--cx-graphite);
}
.cristalux-header-icon svg { width: 18px; height: 18px; }
.cristalux-cart-link { position: relative; }
.cristalux-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cx-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}
.cristalux-search-drawer {
  display: none;
  border-top: 1px solid rgba(17, 22, 27, 0.05);
  background: rgba(246, 247, 244, 0.96);
}
body.cristalux-search-open .cristalux-search-drawer { display: block; }
.cristalux-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 0;
}
.search-field {
  min-height: 46px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--cx-border);
  padding: 0 18px;
  background: rgba(255,255,255,.82);
}
.search-submit {
  width: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--cx-primary);
  color: #fff;
}
.search-submit svg { width: 18px; height: 18px; }

.cristalux-hero-section,
.cristalux-home-section,
.cristalux-page-shell,
.cristalux-shop-shell {
  padding: 42px 0 54px;
}
.cristalux-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 56px;
  align-items: center;
}
.cristalux-hero-copy p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.75;
}
.cristalux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 18px;
}
.cristalux-hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 10px;
  color: rgba(17,22,27,.34);
}
.cristalux-hero-media { position: relative; }
.cristalux-hero-frame {
  border-radius: 22px;
  padding: 12px;
  background: #eaf0f1;
}
.cristalux-placeholder-media {
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(1,98,117,.28);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
  display: flex;
  align-items: center;
  justify-content: center;
}
.cristalux-placeholder-media span {
  font-size: 12px;
  color: rgba(1,98,117,.56);
  font-weight: 700;
}
.cristalux-hero-note {
  position: absolute;
  left: -20px;
  bottom: 28px;
  width: 170px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,22,27,.06);
  box-shadow: var(--cx-shadow-soft);
}
.cristalux-hero-note strong {
  display: block;
  color: var(--cx-graphite);
  font-size: 11px;
  margin-bottom: 4px;
}
.cristalux-hero-note span { font-size: 11px; line-height: 1.5; }

.cristalux-section-head {
  margin-bottom: 26px;
}
.section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.cristalux-inline-link {
  color: var(--cx-primary);
  font-weight: 700;
  font-size: 11px;
}

.cristalux-category-grid,
.woocommerce ul.products,
.cristalux-post-grid,
.cristalux-editorial-grid,
.cristalux-pill-grid {
  display: grid;
  gap: 18px;
}
.cristalux-category-grid.refined-four,
.woocommerce ul.products,
.cristalux-post-grid,
.cristalux-editorial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cristalux-category-card {
  display: block;
}
.cristalux-category-art {
  border-radius: 18px;
  overflow: hidden;
  background: #e8eff1;
  margin-bottom: 10px;
}
.cristalux-category-art .cristalux-placeholder-media {
  aspect-ratio: 1 / .78;
  border: 0;
  border-radius: 18px;
}
.cristalux-category-body h3 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.35;
}
.cristalux-category-body span {
  font-size: 10px;
  font-weight: 800;
  color: var(--cx-graphite);
}

.woocommerce ul.products { margin: 0 !important; padding: 0; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}
.cristalux-product-card {
  list-style: none;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,22,27,.06);
  border-radius: 18px;
  padding: 14px;
  box-shadow: none;
  transition: transform var(--cx-transition), border-color var(--cx-transition), box-shadow var(--cx-transition);
}
.cristalux-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1,98,117,.14);
  box-shadow: var(--cx-shadow-soft);
}
.cristalux-product-card__thumb {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}
.cristalux-product-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.cristalux-card-badge,
.woocommerce span.onsale,
.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: auto;
  min-width: auto;
  line-height: 1;
  padding: 5px 7px;
  border-radius: 999px;
  background: #fff;
  color: rgba(17,22,27,.42);
  border: 1px solid rgba(17,22,27,.08);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 3;
}
.cristalux-product-card__content { padding: 0 2px 2px; }
.cristalux-card-category {
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(17,22,27,.34);
  font-weight: 700;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.cristalux-product-card__content h2 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 34px;
}
.cristalux-card-price,
.woocommerce ul.products li.product .price {
  margin-bottom: 10px;
  color: var(--cx-graphite);
  font-size: 11px;
  font-weight: 800;
}
.woocommerce ul.products li.product .price del { opacity: .4; }
.cristalux-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cx-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.cristalux-story-section { background: var(--cx-soft); }
.cristalux-story-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.cristalux-story-media {
  background: #dfe9e2;
  border-radius: 22px;
  padding: 14px;
}
.cristalux-story-media .cristalux-placeholder-media {
  aspect-ratio: 1 / 1;
  background: transparent;
}
.cristalux-story-copy p {
  max-width: 540px;
  font-size: 13px;
  line-height: 1.75;
}
.cristalux-pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.cristalux-pill-grid > div,
.cristalux-editorial-card,
.cristalux-widget {
  padding: 14px 16px;
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  border: 1px solid rgba(17,22,27,.05);
}
.cristalux-pill-grid strong,
.cristalux-editorial-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cx-primary);
  font-size: 11px;
}
.cristalux-pill-grid span,
.cristalux-editorial-card span {
  font-size: 11px;
  line-height: 1.55;
}

.cristalux-wide-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-radius: 28px;
  background: linear-gradient(90deg, var(--cx-primary) 0%, #7baec1 100%);
  color: #fff;
}
.cristalux-banner-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .88;
}
.cristalux-wide-banner h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.cristalux-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
}
.cristalux-page-content,
.cristalux-sidebar,
.cristalux-post {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(17,22,27,.06);
  border-radius: 24px;
  padding: 26px;
}
.cristalux-no-sidebar .cristalux-page-grid,
.woocommerce-cart .cristalux-page-grid,
.woocommerce-checkout .cristalux-page-grid,
.woocommerce-account .cristalux-page-grid {
  grid-template-columns: 1fr;
}
.cristalux-no-sidebar .cristalux-sidebar,
.woocommerce-cart .cristalux-sidebar,
.woocommerce-checkout .cristalux-sidebar,
.woocommerce-account .cristalux-sidebar { display: none !important; }
.widget-title { font-size: 14px; margin-bottom: 12px; }

.cristalux-shop-hero { margin-bottom: 24px; }
.cristalux-shop-hero p,
.term-description,
.woocommerce-products-header__description {
  max-width: 700px;
  font-size: 13px;
}
.cristalux-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.woocommerce-result-count { font-size: 11px; color: rgba(17,22,27,.56); }
.woocommerce .woocommerce-ordering select {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,22,27,.08);
  background: rgba(255,255,255,.82);
  font-size: 11px;
}

.single-product-shell { padding-top: 24px; }
.cristalux-single-product { display: grid; gap: 32px; }
.cristalux-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 470px;
  gap: 26px;
  align-items: start;
}
.cristalux-product-gallery-wrap,
.cristalux-product-summary,
.cristalux-editorial-block,
.cristalux-tabs-wrap,
.cristalux-related-wrap {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,22,27,.06);
  border-radius: 28px;
  padding: 22px;
}
.cristalux-product-gallery-wrap {
  position: sticky;
  top: 92px;
}
.woocommerce div.product div.images {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border-radius: 18px; overflow: hidden; }
.woocommerce div.product div.images img { border-radius: 18px; }
.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li { width: 100% !important; }
.woocommerce div.product div.images .flex-control-thumbs img {
  border-radius: 12px;
  border: 1px solid rgba(17,22,27,.08);
}
.woocommerce-breadcrumb,
.cristalux-product-breadcrumb {
  margin-bottom: 14px;
  font-size: 10px;
  color: rgba(17,22,27,.45);
}
.woocommerce div.product .product_title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cx-graphite);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}
.woocommerce-product-details__short-description,
.cristalux-summary-excerpt {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.cristalux-benefits-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.cristalux-benefits-list li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: rgba(17,22,27,.75);
}
.cristalux-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cx-primary), var(--cx-green));
}
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.woocommerce .quantity .qty {
  min-height: 38px;
  min-width: 76px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,22,27,.1);
}
.product_meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17,22,27,.07);
  font-size: 11px;
}
.cristalux-trust-block {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.cristalux-trust-block > div {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239,246,247,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(1,98,117,.08);
}
.cristalux-trust-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--cx-graphite);
}
.cristalux-trust-block span { font-size: 11px; }
.cristalux-editorial-content {
  max-width: 940px;
  font-size: 14px;
  line-height: 1.85;
}
.cristalux-editorial-content h2,
.cristalux-editorial-content h3,
.cristalux-editorial-content h4 { margin-top: 1.8rem; }
.cristalux-product-extra { display: grid; gap: 20px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0 0 20px !important;
  border-bottom: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(1,98,117,.07) !important;
  border-radius: 999px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 14px !important;
  color: var(--cx-primary) !important;
  font-size: 11px;
  font-weight: 700;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--cx-primary) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #fff !important; }
.related > h2 { margin-bottom: 18px; }

.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.cart-empty { 
  border-radius: 14px;
  font-size: 13px;
}
.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(17,22,27,.06);
  border-radius: 16px;
  overflow: hidden;
}
.return-to-shop .button { margin-top: 10px; }

.cristalux-site-footer {
  margin-top: 24px;
  background: #eef1ee;
  border-top: 1px solid rgba(17,22,27,.05);
}
.cristalux-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 44px 0 24px;
}
.cristalux-site-footer h3,
.cristalux-site-footer h4 {
  font-size: 13px;
  margin-bottom: 12px;
}
.cristalux-footer-menu,
.cristalux-footer-list {
  display: grid;
  gap: 8px;
}
.cristalux-site-footer p,
.cristalux-footer-menu a,
.cristalux-footer-list li {
  font-size: 11px;
  line-height: 1.7;
}
.cristalux-footer-bottom {
  padding: 14px 0 18px;
  border-top: 1px solid rgba(17,22,27,.05);
}

.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;
}

@media (max-width: 1100px) {
  .cristalux-hero-grid,
  .cristalux-story-grid,
  .cristalux-product-top,
  .cristalux-footer-grid,
  .cristalux-page-grid {
    grid-template-columns: 1fr;
  }
  .cristalux-product-gallery-wrap { position: static; }
  .cristalux-category-grid.refined-four,
  .woocommerce ul.products,
  .cristalux-post-grid,
  .cristalux-editorial-grid,
  .cristalux-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .cristalux-header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .cristalux-primary-nav { display: none; }
  .cristalux-wide-banner,
  .section-head-inline,
  .cristalux-shop-toolbar { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .cristalux-hero-note { position: static; width: auto; margin-top: 14px; }
  .cristalux-category-grid.refined-four,
  .woocommerce ul.products,
  .cristalux-post-grid,
  .cristalux-editorial-grid,
  .cristalux-pill-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.8rem; }
}
