@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --wxs-dark: #09110e;
  --wxs-dark-2: #0e1a16;
  --wxs-dark-3: #14231d;
  --wxs-forest: #1b3027;
  --wxs-olive: #65735e;
  --wxs-olive-soft: #aeb7a4;
  --wxs-copper: #d87a48;
  --wxs-copper-2: #ef9a66;
  --wxs-copper-dark: #a9502f;
  --wxs-cream: #f6f1e9;
  --wxs-paper: #fffdf8;
  --wxs-sand: #e8dfd2;
  --wxs-stone: #d8d0c4;
  --wxs-ink: #18201c;
  --wxs-muted: #737b75;
  --wxs-line: rgba(23, 34, 29, .12);
  --wxs-line-dark: rgba(255, 255, 255, .10);
  --wxs-shadow: 0 28px 80px rgba(13, 24, 19, .12);
  --wxs-shadow-sm: 0 12px 35px rgba(13, 24, 19, .09);
  --wxs-radius-xl: 30px;
  --wxs-radius-lg: 22px;
  --wxs-radius-md: 16px;
  --wxs-radius-sm: 12px;

  /* Legacy theme variables are normalized so every public page uses the same palette. */
  --headerTopBackground: #060b09;
  --btn-bg: #d87a48;
  --btn-border: #d87a48;
  --btn-TextColor: #ffffff;
  --whatido_background: #f6f1e9;
  --whatido_TextColor: #18201c;
  --badge_whatidoBackground: #1b3027;
  --badge_whatidoColor: #ffffff;
  --portfolio_background: #0e1a16;
  --portfolio_color: #ffffff;
  --blogs_heroBackground: #0e1a16;
  --blogs_heroTextColor: #ffffff;
  --products_heroBackground: #0e1a16;
  --products_heroTextColor: #ffffff;
  --products_cardBackground: #fffdf8;
  --products_cardTextColor: #18201c;
  --cp__background: #f6f1e9;
  --cp_TextColor: #18201c;
  --cp_boxBackground: #fffdf8;
  --cp_boxTextColor: #18201c;
  --login__Background: #f6f1e9;
  --login__TextColor: #18201c;
  --payment__Background: #f6f1e9;
  --payment__TextColor: #18201c;
  --lastsell_Background: #fffdf8;
  --lastsell_TextColor: #18201c;
  --footer_Background: #060d0a;
  --footer_TextColor: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--wxs-cream) !important;
  color: var(--wxs-ink);
  font-family: 'DM Sans', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: rgba(216, 122, 72, .28); }
a { color: inherit; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease; }
a:hover { text-decoration: none; }
img { max-width: 100%; }
h1,h2,h3,h4,h5,h6,.btn,.navbar-brand { font-family: 'Manrope', sans-serif; }

/* ---------- Global Bootstrap normalization ---------- */
.container { max-width: 1240px; }
.btn { border-radius: 12px; font-weight: 700; box-shadow: none !important; }
.btn-primary,
.btn-success,
.wxs-submit-action,
.wxs-form-button,
.wxs-account-action {
  color: #fff !important;
  background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark)) !important;
  border-color: transparent !important;
}
.btn-primary:hover,
.btn-success:hover,
.wxs-submit-action:hover,
.wxs-form-button:hover,
.wxs-account-action:hover { transform: translateY(-1px); filter: brightness(.96); }
.btn-outline-primary { color: var(--wxs-copper-dark) !important; border-color: rgba(216,122,72,.45) !important; }
.btn-outline-primary:hover { color: #fff !important; background: var(--wxs-copper) !important; }
.bg-primary { background: var(--wxs-forest) !important; }
.bg-success { background: #46614f !important; }
.bg-warning { background: var(--wxs-copper) !important; color: #fff !important; }
.bg-danger { background: #9d4f46 !important; }
.bg-dark { background: var(--wxs-dark-2) !important; }
.text-primary { color: var(--wxs-copper-dark) !important; }
.text-success { color: #42634c !important; }
.text-warning { color: #d28b3f !important; }
.badge-primary { background: var(--wxs-forest) !important; }
.badge-success { background: #4f6957 !important; }
.badge-warning { background: var(--wxs-copper) !important; color: #fff !important; }
.card,
.modal-content {
  border: 1px solid var(--wxs-line) !important;
  border-radius: var(--wxs-radius-lg) !important;
  background: var(--wxs-paper) !important;
  box-shadow: var(--wxs-shadow-sm);
}
.card-header,
.modal-header {
  border-bottom: 1px solid var(--wxs-line) !important;
  background: rgba(232,223,210,.46) !important;
  color: var(--wxs-ink) !important;
  border-radius: var(--wxs-radius-lg) var(--wxs-radius-lg) 0 0 !important;
}
.form-control,
.custom-select {
  min-height: 48px;
  color: var(--wxs-ink);
  border: 1px solid rgba(24,32,28,.15) !important;
  border-radius: 12px !important;
  background: #fffdfa !important;
  box-shadow: none !important;
}
.form-control:focus,
.custom-select:focus { border-color: rgba(216,122,72,.65) !important; box-shadow: 0 0 0 4px rgba(216,122,72,.10) !important; }
textarea.form-control { min-height: 130px; }
.table { color: var(--wxs-ink); }
.table thead th { border: 0 !important; color: var(--wxs-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.table td { border-top: 1px solid rgba(24,32,28,.08) !important; vertical-align: middle; }
.pagination .page-link { color: var(--wxs-ink); border-color: var(--wxs-line); background: var(--wxs-paper); }
.pagination .active .page-link { color: #fff; border-color: var(--wxs-copper); background: var(--wxs-copper); }
.alert { border: 1px solid var(--wxs-line); border-radius: 14px; }

/* ---------- Verification / utility bar ---------- */
.wxs-verify-banner {
  padding: 9px 0;
  color: #fff;
  background: var(--wxs-copper-dark);
  font-size: 13px;
}
.wxs-verify-banner .btn { color: var(--wxs-copper-dark); background: #fff; border: 0; border-radius: 999px; }
.wxs-utilitybar {
  position: relative;
  z-index: 1040;
  color: rgba(255,255,255,.68);
  background: #060b09;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
}
.wxs-utilitybar .container { min-height: 34px; gap: 16px; }
.wxs-utility-left,.wxs-utility-right { gap: 22px; }
.wxs-utility-link,.wxs-utility-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.68);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
}
.wxs-utility-link:hover { color: var(--wxs-copper-2); }
.wxs-utility-link i,.wxs-utility-status i { color: var(--wxs-copper); font-size: 15px; }
.wxs-language img,.wxs-menu-popover img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }

/* ---------- Header ---------- */
.wxs-header {
  z-index: 1030;
  color: #fff;
  background: rgba(8,16,13,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.wxs-header .navbar { min-height: 78px; padding: 9px 0; }
.wxs-brand { display: inline-flex; align-items: center; gap: 12px; margin-right: 26px; }
.wxs-brand-emblem {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  color: var(--wxs-copper-2);
  background: linear-gradient(145deg, rgba(216,122,72,.20), rgba(255,255,255,.035));
  border: 1px solid rgba(216,122,72,.32);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 10px 30px rgba(0,0,0,.22);
}
.wxs-brand-emblem img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.wxs-brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.wxs-brand-copy strong { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.wxs-brand-copy small { max-width: 170px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: rgba(255,255,255,.48); font-size: 9px; margin-top: 6px; }
.wxs-nav { gap: 5px; }
.wxs-nav .nav-link {
  position: relative;
  padding: 13px 14px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px;
  font-weight: 600;
}
.wxs-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--wxs-copper);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.wxs-nav .nav-link:hover,
.wxs-nav .nav-link.is-active { color: #fff !important; }
.wxs-nav .nav-link:hover::after,
.wxs-nav .nav-link.is-active::after { transform: scaleX(1); }
.wxs-header-actions { gap: 9px; }
.wxs-login-link,
.wxs-signup-link,
.wxs-cart-link,
.wxs-account-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none !important;
}
.wxs-login-link { color: rgba(255,255,255,.74); padding: 0 10px; font-weight: 700; font-size: 13px; }
.wxs-login-link:hover { color: #fff; }
.wxs-signup-link {
  gap: 8px;
  padding: 0 16px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 9px 28px rgba(216,122,72,.20);
  font-size: 12px;
  font-weight: 700;
}
.wxs-signup-link:hover { transform: translateY(-1px); }
.wxs-cart-link { width: 42px; color: #fff; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); }
.wxs-cart-link:hover { color: var(--wxs-copper-2); background: rgba(216,122,72,.10); }
.wxs-header-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; font-size: 21px; }
.wxs-header-icon b { position: absolute; top: -9px; right: -10px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--wxs-copper); color: #fff; font-size: 9px; line-height: 17px; text-align: center; }
.wxs-account-trigger { gap: 8px; padding: 4px 10px; color: #fff; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); }
.wxs-account-copy { display: flex; flex-direction: column; line-height: 1.05; }
.wxs-account-copy small { color: rgba(255,255,255,.46); font-size: 8px; }
.wxs-account-copy strong { color: #fff; font-size: 11px; margin-top: 4px; }
.wxs-menu-toggle { color: #fff; font-size: 30px; border: 0; outline: none !important; }
.wxs-menu-popover { min-width: 190px; padding: 8px; background: #101a16; border: 1px solid rgba(255,255,255,.10); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.30); }
.wxs-menu-popover .dropdown-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; color: rgba(255,255,255,.72); border-radius: 9px; font-size: 12px; }
.wxs-menu-popover .dropdown-item:hover { color: #fff; background: rgba(216,122,72,.14); }
.wxs-menu-popover .dropdown-divider { border-color: rgba(255,255,255,.08); }

/* ---------- Mobile navigation ---------- */
.wxs-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  z-index: 99999;
  overflow-x: hidden;
  padding-top: 70px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(216,122,72,.18), transparent 30%),
    #09110e;
  box-shadow: -25px 0 80px rgba(0,0,0,.34);
  transition: width .3s ease;
}
.wxs-drawer-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; color: #fff; background: rgba(255,255,255,.06); font-size: 24px; }
.wxs-drawer-brand { display: flex; align-items: center; gap: 12px; margin: 0 24px 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.10); }
.wxs-drawer-brand div { display: flex; flex-direction: column; }
.wxs-drawer-brand strong { color: #fff; }
.wxs-drawer-brand small { color: rgba(255,255,255,.48); margin-top: 4px; }
.wxs-drawer-links { display: flex; flex-direction: column; gap: 7px; padding: 0 20px; }
.wxs-drawer-links a { display: flex; align-items: center; gap: 12px; padding: 12px 13px; color: rgba(255,255,255,.78); border-radius: 13px; font-weight: 600; }
.wxs-drawer-links a i { width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; color: var(--wxs-copper-2); background: rgba(216,122,72,.10); border: 1px solid rgba(216,122,72,.18); border-radius: 11px; font-size: 19px; }
.wxs-drawer-links a:hover { color: #fff; background: rgba(255,255,255,.055); }
.wxs-drawer-links .wxs-drawer-primary { color: #fff; background: rgba(216,122,72,.16); }

/* ---------- Homepage hero ---------- */
.wxs-home { background: var(--wxs-cream); }
.wxs-spotlight {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(93,115,91,.18), transparent 32%),
    radial-gradient(circle at 7% 72%, rgba(216,122,72,.13), transparent 31%),
    linear-gradient(135deg, #07100c 0%, #0c1713 52%, #0d1c17 100%);
}
.wxs-spotlight-grid { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 64px 64px; transform: perspective(800px) rotateX(60deg) translateY(43%); transform-origin: bottom; }
.wxs-spotlight-grid::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent, #07100c 72%); }
.wxs-aurora { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .5; }
.wxs-aurora-a { width: 260px; height: 260px; top: -100px; left: -70px; background: rgba(216,122,72,.18); }
.wxs-aurora-b { width: 360px; height: 360px; right: -130px; bottom: -140px; background: rgba(98,126,99,.16); }
.wxs-spotlight-layout { min-height: 680px; padding: 76px 0 92px; }
.wxs-overline { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--wxs-copper-2); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.wxs-overline i { font-size: 16px; }
.wxs-spotlight h1 { max-width: 650px; margin: 0 0 23px; color: #fff; font-family: 'Playfair Display', serif; font-size: clamp(47px, 5.4vw, 76px); font-weight: 600; line-height: 1.03; letter-spacing: -.035em; }
.wxs-spotlight h1 span { color: var(--wxs-copper-2); }
.wxs-spotlight-text { max-width: 610px; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.75; }
.wxs-spotlight-text p:last-child { margin-bottom: 0; }
.wxs-action-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 29px; }
.wxs-cta { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 19px; border: 1px solid transparent; border-radius: 12px; font-size: 13px; font-weight: 700; }
.wxs-cta:hover { transform: translateY(-2px); }
.wxs-cta-solid { color: #fff !important; background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark)); border-color: rgba(255,255,255,.10); box-shadow: 0 13px 32px rgba(216,122,72,.22); }
.wxs-cta-ghost { color: #fff !important; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.20); }
.wxs-cta-ghost:hover { background: rgba(255,255,255,.075); }
.wxs-cta-outline { color: #fff !important; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.20); }
.wxs-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 35px; color: rgba(255,255,255,.58); }
.wxs-proof-stack { display: flex; padding-left: 8px; }
.wxs-proof-stack span { width: 34px; height: 34px; margin-left: -8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, #4d6555, #172820); border: 2px solid #0a1511; border-radius: 50%; font-size: 9px; font-weight: 800; }
.wxs-proof-stack span:nth-child(2) { background: linear-gradient(135deg, var(--wxs-copper), #814329); }
.wxs-proof > div:not(.wxs-proof-stack):not(.wxs-proof-score) { display: flex; flex-direction: column; padding-right: 16px; border-right: 1px solid rgba(255,255,255,.12); }
.wxs-proof strong { color: #fff; font-size: 11px; }
.wxs-proof small { margin-top: 3px; font-size: 9px; }
.wxs-proof-score { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 6px; }
.wxs-proof-score i { grid-row: 1 / 3; color: #f0b153; font-size: 18px; }
.wxs-proof-score small { grid-column: 2; }

/* hero mock dashboard */
.wxs-device-scene { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; perspective: 1100px; }
.wxs-orbit { position: absolute; border: 1px solid rgba(216,122,72,.18); border-radius: 50%; }
.wxs-orbit-a { width: 480px; height: 480px; transform: rotate(-18deg); }
.wxs-orbit-b { width: 390px; height: 390px; border-style: dashed; opacity: .55; }
.wxs-device-laptop { position: relative; z-index: 3; width: min(500px, 88%); transform: rotateY(-7deg) rotateX(2deg) translateX(-12px); filter: drop-shadow(0 40px 45px rgba(0,0,0,.42)); }
.wxs-laptop-screen { height: 315px; padding: 24px; overflow: hidden; border: 9px solid #222924; border-radius: 20px 20px 11px 11px; background: linear-gradient(145deg, #0d1713, #15241d); box-shadow: inset 0 0 0 1px rgba(255,255,255,.045); }
.wxs-ui-head { display: flex; align-items: center; justify-content: space-between; color: #fff; font-size: 12px; }
.wxs-ui-head div { display: flex; gap: 5px; }
.wxs-ui-head i { width: 7px; height: 7px; display: block; border-radius: 50%; background: rgba(255,255,255,.16); }
.wxs-ui-head i:first-child { background: var(--wxs-copper); }
.wxs-ui-body { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: center; margin-top: 36px; }
.wxs-ui-score { position: relative; width: 98px; height: 98px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 8px solid rgba(255,255,255,.06); border-top-color: var(--wxs-copper); border-right-color: #6b806e; border-radius: 50%; }
.wxs-ui-score span { color: #fff; font-size: 27px; font-weight: 800; }
.wxs-ui-score small { color: rgba(255,255,255,.42); font-size: 7px; }
.wxs-ui-chart { height: 125px; display: flex; align-items: flex-end; gap: 9px; padding: 12px; border-radius: 13px; background: rgba(255,255,255,.028); }
.wxs-ui-chart b { width: 12%; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, rgba(216,122,72,.38), var(--wxs-copper)); }
.wxs-ui-chart b:nth-child(1) { height: 29%; }.wxs-ui-chart b:nth-child(2) { height: 43%; }.wxs-ui-chart b:nth-child(3) { height: 35%; }.wxs-ui-chart b:nth-child(4) { height: 67%; }.wxs-ui-chart b:nth-child(5) { height: 53%; }.wxs-ui-chart b:nth-child(6) { height: 80%; }.wxs-ui-chart b:nth-child(7) { height: 72%; }
.wxs-ui-panels { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 9px; margin-top: 23px; }
.wxs-ui-panels span { height: 44px; border-radius: 9px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.045); }
.wxs-laptop-base { width: 112%; height: 18px; margin-left: -6%; border-radius: 2px 2px 50% 50%; background: linear-gradient(#555b56, #202521); box-shadow: 0 8px 12px rgba(0,0,0,.25); }
.wxs-laptop-base::after { content: ''; display: block; width: 80px; height: 4px; margin: 0 auto; border-radius: 0 0 5px 5px; background: #131714; }
.wxs-device-phone { position: absolute; z-index: 6; right: 7%; bottom: 42px; width: 135px; height: 260px; padding: 14px 10px; border: 6px solid #242a25; border-radius: 28px; background: #f5f0e7; box-shadow: 0 25px 35px rgba(0,0,0,.38); transform: rotate(4deg); }
.wxs-phone-notch { width: 48px; height: 7px; margin: -8px auto 10px; border-radius: 0 0 8px 8px; background: #242a25; }
.wxs-phone-cover { height: 118px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, #17251f, #283d32); }
.wxs-phone-cover img { width: 92%; height: 92%; object-fit: contain; }
.wxs-phone-lines { display: flex; flex-direction: column; gap: 8px; margin: 14px 5px; }
.wxs-phone-lines span { height: 7px; border-radius: 999px; background: #ddd5c8; }.wxs-phone-lines span:nth-child(2) { width: 77%; }.wxs-phone-lines span:nth-child(3) { width: 56%; }
.wxs-device-phone button { position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--wxs-copper); border: 0; border-radius: 50%; }
.wxs-float-card { position: absolute; z-index: 7; display: flex; flex-direction: column; color: #fff; background: rgba(19,32,26,.88); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.wxs-float-delivery { top: 65px; left: 0; width: 145px; padding: 15px; }
.wxs-float-rating { right: -9px; top: 160px; width: 155px; padding: 16px; }
.wxs-float-card small { color: rgba(255,255,255,.50); font-size: 8px; }.wxs-float-card strong { margin: 3px 0; font-size: 23px; }.wxs-float-card span { color: rgba(255,255,255,.48); font-size: 7px; }
.wxs-float-delivery svg { width: 100%; height: 35px; margin-top: 8px; }.wxs-float-delivery path { fill: none; stroke: #7ea081; stroke-width: 2; }
.wxs-float-rating div { display: flex; gap: 1px; color: #f0b153; font-size: 13px; margin-bottom: 6px; }
.wxs-stamp { position: absolute; z-index: 5; top: 30px; right: 12px; width: 95px; height: 95px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--wxs-copper-2); border: 1px solid rgba(216,122,72,.35); border-radius: 50%; background: rgba(6,13,10,.65); transform: rotate(8deg); }
.wxs-stamp::before,.wxs-stamp::after { content: ''; position: absolute; inset: 7px; border: 1px dashed rgba(216,122,72,.25); border-radius: inherit; }.wxs-stamp::after { inset: 17px; border-style: solid; }
.wxs-stamp strong { z-index: 1; font-family: 'Playfair Display', serif; font-size: 24px; }.wxs-stamp span { z-index: 1; max-width: 70px; margin-top: 4px; text-align: center; font-size: 5px; letter-spacing: .12em; }

/* ---------- Trust strip ---------- */
.wxs-credibility { position: relative; z-index: 10; margin-top: -34px; }
.wxs-credibility-shell { min-height: 91px; display: grid; grid-template-columns: repeat(4, 1fr) 2.1fr; align-items: center; padding: 15px 21px; background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 17px; box-shadow: var(--wxs-shadow); }
.wxs-credibility-item { display: flex; align-items: center; gap: 10px; padding: 0 14px; border-right: 1px solid var(--wxs-line); }
.wxs-credibility-item i { width: 36px; height: 36px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: var(--wxs-forest); background: #e7e8df; border-radius: 11px; font-size: 19px; }
.wxs-credibility-item div { display: flex; flex-direction: column; }.wxs-credibility-item strong { color: var(--wxs-ink); font-size: 17px; }.wxs-credibility-item small { color: var(--wxs-muted); font-size: 8px; }
.wxs-tech-list { display: flex; align-items: center; justify-content: space-around; gap: 8px; padding-left: 18px; }.wxs-tech-list span { color: var(--wxs-muted); font-size: 9px; }.wxs-tech-list b { color: #5d655f; font-size: 10px; font-weight: 700; }

/* ---------- Home sections ---------- */
.wxs-section { position: relative; padding: 92px 0; }
.wxs-section-head { margin-bottom: 38px; }
.wxs-section-head-split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.wxs-overline-muted { display: inline-flex; margin-bottom: 12px; color: var(--wxs-copper-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.wxs-section-head h2,.wxs-workflow-head h2,.wxs-insights-head h2 { margin: 0; color: var(--wxs-ink); font-family: 'Playfair Display', serif; font-size: clamp(35px, 4vw, 52px); font-weight: 600; line-height: 1.07; letter-spacing: -.03em; }
.wxs-section-note { max-width: 360px; }.wxs-section-note p { margin: 0 0 14px; color: var(--wxs-muted); font-size: 13px; line-height: 1.7; }.wxs-section-note a,.wxs-insights-head > a { display: inline-flex; align-items: center; gap: 7px; color: var(--wxs-copper-dark); font-size: 11px; font-weight: 700; }
.wxs-services { padding-top: 100px; background: var(--wxs-cream); }
.wxs-service-card { overflow: hidden; border: 1px solid var(--wxs-line); border-radius: 19px; background: var(--wxs-paper); box-shadow: 0 10px 30px rgba(19,30,25,.05); transition: transform .25s ease, box-shadow .25s ease; }
.wxs-service-card:hover { transform: translateY(-7px); box-shadow: var(--wxs-shadow-sm); }
.wxs-service-visual { position: relative; height: 170px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.wxs-service-visual::before,.wxs-service-visual::after { content: ''; position: absolute; border-radius: 50%; }
.wxs-service-visual::before { width: 175px; height: 175px; right: -50px; top: -65px; border: 1px solid rgba(255,255,255,.16); }.wxs-service-visual::after { width: 110px; height: 110px; left: -35px; bottom: -50px; background: rgba(255,255,255,.07); }
.wxs-service-visual > i { position: relative; z-index: 1; font-size: 61px; color: rgba(255,255,255,.88); filter: drop-shadow(0 10px 20px rgba(0,0,0,.14)); }
.wxs-service-label,.wxs-service-order { position: absolute; z-index: 2; top: 14px; color: rgba(255,255,255,.76); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }.wxs-service-label { left: 14px; padding: 6px 9px; background: rgba(0,0,0,.19); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }.wxs-service-order { right: 15px; }
.service-variant-1 .wxs-service-visual { background: linear-gradient(135deg, #172a22, #395344); }.service-variant-2 .wxs-service-visual { background: linear-gradient(135deg, #0f1714, #222f29); }.service-variant-3 .wxs-service-visual { background: linear-gradient(135deg, #cfc5b7, #e8e0d5); }.service-variant-3 .wxs-service-visual > i,.service-variant-3 .wxs-service-label,.service-variant-3 .wxs-service-order { color: #27342c; }.service-variant-3 .wxs-service-label { background: rgba(255,255,255,.45); border-color: rgba(28,42,34,.08); }.service-variant-4 .wxs-service-visual { background: linear-gradient(135deg, #b76037, #dd8a55); }
.wxs-service-body { padding: 20px 20px 21px; }.wxs-service-body h3 { margin: 0 0 9px; color: var(--wxs-ink); font-family: 'Playfair Display', serif; font-size: 21px; }.wxs-service-body > div { min-height: 66px; color: var(--wxs-muted); font-size: 11px; line-height: 1.65; }.wxs-service-body > div p { margin-bottom: 0; }.wxs-service-body a { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--wxs-ink); font-size: 10px; font-weight: 700; }

/* featured products */
.wxs-market-showcase { padding-top: 20px; padding-bottom: 72px; }
.wxs-market-shell { padding: 25px; color: #fff; background: linear-gradient(135deg, #0b1511, #14251d); border: 1px solid rgba(255,255,255,.07); border-radius: 24px; box-shadow: 0 25px 60px rgba(7,16,12,.18); }
.wxs-market-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }.wxs-market-head span { color: var(--wxs-copper-2); font-size: 9px; font-weight: 800; letter-spacing: .1em; }.wxs-market-head h2 { margin: 5px 0 0; color: #fff; font-family: 'Playfair Display', serif; font-size: 34px; }.wxs-market-head > a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.66); font-size: 10px; }
.wxs-market-card { overflow: hidden; cursor: pointer; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09); border-radius: 17px; transition: transform .25s ease, border-color .25s ease; }.wxs-market-card:hover { transform: translateY(-6px); border-color: rgba(216,122,72,.40); }
.wxs-market-media { position: relative; height: 155px; overflow: hidden; }.wxs-market-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,13,.56), transparent 55%); }.wxs-market-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }.wxs-market-card:hover img { transform: scale(1.05); }.wxs-market-media span,.wxs-market-media b { position: absolute; z-index: 2; top: 11px; padding: 6px 9px; border-radius: 999px; font-size: 7px; }.wxs-market-media span { left: 11px; color: var(--wxs-ink); background: rgba(255,253,248,.92); }.wxs-market-media b { right: 11px; color: #fff; background: var(--wxs-copper); }
.wxs-market-body { padding: 16px; }.wxs-market-body h3 { margin: 0 0 7px; color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; }.wxs-market-body p { min-height: 37px; margin: 0 0 13px; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.55; }.wxs-market-meta { display: flex; align-items: end; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }.wxs-market-meta > div { display: flex; flex-direction: column; }.wxs-market-meta span { color: #dca154; font-size: 8px; }.wxs-market-meta strong { margin-top: 4px; color: #fff; font-size: 15px; }.wxs-market-meta > a { width: 31px; height: 31px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,.07); border-radius: 50%; }

/* about and process */
.wxs-story-workflow { padding-top: 26px; background: var(--wxs-cream); }
.wxs-profile-card { padding: 27px; color: #fff; overflow: hidden; background: radial-gradient(circle at 90% 10%, rgba(216,122,72,.16), transparent 30%), linear-gradient(150deg, #14271f, #0c1713); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; box-shadow: var(--wxs-shadow-sm); }.wxs-profile-card .wxs-overline-muted { color: var(--wxs-copper-2); }
.wxs-profile-intro { display: flex; align-items: center; gap: 15px; margin: 2px 0 20px; }.wxs-profile-photo { width: 78px; height: 78px; flex: 0 0 auto; padding: 4px; border: 1px solid rgba(216,122,72,.55); border-radius: 50%; }.wxs-profile-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }.wxs-profile-intro h2 { margin: 0; color: #fff; font-family: 'Playfair Display', serif; font-size: 27px; }.wxs-profile-intro p { margin: 4px 0 0; color: rgba(255,255,255,.48); font-size: 9px; }.wxs-profile-copy { color: rgba(255,255,255,.60); font-size: 11px; line-height: 1.65; }.wxs-profile-copy p:last-child { margin-bottom: 0; }
.wxs-skill-list { display: flex; flex-direction: column; gap: 11px; margin: 20px 0; }.wxs-skill-list > div { display: grid; grid-template-columns: 1fr auto; gap: 5px 12px; }.wxs-skill-list span,.wxs-skill-list strong { color: rgba(255,255,255,.68); font-size: 8px; }.wxs-skill-list i { grid-column: 1 / 3; height: 4px; overflow: hidden; background: rgba(255,255,255,.08); border-radius: 999px; }.wxs-skill-list b { display: block; height: 100%; background: linear-gradient(90deg, var(--wxs-copper), #889a80); border-radius: inherit; }
.wxs-workflow { padding: 30px; background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 22px; box-shadow: 0 12px 35px rgba(18,29,24,.05); }.wxs-workflow-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid var(--wxs-line); }.wxs-workflow-head h2 { max-width: 610px; font-size: 39px; }
.wxs-workflow-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding-top: 29px; }.wxs-workflow-steps::before { content: ''; position: absolute; top: 54px; left: 9%; right: 9%; border-top: 1px dashed rgba(24,32,28,.26); }.wxs-workflow-steps article { position: relative; z-index: 1; padding: 0 13px; }.wxs-workflow-steps article > span { display: block; margin-bottom: 8px; color: var(--wxs-copper-dark); font-size: 9px; font-weight: 800; }.wxs-workflow-steps article > i { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; color: var(--wxs-forest); background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 50%; font-size: 20px; }.wxs-workflow-steps h3 { margin: 16px 0 7px; color: var(--wxs-ink); font-family: 'Playfair Display', serif; font-size: 16px; }.wxs-workflow-steps p { margin: 0; color: var(--wxs-muted); font-size: 8px; line-height: 1.55; }

/* testimonials + blog */
.wxs-insights { padding-top: 15px; }
.wxs-insights-head { min-height: 86px; display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }.wxs-insights-head h2 { font-size: 36px; }
.wxs-review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }.wxs-review-grid.myReferences { display: block; }.wxs-review-card { min-height: 214px; padding: 22px; background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 18px; }.wxs-review-card > i { color: var(--wxs-copper); font-size: 25px; }.wxs-review-copy { min-height: 94px; margin: 10px 0 16px; color: var(--wxs-muted); font-size: 11px; line-height: 1.65; }.wxs-review-copy p:last-child { margin-bottom: 0; }.wxs-review-person { display: flex; align-items: center; gap: 10px; }.wxs-review-person img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }.wxs-review-person > div { display: flex; flex-direction: column; }.wxs-review-person strong { font-size: 10px; }.wxs-review-person span { color: #d69b45; font-size: 9px; }
.wxs-journal-list { display: flex; flex-direction: column; gap: 12px; }.wxs-journal-row { display: grid; grid-template-columns: 140px 1fr 35px; align-items: center; gap: 16px; min-height: 112px; padding: 10px; background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 17px; transition: transform .2s ease, box-shadow .2s ease; }.wxs-journal-row:hover { transform: translateX(4px); box-shadow: var(--wxs-shadow-sm); }.wxs-journal-thumb { height: 92px; overflow: hidden; border-radius: 12px; }.wxs-journal-thumb img { width: 100%; height: 100%; object-fit: cover; }.wxs-journal-row span { color: var(--wxs-copper-dark); font-size: 8px; font-weight: 800; text-transform: uppercase; }.wxs-journal-row h3 { margin: 5px 0 7px; font-family: 'Playfair Display', serif; font-size: 17px; line-height: 1.2; }.wxs-journal-row h3 a { color: var(--wxs-ink); }.wxs-journal-row p { margin: 0; color: var(--wxs-muted); font-size: 8px; }.wxs-journal-arrow { width: 31px; height: 31px; display: inline-flex; align-items: center; justify-content: center; color: var(--wxs-copper-dark); background: #f0e6da; border-radius: 50%; }

/* community */
.wxs-community { padding-top: 20px; padding-bottom: 55px; }.wxs-community-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; min-height: 154px; padding: 25px 30px; color: #fff; background: radial-gradient(circle at 70% 20%, rgba(216,122,72,.15), transparent 30%), linear-gradient(135deg, #08120e, #13231d); border: 1px solid rgba(255,255,255,.08); border-radius: 21px; }.wxs-community-panel::after { content: ''; position: absolute; right: -30px; top: -50px; width: 220px; height: 220px; border: 1px solid rgba(216,122,72,.16); border-radius: 50%; 
    pointer-events: none;}.wxs-community-icon { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark)); border-radius: 18px; box-shadow: 0 15px 35px rgba(216,122,72,.22); font-size: 34px; }.wxs-community-panel span { color: var(--wxs-copper-2); font-size: 8px; font-weight: 800; letter-spacing: .1em; }.wxs-community-panel h2 { margin: 4px 0; color: #fff; font-family: 'Playfair Display', serif; font-size: 30px; }.wxs-community-panel p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }

/* ---------- Last sales ---------- */
.wxs-sales-strip { padding: 40px 0 18px; background: var(--wxs-cream); }.wxs-sales-panel { display: grid; grid-template-columns: 1.1fr 2fr; gap: 20px; align-items: center; padding: 20px; background: var(--wxs-paper); border: 1px solid var(--wxs-line); border-radius: 18px; box-shadow: var(--wxs-shadow-sm); }.wxs-sales-intro { display: flex; align-items: center; gap: 14px; }.wxs-sales-icon { width: 47px; height: 47px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--wxs-forest); border-radius: 14px; font-size: 23px; }.wxs-sales-intro small { color: var(--wxs-copper-dark); font-size: 8px; font-weight: 700; text-transform: uppercase; }.wxs-sales-intro h3 { margin: 4px 0 0; font-family: 'Playfair Display', serif; font-size: 18px; }.wxs-sales-list { display: flex; gap: 10px; overflow-x: auto; }.wxs-sales-item { min-width: 190px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 11px; background: #f2ede5; border-radius: 12px; }.wxs-sale-dot { width: 7px; height: 7px; background: var(--wxs-copper); border-radius: 50%; }.wxs-sales-item div { display: flex; flex-direction: column; }.wxs-sales-item strong { font-size: 9px; }.wxs-sales-item small { color: var(--wxs-muted); font-size: 7px; }.wxs-sales-item b { font-size: 10px; }

/* ---------- CTA and Footer ---------- */
.wxs-footer-pitch { padding: 20px 0 0; background: var(--wxs-cream); }.wxs-pitch-panel { position: relative; z-index: 3; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 23px; min-height: 142px; padding: 24px 30px; color: #fff; overflow: hidden; background: radial-gradient(circle at 15% 120%, rgba(216,122,72,.24), transparent 35%), linear-gradient(135deg, #101b16, #07100d); border: 1px solid rgba(255,255,255,.09); border-radius: 22px 22px 0 0; }.wxs-pitch-panel::after { content: ''; position: absolute; right: -30px; top: -70px; width: 250px; height: 250px; border: 1px solid rgba(216,122,72,.18); border-radius: 50%; 
    pointer-events: none;}.wxs-pitch-icon { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark)); border-radius: 18px; box-shadow: 0 15px 34px rgba(216,122,72,.22); font-size: 34px; }.wxs-pitch-panel span { color: var(--wxs-copper-2); font-size: 8px; font-weight: 800; letter-spacing: .11em; }.wxs-pitch-panel h2 { margin: 4px 0; color: #fff; font-family: 'Playfair Display', serif; font-size: 30px; }.wxs-pitch-panel p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }.wxs-pitch-actions { position: relative; z-index: 2; display: flex; gap: 9px; }
.wxs-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.58); background: #060d0a; }.wxs-footer-pattern { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 70px 70px; }.wxs-footer-grid { padding: 65px 0 48px; }.wxs-footer-brand { display: inline-flex; align-items: center; gap: 12px; }.wxs-footer-brand > span:last-child { display: flex; flex-direction: column; }.wxs-footer-brand strong { color: #fff; font-size: 16px; text-transform: uppercase; }.wxs-footer-brand small { max-width: 200px; margin-top: 5px; color: rgba(255,255,255,.38); font-size: 8px; }.wxs-footer-description { max-width: 360px; margin: 22px 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.7; }.wxs-footer-socials { display: flex; gap: 8px; }.wxs-footer-socials a { width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.68); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; }.wxs-footer-socials a:hover { color: #fff; background: rgba(216,122,72,.16); border-color: rgba(216,122,72,.30); }.wxs-footer h3 { margin-bottom: 17px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.wxs-footer ul { margin: 0; padding: 0; list-style: none; }.wxs-footer li { margin-bottom: 9px; }.wxs-footer li a { color: rgba(255,255,255,.48); font-size: 10px; }.wxs-footer li a:hover { color: var(--wxs-copper-2); }.wxs-footer-contact li { display: flex; align-items: flex-start; gap: 8px; }.wxs-footer-contact i { color: var(--wxs-copper); font-size: 15px; }.wxs-footer-bottom { min-height: 61px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid rgba(255,255,255,.08); }.wxs-footer-bottom p { margin: 0; color: rgba(255,255,255,.34); font-size: 9px; }.wxs-footer-bottom a { color: var(--wxs-copper-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- User-facing legacy pages: common layout ---------- */
#main:not(.wxs-home) { min-height: 55vh; background: var(--wxs-cream); }
.products_hero,
.blogs_hero,
.wxs-item-hero,
.wxs-article-hero,
.wxs-contact-hero,
.wxs-account-hero,
.wxs-empty-page,
.wxs-page-hero:not(.wxs-spotlight) {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  color: #fff !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,122,72,.16), transparent 28%),
    linear-gradient(135deg, #09130f, #17261f) !important;
  border: 0 !important;
}
.products_hero::before,.blogs_hero::before,.wxs-item-hero::before,.wxs-article-hero::before,.wxs-contact-hero::before,.wxs-account-hero::before,.wxs-empty-page::before { content: ''; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 60px 60px; }
.products_hero h1,.blogs_hero h1,.wxs-item-hero h1,.wxs-article-hero h1,.wxs-contact-hero h1,.wxs-account-hero h1,.wxs-empty-page h1,.wxs-page-hero h1 { position: relative; z-index: 1; color: #fff !important; font-family: 'Playfair Display', serif; font-size: clamp(38px,5vw,62px); }
.wxs-decor-wave { display: none !important; }
.wxs-back-link { z-index: 5; }
.wxs-catalog-section,
.wxs-journal-section,
.wxs-contact-page,
.wxs-basket-section,
.wxs-payment-page,
.wxs-content-page,
.wxs-account-section,
.wxs-product-page,
.wxs-article-page,
.helpCenter_section { padding-top: 70px !important; padding-bottom: 85px !important; background: var(--wxs-cream) !important; }
.wxs-trail { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0 0 28px; padding: 9px 12px; list-style: none; background: rgba(255,253,248,.78); border: 1px solid var(--wxs-line); border-radius: 12px; }
.wxs-trail-item { display: inline-flex; align-items: center; }.wxs-trail-item:not(:last-child)::after { content: '›'; margin-left: 7px; color: var(--wxs-copper); }.wxs-trail-link { color: var(--wxs-muted) !important; font-size: 10px; }.wxs-trail-item:last-child .wxs-trail-link { color: var(--wxs-ink) !important; font-weight: 700; }
.wxs-section-title { color: var(--wxs-ink) !important; font-family: 'Playfair Display', serif; font-size: 34px !important; }

/* products and categories */
.wxs-catalog-entry,
.wxs-category-tile,
.wxs-category-card,
.wxs-catalog-list .card,
.wxs-category-popular .card {
  height: 100%;
  overflow: hidden;
  background: var(--wxs-paper) !important;
  border: 1px solid var(--wxs-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(17,28,23,.06) !important;
  transition: transform .22s ease, box-shadow .22s ease;
}
.wxs-catalog-entry:hover,.wxs-category-tile:hover,.wxs-catalog-list .card:hover { transform: translateY(-6px); box-shadow: var(--wxs-shadow-sm) !important; }
.wxs-catalog-entry img,.wxs-category-art img,.wxs-catalog-list .card-img-top { width: 100%; object-fit: cover; }
.wxs-category-art { overflow: hidden; border-radius: 18px 18px 0 0; }.wxs-category-art img { min-height: 210px; }.wxs-category-name { padding: 16px 18px; background: var(--wxs-paper) !important; color: var(--wxs-ink) !important; }.wxs-category-backdrop { background: rgba(9,17,14,.72) !important; backdrop-filter: blur(3px); }.wxs-category-backdrop h3 { color: #fff !important; font-size: 13px; }
.wxs-content-card-media,.wxs-js-item-details { color: var(--wxs-ink) !important; background: var(--wxs-paper) !important; }
.wxs-js-item-details h4,.wxs-js-item-details h5,.wxs-content-card-media h4 { color: var(--wxs-ink) !important; }

/* product detail */
.wxs-item-box,.wxs-item-related { padding: 24px; background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 20px !important; box-shadow: var(--wxs-shadow-sm); }
.wxs-item-detail h1,.wxs-item-detail h2,.wxs-item-detail h3,.wxs-item-detail h4 { color: var(--wxs-ink) !important; }.wxs-item-detail { color: var(--wxs-muted); }.wxs-item-box img { border-radius: 15px; }.wxs-item-related { margin-top: 22px; }
.wxs-js-add-basket { background: linear-gradient(135deg,var(--wxs-copper),var(--wxs-copper-dark)) !important; border: 0 !important; }

/* blogs */
.wxs-blog-list-page .card,.wxs-article-aside .card { overflow: hidden; background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 18px !important; box-shadow: 0 10px 30px rgba(17,28,23,.05); }
.wxs-blog-list-page .card-img-top { min-height: 215px; object-fit: cover; }.wxs-blog-list-page .card-title { color: var(--wxs-ink); font-family: 'Playfair Display', serif; font-size: 23px; }.wxs-blog-list-page .card-text { color: var(--wxs-muted); font-size: 12px; line-height: 1.65; }
.wxs-article-title { color: var(--wxs-ink); font-family: 'Playfair Display', serif; }.wxs-article-comments,.wxs-comment { background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 18px !important; }.wxs-comment-author img { border: 2px solid var(--wxs-sand); }

/* help center / contact */
.wxs-faq-card,.wxs-thread,.wxs-contact-info,.wxs-contact-form,.wxs-contact-grid { background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 19px !important; box-shadow: 0 10px 30px rgba(17,28,23,.05); }
.wxs-faq-card,.wxs-thread { margin-bottom: 12px; }.wxs-faq-card .card-header,.wxs-thread .card-header { background: transparent !important; }.wxs-contact-info,.wxs-contact-form { padding: 28px; }.wxs-contact-social a { color: var(--wxs-ink) !important; background: #eee8df !important; border-radius: 11px; }

/* cart and payment */
.wxs-basket-mini,.wxs-basket-total,.wxs-basket-coupon,.wxs-balance-pay,.wxs-card-pay,.wxs-payment-page .card { background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 20px !important; box-shadow: var(--wxs-shadow-sm); }
.wxs-basket-head { color: #fff !important; background: var(--wxs-dark-2) !important; border-radius: 18px 18px 0 0; }.wxs-basket-item { border-bottom: 1px solid var(--wxs-line) !important; }.wxs-basket-media img { border-radius: 12px; }.wxs-basket-price,.wxs-basket-total h3 { color: var(--wxs-ink) !important; }.wxs-quantity-input { border-radius: 10px !important; }
.wxs-checkout-divider { border-color: var(--wxs-line) !important; }

/* auth */
.wxs-auth-page,.wxs-login-page,.wxs-register-page,.wxs-mail-verify,.wxs-verification-page { min-height: 70vh; background: radial-gradient(circle at 15% 20%, rgba(216,122,72,.10), transparent 27%), var(--wxs-cream) !important; }.wxs-access-card { overflow: hidden; background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 24px !important; box-shadow: var(--wxs-shadow); }.wxs-access-card::before { content: ''; display: block; height: 7px; background: linear-gradient(90deg,var(--wxs-forest),var(--wxs-copper)); }.wxs-auth-page h1,.wxs-auth-page h2,.wxs-login-page h1,.wxs-register-page h1 { color: var(--wxs-ink) !important; font-family: 'Playfair Display', serif; }.wxs-access-divider { color: var(--wxs-muted); }.wxs-access-social { border-radius: 12px !important; }

/* customer panel */
.wxs-account-hero { min-height: 230px !important; }.wxs-account-stat { min-height: 125px; padding: 23px; overflow: hidden; position: relative; color: #fff !important; border: 1px solid rgba(255,255,255,.09); border-radius: 18px !important; box-shadow: var(--wxs-shadow-sm); }.wxs-account-stat::after { content: ''; position: absolute; right: -30px; bottom: -50px; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }.wxs-account-stat h5 { color: rgba(255,255,255,.60) !important; font-size: 11px; }.wxs-account-stat h3 { color: #fff !important; font-size: 27px; }.wxs-account-section .wxs-account-profile .nav-link { margin-bottom: 5px; color: var(--wxs-muted); border-radius: 11px; }.wxs-account-section .wxs-account-profile .nav-link:hover,.wxs-account-section .wxs-account-profile .nav-link.bg-primary { color: #fff !important; background: var(--wxs-forest) !important; }.wxs-account-nav-head { display: block; margin-bottom: 12px; color: var(--wxs-copper-dark); font-size: 9px; font-weight: 800; letter-spacing: .08em; }.wxs-account-section .wxs-panel-top img { width: 92px; height: 92px; object-fit: cover; }.wxs-account-tickets .card,.wxs-ticket-message,.wxs-ticket-new { background: var(--wxs-paper) !important; border: 1px solid var(--wxs-line) !important; border-radius: 17px !important; }

/* 404 */
.wxs-empty-page { min-height: 60vh; }.wxs-empty-page h1 { color: var(--wxs-copper-2) !important; font-size: clamp(90px,18vw,200px) !important; line-height: .8; }.wxs-empty-page h3 { color: #fff !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .wxs-credibility-shell { grid-template-columns: repeat(4,1fr); }.wxs-tech-list { grid-column: 1 / -1; padding: 14px 0 0; margin-top: 12px; border-top: 1px solid var(--wxs-line); }.wxs-device-scene { transform: scale(.91); }.wxs-float-rating { right: -20px; }
  .wxs-workflow-steps { grid-template-columns: repeat(3,1fr); gap: 28px 0; }.wxs-workflow-steps::before { display: none; }
}
@media (max-width: 991.98px) {
  .wxs-header .navbar { min-height: 70px; }.wxs-spotlight-layout { padding: 70px 0 55px; }.wxs-spotlight h1 { max-width: 760px; }.wxs-device-scene { margin: -15px auto 0; transform: scale(.86); }.wxs-credibility { margin-top: -18px; }.wxs-credibility-shell { grid-template-columns: repeat(2,1fr); }.wxs-credibility-item:nth-child(2) { border-right: 0; }.wxs-credibility-item { padding: 12px 16px; }.wxs-tech-list { grid-column: 1 / -1; }.wxs-section-head-split { align-items: flex-start; flex-direction: column; }.wxs-section-note { max-width: 620px; }.wxs-workflow-steps { grid-template-columns: repeat(2,1fr); }.wxs-community-panel,.wxs-pitch-panel { grid-template-columns: auto 1fr; }.wxs-community-panel > a,.wxs-pitch-actions { grid-column: 2; justify-self: start; }.wxs-pitch-panel { border-radius: 22px 22px 0 0; }.wxs-sales-panel { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
  .wxs-utilitybar .container { justify-content: center !important; }.wxs-utility-right { display: none !important; }.wxs-brand-copy small { max-width: 125px; }.wxs-spotlight-layout { min-height: 0; }.wxs-spotlight h1 { font-size: 45px; }.wxs-spotlight-text { font-size: 13px; }.wxs-proof > div:not(.wxs-proof-stack):not(.wxs-proof-score) { border-right: 0; }.wxs-device-scene { min-height: 420px; margin: -45px -70px -35px; transform: scale(.68); }.wxs-credibility { margin-top: 0; padding-top: 18px; background: var(--wxs-cream); }.wxs-credibility-shell { grid-template-columns: 1fr 1fr; padding: 10px; }.wxs-credibility-item { border-right: 0; border-bottom: 1px solid var(--wxs-line); }.wxs-tech-list { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }.wxs-tech-list span { grid-column: 1 / -1; }.wxs-section { padding: 70px 0; }.wxs-section-head h2,.wxs-workflow-head h2 { font-size: 37px; }.wxs-market-head { align-items: flex-start; flex-direction: column; }.wxs-workflow-head { align-items: flex-start; flex-direction: column; }.wxs-workflow-steps { grid-template-columns: 1fr; }.wxs-workflow-steps article { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; }.wxs-workflow-steps article > span { grid-column: 2; margin-bottom: -4px; }.wxs-workflow-steps article > i { grid-row: 1 / 4; }.wxs-workflow-steps h3 { margin: 0 0 4px; }.wxs-review-grid { grid-template-columns: 1fr; }.wxs-journal-row { grid-template-columns: 105px 1fr; }.wxs-journal-arrow { display: none; }.wxs-community-panel,.wxs-pitch-panel { grid-template-columns: 1fr; text-align: left; }.wxs-community-panel > a,.wxs-pitch-actions { grid-column: 1; }.wxs-pitch-actions { flex-wrap: wrap; }.wxs-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }.wxs-catalog-section,.wxs-journal-section,.wxs-contact-page,.wxs-basket-section,.wxs-payment-page,.wxs-content-page,.wxs-account-section,.wxs-product-page,.wxs-article-page { padding-top: 45px !important; padding-bottom: 55px !important; }
}
@media (max-width: 479.98px) {
  .wxs-brand-emblem { width: 41px; height: 41px; }.wxs-brand-copy strong { font-size: 14px; }.wxs-spotlight h1 { font-size: 39px; }.wxs-action-row { align-items: stretch; flex-direction: column; }.wxs-cta { width: 100%; }.wxs-device-scene { margin: -70px -120px -55px; transform: scale(.53); }.wxs-credibility-shell { grid-template-columns: 1fr; }.wxs-credibility-item { border-bottom: 1px solid var(--wxs-line); }.wxs-tech-list { grid-template-columns: repeat(2,1fr); }.wxs-section-head h2,.wxs-workflow-head h2,.wxs-insights-head h2 { font-size: 33px; }.wxs-market-shell { padding: 18px; }.wxs-profile-card,.wxs-workflow { padding: 22px; }.wxs-journal-row { grid-template-columns: 1fr; }.wxs-journal-thumb { height: 150px; }.wxs-pitch-actions { width: 100%; }.wxs-pitch-actions .wxs-cta { width: 100%; }.wxs-pitch-icon,.wxs-community-icon { width: 60px; height: 60px; font-size: 28px; }
}

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

/* ========================================================================
   v5 — Real hero carousel, collision fixes and clean section separation
   ======================================================================== */
.wxs-spotlight-carousel {
  position: relative;
  isolation: isolate;
  min-height: 700px;
}
.wxs-spotlight-carousel .wxs-spotlight-track {
  position: relative;
  z-index: 2;
  display: grid;
}
.wxs-spotlight-carousel .wxs-spotlight-panel {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(32px, 0, 0);
  transition: opacity .65s ease, transform .65s ease, visibility .65s ease;
}
.wxs-spotlight-carousel .wxs-spotlight-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .72;
  pointer-events: none;
}
.wxs-spotlight-carousel .hero-slide-1::before { background: radial-gradient(circle at 80% 26%, rgba(85,123,95,.13), transparent 32%); }
.wxs-spotlight-carousel .hero-slide-2::before { background: radial-gradient(circle at 73% 20%, rgba(216,122,72,.12), transparent 30%); }
.wxs-spotlight-carousel .hero-slide-3::before { background: radial-gradient(circle at 85% 58%, rgba(199,170,114,.13), transparent 34%); }
.wxs-spotlight-carousel .wxs-spotlight-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}
.wxs-spotlight-carousel .wxs-spotlight-layout {
  min-height: 700px;
  padding: 74px 0 112px;
}
.wxs-spotlight-carousel .wxs-spotlight-copy,
.wxs-spotlight-carousel .wxs-spotlight-visual { position: relative; z-index: 3; }

/* Keep decorative circles behind the interface and stop widget collisions. */
.wxs-spotlight-carousel .wxs-device-scene {
  width: 100%;
  max-width: 650px;
  min-height: 520px;
  margin: 0 auto;
  transform: none;
}
.wxs-spotlight-carousel .wxs-orbit { z-index: 0; pointer-events: none; }
.wxs-spotlight-carousel .wxs-orbit-a { width: 455px; height: 455px; }
.wxs-spotlight-carousel .wxs-orbit-b { width: 350px; height: 350px; }
.wxs-spotlight-carousel .wxs-device-laptop { z-index: 3; width: min(500px, 82%); transform: rotateY(-6deg) rotateX(2deg) translateX(-10px); }
.wxs-spotlight-carousel .wxs-device-phone { z-index: 6; right: 5%; bottom: 34px; }
.wxs-spotlight-carousel .wxs-float-delivery { z-index: 8; top: 66px; left: 4px; }
.wxs-spotlight-carousel .wxs-float-rating { z-index: 8; top: 190px; right: -2px; }
.wxs-spotlight-carousel .wxs-stamp { z-index: 7; top: 24px; right: 68px; width: 88px; height: 88px; transform: rotate(5deg); }
.wxs-spotlight-carousel .stage-variant-2 .wxs-ui-chart b { background: linear-gradient(to top, rgba(103,132,105,.38), #8fa88f); }
.wxs-spotlight-carousel .stage-variant-2 .wxs-ui-score { border-top-color: #93aa91; border-right-color: var(--wxs-copper); }
.wxs-spotlight-carousel .stage-variant-3 .wxs-ui-chart b { background: linear-gradient(to top, rgba(216,122,72,.32), #e9a072); }

.wxs-carousel-arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.wxs-carousel-arrow:hover {
  color: #fff;
  background: rgba(216,122,72,.20);
  border-color: rgba(216,122,72,.42);
  transform: translateY(-50%) scale(1.05);
}
.wxs-carousel-arrow i { font-size: 27px; }
.wxs-carousel-prev { left: max(22px, calc((100vw - 1450px) / 2)); }
.wxs-carousel-next { right: max(22px, calc((100vw - 1450px) / 2)); }

.wxs-carousel-nav {
  position: absolute;
  z-index: 21;
  right: 50%;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(50%);
}
.wxs-carousel-dots { display: flex; align-items: center; gap: 9px; }
.wxs-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
  transition: width .25s ease, background .25s ease, transform .25s ease;
}
.wxs-carousel-dots button.is-active { width: 27px; background: var(--wxs-copper-2); }
.wxs-carousel-dots button:hover { transform: scale(1.15); background: rgba(255,255,255,.72); }
.wxs-carousel-timer { position: absolute; z-index: 19; right: 0; bottom: 0; left: 0; height: 2px; overflow: hidden; background: rgba(255,255,255,.055); }
.wxs-carousel-timer span { width: 100%; height: 100%; display: block; background: linear-gradient(90deg, var(--wxs-copper), var(--wxs-copper-2)); transform-origin: left center; }
@keyframes wxsShowcasePulse { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* The trust bar now has its own flow; it no longer sits on top of the slider. */
.wxs-credibility {
  position: relative;
  z-index: 12;
  margin-top: 0 !important;
  padding: 18px 0 0;
  background: var(--wxs-cream);
}
.wxs-credibility .wxs-credibility-shell { position: relative; transform: none; }
.wxs-services { padding-top: 78px; }

@media (max-width: 1399.98px) {
  .wxs-carousel-prev { left: 14px; }
  .wxs-carousel-next { right: 14px; }
  .wxs-spotlight-carousel .wxs-float-delivery { left: 10px; }
  .wxs-spotlight-carousel .wxs-float-rating { right: 4px; }
}
@media (max-width: 1199.98px) {
  .wxs-spotlight-carousel .wxs-device-scene { max-width: 570px; }
  .wxs-spotlight-carousel .wxs-device-laptop { width: 78%; }
  .wxs-spotlight-carousel .wxs-float-delivery { left: -4px; }
  .wxs-spotlight-carousel .wxs-float-rating { right: -4px; }
  .wxs-spotlight-carousel .wxs-stamp { right: 58px; }
}
@media (max-width: 991.98px) {
  .wxs-spotlight-carousel { min-height: 0; }
  .wxs-spotlight-carousel .wxs-spotlight-layout { min-height: 0; padding: 72px 0 96px; }
  .wxs-spotlight-carousel .wxs-device-scene { max-width: 650px; min-height: 500px; margin-top: 10px; }
  .wxs-carousel-arrow { top: auto; bottom: 28px; width: 40px; height: 40px; transform: none; }
  .wxs-carousel-arrow:hover { transform: scale(1.05); }
  .wxs-carousel-prev { left: 24px; }
  .wxs-carousel-next { right: 24px; }
  .wxs-carousel-nav { bottom: 37px; }
  .wxs-credibility { padding-top: 18px; }
}
@media (max-width: 767.98px) {
  .wxs-spotlight-carousel .wxs-spotlight-layout { padding: 58px 0 82px; }
  .wxs-spotlight-carousel .wxs-device-scene { min-height: 360px; margin: 16px auto 0; }
  .wxs-spotlight-carousel .wxs-device-laptop { width: 88%; transform: rotateY(-4deg) rotateX(1deg); }
  .wxs-spotlight-carousel .wxs-laptop-screen { height: 245px; padding: 18px; }
  .wxs-spotlight-carousel .wxs-ui-body { grid-template-columns: 82px 1fr; gap: 15px; margin-top: 24px; }
  .wxs-spotlight-carousel .wxs-ui-score { width: 76px; height: 76px; border-width: 6px; }
  .wxs-spotlight-carousel .wxs-ui-score span { font-size: 22px; }
  .wxs-spotlight-carousel .wxs-ui-chart { height: 96px; }
  .wxs-spotlight-carousel .wxs-device-phone { right: 5%; bottom: 4px; width: 105px; height: 208px; border-width: 5px; border-radius: 22px; }
  .wxs-spotlight-carousel .wxs-phone-cover { height: 87px; }
  .wxs-spotlight-carousel .wxs-float-delivery,
  .wxs-spotlight-carousel .wxs-float-rating,
  .wxs-spotlight-carousel .wxs-stamp { display: none; }
  .wxs-spotlight-carousel .wxs-orbit-a { width: 340px; height: 340px; }
  .wxs-spotlight-carousel .wxs-orbit-b { width: 275px; height: 275px; }
  .wxs-carousel-arrow { display: none; }
  .wxs-carousel-nav { bottom: 29px; }
  .wxs-credibility { padding-top: 14px; }
  .wxs-services { padding-top: 66px; }
}
@media (max-width: 479.98px) {
  .wxs-spotlight-carousel .wxs-spotlight-layout { padding: 48px 0 76px; }
  .wxs-spotlight-carousel .wxs-device-scene { min-height: 290px; }
  .wxs-spotlight-carousel .wxs-laptop-screen { height: 195px; border-width: 6px; }
  .wxs-spotlight-carousel .wxs-ui-body { grid-template-columns: 62px 1fr; gap: 10px; margin-top: 17px; }
  .wxs-spotlight-carousel .wxs-ui-score { width: 58px; height: 58px; border-width: 5px; }
  .wxs-spotlight-carousel .wxs-ui-score span { font-size: 17px; }
  .wxs-spotlight-carousel .wxs-ui-chart { height: 73px; padding: 8px; gap: 5px; }
  .wxs-spotlight-carousel .wxs-ui-panels { margin-top: 13px; }
  .wxs-spotlight-carousel .wxs-ui-panels span { height: 28px; }
  .wxs-spotlight-carousel .wxs-device-phone { width: 84px; height: 166px; right: 3%; bottom: 4px; padding: 11px 7px; }
  .wxs-spotlight-carousel .wxs-phone-cover { height: 66px; }
  .wxs-spotlight-carousel .wxs-phone-lines { gap: 5px; margin: 9px 3px; }
  .wxs-spotlight-carousel .wxs-phone-lines span { height: 5px; }
  .wxs-spotlight-carousel .wxs-device-phone button { width: 26px; height: 26px; right: 8px; bottom: 8px; }
}


/* Warext Studios v5: readable navigation and managed visual assets */
.wxs-utilitybar {
  background: #07110e !important;
  color: rgba(255,255,255,.78) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.wxs-header,
.wxs-header.sticky-top,
.wxs-header .navbar {
  background: rgba(7,17,14,.985) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.09) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.wxs-header .navbar-brand,
.wxs-header .wxs-brand-copy,
.wxs-header .wxs-brand-copy strong,
.wxs-header .wxs-brand-copy small,
.wxs-header .wxs-nav .nav-link,
.wxs-header .wxs-login-link,
.wxs-header .wxs-account-trigger,
.wxs-header .wxs-account-trigger strong,
.wxs-header .wxs-account-trigger small,
.wxs-header .wxs-cart-link,
.wxs-header .wxs-menu-toggle {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}
.wxs-header .wxs-brand-copy small,
.wxs-header .wxs-account-trigger small { color: rgba(255,255,255,.58) !important; }
.wxs-header .wxs-nav .nav-link { color: rgba(255,255,255,.76) !important; }
.wxs-header .wxs-nav .nav-link:hover,
.wxs-header .wxs-nav .nav-link.is-active { color: #fff !important; }
.wxs-header .wxs-nav .nav-link::after { background: var(--wxs-copper-2) !important; }
.wxs-header .wxs-signup-link {
  color: #fff !important;
  background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-2)) !important;
  border-color: rgba(255,255,255,.08) !important;
}
.wxs-header .wxs-header-icon,
.wxs-header .wxs-menu-toggle {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.12) !important;
}
.wxs-header .wxs-brand-emblem img { display:block !important; opacity:1 !important; }
.home-managed-icon,
.wxs-service-icon-image {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.wxs-service-icon-image { width: 42px; height: 42px; }
.wxs-phone-cover-empty {
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(216,122,72,.22),rgba(20,61,48,.46));
  color:#fff;
}
.wxs-phone-cover-empty i { font-size: 32px; }
.warext-quill-editor { min-height: 180px; background: #fff; }
@media (max-width:991.98px) {
  .wxs-header .navbar-collapse { background:#07110e !important; }
  .wxs-header .wxs-menu-toggle { display:inline-flex !important; align-items:center; justify-content:center; }
}

/* Warext Studios v7: light navbar, dark readable labels, seamless hero transition */
.wxs-header,
.wxs-header.sticky-top,
.wxs-header .navbar {
  background: #ffffff !important;
  color: #111713 !important;
  border-color: #e5e7e3 !important;
  opacity: 1 !important;
  visibility: visible !important;
  backdrop-filter: blur(18px) !important;
}
.wxs-header {
  margin: 0 !important;
  box-shadow: 0 8px 24px rgba(8, 20, 15, .06) !important;
}
.wxs-header .navbar {
  margin: 0 !important;
  border-bottom: 0 !important;
}
.wxs-header + .wxs-home,
.wxs-header + main,
.wxs-header ~ .wxs-home {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.wxs-header .navbar-brand,
.wxs-header .wxs-brand-copy,
.wxs-header .wxs-brand-copy strong,
.wxs-header .wxs-nav .nav-link,
.wxs-header .wxs-login-link,
.wxs-header .wxs-account-trigger,
.wxs-header .wxs-account-trigger strong,
.wxs-header .wxs-cart-link,
.wxs-header .wxs-menu-toggle {
  color: #111713 !important;
  text-shadow: none !important;
}
.wxs-header .wxs-brand-copy small,
.wxs-header .wxs-account-trigger small {
  color: #6f756f !important;
}
.wxs-header .wxs-nav .nav-link {
  color: #3e4641 !important;
}
.wxs-header .wxs-nav .nav-link:hover,
.wxs-header .wxs-nav .nav-link.is-active {
  color: #111713 !important;
}
.wxs-header .wxs-nav .nav-link::after {
  background: var(--wxs-copper) !important;
}
.wxs-header .wxs-header-icon,
.wxs-header .wxs-account-trigger,
.wxs-header .wxs-cart-link,
.wxs-header .wxs-menu-toggle {
  color: #17231f !important;
  background: #f4f5f2 !important;
  border-color: #dfe3dd !important;
}
.wxs-header .wxs-signup-link {
  color: #fff !important;
  background: linear-gradient(135deg, var(--wxs-copper), var(--wxs-copper-dark)) !important;
  border-color: transparent !important;
}
.wxs-header .wxs-brand-emblem {
  background: #f6f3ed !important;
  border-color: rgba(216,122,72,.32) !important;
  box-shadow: 0 8px 20px rgba(20,35,29,.08) !important;
}
.wxs-header .wxs-brand-emblem img {
  opacity: 1 !important;
  filter: none !important;
}
@media (max-width: 991.98px) {
  .wxs-header .navbar-collapse {
    background: #ffffff !important;
    border: 1px solid #e3e6e1 !important;
    box-shadow: 0 20px 50px rgba(8,20,15,.12) !important;
  }
  .wxs-header .wxs-nav .nav-link {
    color: #202720 !important;
  }
}

/* ========================================================================
   Warext Studios v14 — navbar scroll progress (hidden at page top)
   ======================================================================== */
.wxs-header { overflow: visible !important; }
.wxs-scroll-meter {
  position: fixed !important;
  z-index: 2147480000 !important;
  top: var(--wxs-meter-top, 0px) !important;
  right: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: max(4px, var(--scroll-progress-height, 4px)) !important;
  display: block !important;
  overflow: visible !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate3d(0, -6px, 0) scaleY(.65);
  transform-origin: center top;
  background: transparent !important;
  border: 0 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.65), 0 3px 9px rgba(8,20,15,.08) !important;
  transition: top 80ms linear, opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}
.wxs-scroll-meter.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) scaleY(1);
  background: rgba(12, 29, 22, .18) !important;
  transition-delay: 0s;
}
.wxs-scroll-meter [data-wxs-scroll-bar] {
  position: relative !important;
  display: block !important;
  width: var(--wxs-meter-value, 0%);
  min-width: 0 !important;
  max-width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  background-color: var(--scroll-progress-color, #d87a48) !important;
  background-image: linear-gradient(90deg, #873f28 0%, var(--scroll-progress-color, #d87a48) 55%, #ffd09d 100%) !important;
  box-shadow: 0 0 14px rgba(216,122,72,.72), 0 0 3px rgba(255,255,255,.8) inset !important;
  transition: width 65ms linear !important;
  will-change: width;
}
.wxs-scroll-meter.has-progress [data-wxs-scroll-bar]::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff7ed;
  border: 2px solid var(--scroll-progress-color, #d87a48);
  box-shadow: 0 0 14px rgba(216,122,72,.95);
  transform: translateY(-50%);
}
.wxs-scroll-meter.is-complete [data-wxs-scroll-bar] {
  box-shadow: 0 0 20px rgba(216,122,72,.9), 0 0 4px rgba(255,255,255,.95) inset !important;
}
.wxs-spotlight-carousel[data-wxs-ready="1"] .wxs-spotlight-panel { will-change: opacity, transform; }
.wxs-spotlight-carousel[data-wxs-ready="1"] .wxs-carousel-timer span { will-change: transform; }
@media (max-width: 767.98px) {
  .wxs-scroll-meter { height: max(5px, var(--scroll-progress-height, 4px)) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .wxs-scroll-meter, .wxs-scroll-meter [data-wxs-scroll-bar] { transition: none !important; }
}



/* Warext Studios v15 interaction and security UI */
.wxs-community-panel > *,
.wxs-pitch-panel > * { position: relative; z-index: 2; }
.wxs-community-panel .wxs-cta,
.wxs-pitch-panel .wxs-cta { position: relative; z-index: 4; pointer-events: auto !important; }

.wxs-announcement {
    position: relative;
    z-index: 1020;
    background: linear-gradient(90deg, #0a2018, #10281f);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(216,122,72,.35);
}
.wxs-announcement-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .55rem 2.75rem .55rem 1rem;
    position: relative;
}
.wxs-announcement-content { font-size: .9rem; line-height: 1.45; text-align: center; }
.wxs-announcement-content a { color: #f6b389; text-decoration: underline; }
.wxs-announcement-close {
    position: absolute; right: .65rem; top: 50%; transform: translateY(-50%);
    border: 0; background: rgba(255,255,255,.08); color: #fff;
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
}
.wxs-announcement-close:hover { background: rgba(216,122,72,.28); }

.wxs-turnstile-wrap { margin: 1rem 0; min-height: 65px; display:flex; align-items:center; }
.wxs-password-field { position: relative; }
.wxs-password-field .form-control { padding-right: 3rem; }
.wxs-password-toggle {
    position:absolute; right:.45rem; top:50%; transform:translateY(-50%);
    width:2.25rem; height:2.25rem; border:0; border-radius:.55rem;
    background:rgba(10,32,24,.08); color:#0a2018; cursor:pointer;
}
.wxs-identity-lock-note { font-size:.8rem; color:#7a817e; margin-top:.35rem; }
.wxs-contact-empty { color: rgba(255,255,255,.65); font-size:.92rem; }
