/* WHITE SOUL - base site styles. Loaded after Bootstrap 5 + variables.css.
   Premium/minimal: generous whitespace, restrained shadows, purposeful motion. */

*, *::before, *::after { -webkit-font-smoothing: antialiased; }

/* Global horizontal-overflow guard: any single element on any page that's even a few px
   wider than the viewport (a banner image, a long badge, admin-pasted CMS content) would
   otherwise make the WHOLE page horizontally scrollable, showing a blank gap on the right
   on mobile/tablet. Everything that should scroll sideways on its own (announcement ticker,
   PDP mobile thumbnails, filter chips, order timeline) already uses its own overflow-x:auto
   on a bounded container, so this never blocks an intentional scroll area. */
html, body { overflow-x: hidden; max-width: 100%; }

html { scroll-behavior: smooth; }

/* Gentle whole-page fade/rise on load - removed once triggered, so back/forward navigation isn't sluggish. */
body.ws-page-enter { animation: ws-page-in .45s var(--ws-ease-out) both; }
@keyframes ws-page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  font-family: var(--ws-font-body);
  color: var(--ws-black);
  background-color: var(--ws-white);
}

h1, h2, h3, h4, h5, h6, .ws-heading {
  font-family: var(--ws-font-heading);
  font-weight: 600;
  letter-spacing: 0.2px;
}

::selection { background: var(--ws-primary); color: #fff; }

/* Consistent, visible focus ring everywhere - keyboard accessibility, not just mouse hover. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, .btn:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--ws-primary);
  outline-offset: 2px;
}

/* ---------------- Buttons ---------------- */
.btn, button, .ws-btn {
  font-family: var(--ws-font-button);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--ws-radius);
  transition: background-color .2s var(--ws-ease), border-color .2s var(--ws-ease), color .2s var(--ws-ease), transform .15s var(--ws-ease), box-shadow .2s var(--ws-ease);
}

.btn-primary, .ws-btn-primary {
  background-color: var(--ws-primary);
  border-color: var(--ws-primary);
  color: var(--ws-white);
}
.btn-primary:hover, .ws-btn-primary:hover {
  background-color: #bf4b2e;
  border-color: #bf4b2e;
  color: var(--ws-white);
  box-shadow: 0 6px 16px rgba(214, 90, 59, 0.28);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

/* Success morph state - used briefly after add-to-cart to confirm the click landed. */
.ws-btn-success, .ws-btn-success:hover {
  background-color: var(--ws-success) !important;
  border-color: var(--ws-success) !important;
  transform: none !important;
}

/* Material-style click ripple - opt in via data-ripple="1" (used on primary add-to-cart/checkout actions). */
.ws-ripple { position: relative; overflow: hidden; }
.ws-ripple-circle {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,.55); pointer-events: none;
  animation: ws-ripple-anim .55s var(--ws-ease-out);
}
@keyframes ws-ripple-anim { to { transform: scale(2.6); opacity: 0; } }

.btn-outline-primary {
  color: var(--ws-primary);
  border-color: var(--ws-primary);
}
.btn-outline-primary:hover {
  background-color: var(--ws-primary);
  border-color: var(--ws-primary);
  transform: translateY(-1px);
}

.btn-outline-secondary:hover, .btn-outline-dark:hover { transform: translateY(-1px); }
.btn:disabled, .btn.disabled { transform: none !important; box-shadow: none !important; }

a { color: var(--ws-primary); text-decoration: none; transition: color .15s var(--ws-ease); }
a:hover { color: #bf4b2e; }

.ws-text-gold { color: var(--ws-gold); }
.ws-bg-cream { background-color: var(--ws-bg); }

/* ---------------- Announcement bar ---------------- */
.ws-announcement-bar {
  background-color: var(--ws-black);
  color: var(--ws-white);
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.8px;
  padding: 9px 12px;
  font-family: var(--ws-font-button);
  text-transform: uppercase;
  overflow: hidden;
}
.ws-announce-track { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.ws-announce-track span { display: inline-flex; align-items: center; opacity: 0.92; }
.ws-announce-track span i { color: var(--ws-secondary); }
@media (max-width: 767.98px) {
  .ws-announce-track span:nth-child(2) { display: none; }
}
@media (max-width: 479.98px) {
  .ws-announce-track span:nth-child(3) { display: none; }
}

/* ---------------- Header ---------------- */
.ws-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--ws-gray-300);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .25s var(--ws-ease);
}
.ws-header.is-scrolled { box-shadow: var(--ws-shadow-sm); }

.ws-logo {
  font-family: var(--ws-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ws-black);
  transition: opacity .15s var(--ws-ease);
}
.ws-logo:hover { opacity: 0.82; }
.ws-logo span { color: var(--ws-primary); }

.ws-nav-link {
  font-family: var(--ws-font-button);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ws-black);
  padding: 0.5rem 0.9rem;
  display: inline-block;
  position: relative;
}
.ws-nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
  height: 1.5px;
  background: var(--ws-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ws-ease-out);
}
.ws-nav-link:hover, .ws-nav-link.active { color: var(--ws-primary); }
.ws-nav-link:hover::after, .ws-nav-link.active::after { transform: scaleX(1); }
.ws-nav-link-sale { color: var(--ws-primary); }
.ws-nav-link-sale::after { background: var(--ws-primary); }

.ws-header-nav { border-top: 1px solid var(--ws-gray-100); padding-top: 2px; }

.ws-icon-cluster { gap: 6px; }
.ws-icon-btn {
  color: var(--ws-black);
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.05rem;
  transition: background-color .15s var(--ws-ease), color .15s var(--ws-ease);
}
.ws-icon-btn:hover { background: var(--ws-gray-100); color: var(--ws-primary); }
.ws-icon-btn.ws-bump { animation: ws-cart-bump .5s var(--ws-ease-out); }
@keyframes ws-cart-bump {
  0% { transform: scale(1); }
  30% { transform: scale(1.28) rotate(-8deg); }
  55% { transform: scale(0.94) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.ws-icon-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ws-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  line-height: 17px;
  text-align: center;
  padding: 0 2px;
  border: 2px solid #fff;
}

.ws-visit-store-btn {
  align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--ws-gray-300); color: var(--ws-black);
  font-family: var(--ws-font-button); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.4px; text-transform: uppercase;
  transition: border-color .2s var(--ws-ease), color .2s var(--ws-ease), background-color .2s var(--ws-ease), transform .2s var(--ws-ease);
}
.ws-visit-store-btn i { color: var(--ws-primary); font-size: 0.9rem; }
.ws-visit-store-btn:hover { border-color: var(--ws-primary); color: var(--ws-primary); background: var(--ws-gray-100); transform: translateY(-1px); }

/* ---- Mega menu ---- */
.ws-mega-item { position: static; }
.ws-mega-panel {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--ws-white);
  border-top: 1px solid var(--ws-gray-300);
  box-shadow: var(--ws-shadow-lg);
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ws-ease-out), transform .18s var(--ws-ease-out), visibility 0s linear .18s;
  z-index: 1020;
}
.ws-mega-item:hover .ws-mega-panel,
.ws-mega-item:focus-within .ws-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.ws-mega-panel a.ws-mega-link {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ws-black);
}
.ws-mega-panel a.ws-mega-link:hover { color: var(--ws-primary); padding-left: 4px; }
.ws-mega-heading {
  font-family: var(--ws-font-button);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ws-gray-500);
  margin-bottom: 10px;
}
.ws-mega-visual {
  border-radius: var(--ws-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ws-gray-100);
  display: block;
}
.ws-mega-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ws-ease); }
.ws-mega-visual:hover img { transform: scale(1.05); }

/* ---- Header search ---- */
.ws-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ws-gray-100);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 16px;
  transition: border-color .15s var(--ws-ease), background-color .15s var(--ws-ease);
}
.ws-search-bar:focus-within { background: var(--ws-white); border-color: var(--ws-primary); box-shadow: 0 0 0 3px rgba(214, 90, 59, 0.08); }
.ws-search-bar i { color: var(--ws-gray-500); font-size: 0.85rem; flex-shrink: 0; }
.ws-search-bar input {
  border: 0;
  background: transparent;
  outline: none;
  font-size: 0.86rem;
  color: var(--ws-black);
  width: 100%;
  font-family: var(--ws-font-body);
}
.ws-search-bar input::placeholder { color: var(--ws-gray-500); }

.ws-header-suggest {
  position: absolute;
  top: calc(100% + 8px); left: 0; right: 0;
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-300);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow-lg);
  padding: 8px;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ws-ease-out), transform .18s var(--ws-ease-out), visibility 0s linear .18s;
  z-index: 1040;
}
.ws-header-suggest.show { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.ws-header-suggest:empty { display: none; }

.ws-account-dropdown { min-width: 210px; border: 1px solid var(--ws-gray-300); border-radius: var(--ws-radius-lg); box-shadow: var(--ws-shadow-lg); padding: 6px; margin-top: 12px !important; }
.ws-account-dropdown .dropdown-item { border-radius: var(--ws-radius); font-size: 0.86rem; padding: 8px 10px; }
.ws-account-dropdown .dropdown-item:hover { background: var(--ws-gray-100); color: var(--ws-primary); }

/* ---------------- Footer ---------------- */
.ws-footer {
  background-color: var(--ws-black);
  color: #d8d2ce;
  padding: 56px 0 24px;
  margin-top: 64px;
}
.ws-footer h6 {
  font-family: var(--ws-font-button);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ws-footer a { color: #c9beb8; font-size: 0.9rem; line-height: 2.1; }
.ws-footer a:hover { color: var(--ws-secondary); padding-left: 2px; }
.ws-footer-bottom { border-top: 1px solid #33302d; margin-top: 40px; padding-top: 20px; font-size: 0.8rem; color: #9c948f; }
.ws-footer .ws-social-btn {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid #47423e; color: #d8d2ce; transition: all .2s var(--ws-ease);
}
.ws-footer .ws-social-btn:hover { background: var(--ws-primary); border-color: var(--ws-primary); color: #fff; transform: translateY(-2px); }

/* ---------------- Cards / product tiles ---------------- */
.ws-product-card { position: relative; }
.ws-product-card .ws-product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ws-gray-100);
  border-radius: var(--ws-radius-lg);
  border: 1px solid var(--ws-gray-300);
  position: relative;
  transition: box-shadow .25s var(--ws-ease), border-color .25s var(--ws-ease), transform .25s var(--ws-ease);
}
/* object-fit:contain, not cover - uploaded product photos arrive in inconsistent aspect
   ratios (landscape, square, tall portrait); cover would crop them to fit the 3:4 box,
   cutting off garment edges. Contain always shows the full photo, letterboxed on the
   card's neutral background when the ratio doesn't match - never cuts anything off. */
.ws-product-card .ws-product-img img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: opacity .35s var(--ws-ease), transform .5s var(--ws-ease);
}
/* The hover image sits on top of (not instead of) the base image, so a product with only
   one photo simply keeps showing it on hover instead of ever going blank. */
.ws-product-card .ws-product-img img.ws-img-hover { position: absolute; inset: 0; opacity: 0; z-index: 1; }
.ws-product-card:hover .ws-product-img img.ws-img-hover { opacity: 1; }
.ws-product-card:hover .ws-product-img img.ws-img-base { transform: scale(1.06); }
.ws-product-card:hover .ws-product-img { box-shadow: var(--ws-shadow-lg); border-color: var(--ws-primary); transform: translateY(-5px); }

.ws-product-name {
  font-size: 0.88rem;
  margin-top: 12px;
  color: var(--ws-black);
  transition: color .15s var(--ws-ease);
}
/* Price + MRP + discount can be three separate text runs in a 2-up mobile grid card -
   wrap instead of silently overflowing the card on very narrow phones. */
.ws-price-row { flex-wrap: wrap; row-gap: 2px; }
.ws-product-card:hover .ws-product-name { color: var(--ws-primary); }

/* Sold out: card and PDP stay fully browsable (link opens the detail page);
   only a "Sold Out" label is shown and add-to-cart is disabled in markup. */

.ws-price-mrp { color: var(--ws-gray-500); text-decoration: line-through; font-size: 0.82rem; }
.ws-price-final { font-weight: 600; font-size: 0.95rem; }
.ws-price-discount { color: var(--ws-success); font-size: 0.8rem; }

.ws-rating-stars { font-size: 0.68rem; color: var(--ws-gold); letter-spacing: 1px; }
.ws-rating-count { font-size: 0.72rem; color: var(--ws-gray-500); }

.ws-colour-dots { display: flex; gap: 5px; margin-top: 6px; }
.ws-colour-dots span {
  width: 13px; height: 13px; border-radius: 50%; display: inline-block;
  border: 1px solid rgba(0,0,0,0.12); box-shadow: 0 0 0 1px #fff inset;
}

/* ---- PDP colour/size selectors ---- */
.ws-colour-swatch {
  width: 36px; height: 36px; border-radius: 50%; padding: 0;
  border: 2px solid transparent; position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  transition: transform .15s var(--ws-ease), border-color .15s var(--ws-ease);
}
.ws-colour-swatch:hover { transform: translateY(-2px); }
.ws-colour-swatch.active { border-color: var(--ws-primary); box-shadow: 0 0 0 1px #fff inset, 0 0 0 1px var(--ws-primary); }

.ws-size-btn {
  min-width: 44px; height: 40px; padding: 0 10px;
  border: 1px solid var(--ws-gray-300); background: #fff; color: var(--ws-black);
  border-radius: var(--ws-radius); font-family: var(--ws-font-button); font-size: 0.8rem; font-weight: 600;
  transition: all .15s var(--ws-ease);
}
.ws-size-btn:hover:not(:disabled) { border-color: var(--ws-black); }
.ws-size-btn.active { background: var(--ws-black); border-color: var(--ws-black); color: #fff; }
.ws-size-btn:disabled { color: var(--ws-gray-500); background: var(--ws-gray-100); text-decoration: line-through; cursor: not-allowed; }

/* ---- Homepage hero carousel ---- */
.ws-hero { position: relative; overflow: hidden; }
.ws-hero .carousel-item a {
  display: block; position: relative; width: 100%; overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ws-hero .carousel-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (min-width: 768px) {
  .ws-hero .carousel-item a { aspect-ratio: 16 / 9; max-height: 610px; }
}
@media (min-width: 992px) {
  .ws-hero .carousel-item a { aspect-ratio: 21 / 8; }
}
.ws-hero .carousel-control-prev,
.ws-hero .carousel-control-next {
  width: 40px; height: 40px; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, .85); border-radius: 50%;
  opacity: .8; transition: opacity .2s var(--ws-ease); z-index: 4;
  box-shadow: var(--ws-shadow-sm);
}
.ws-hero .carousel-control-prev { left: 12px; }
.ws-hero .carousel-control-next { right: 12px; }
.ws-hero:hover .carousel-control-prev,
.ws-hero:hover .carousel-control-next { opacity: 1; }
.ws-hero .carousel-control-prev-icon,
.ws-hero .carousel-control-next-icon { filter: invert(1); width: 50%; height: 50%; }
.ws-hero .carousel-indicators { margin-bottom: 12px; }
.ws-hero .carousel-indicators [data-bs-target] { opacity: .5; transition: opacity .2s var(--ws-ease), transform .2s var(--ws-ease); }
.ws-hero .carousel-indicators .active { opacity: 1; transform: scale(1.2); }
@media (max-width: 767.98px) {
  .ws-hero .carousel-control-prev,
  .ws-hero .carousel-control-next { width: 32px; height: 32px; opacity: 1; }
}

/* ---- PDP gallery zoom ---- */
.ws-zoom-frame { overflow: hidden; cursor: zoom-in; }
.ws-zoom-frame img { transition: transform .35s var(--ws-ease); }
.ws-zoom-frame:hover img { transform: scale(1.15); }
@media (max-width: 991.98px) { .ws-zoom-frame:hover img { transform: none; } }

/* ---- PDP gallery carousel ---- */
.ws-pdp-carousel { overflow: hidden; border-radius: var(--ws-radius-lg); border: 1px solid var(--ws-gray-300); background: var(--ws-gray-100); }
.ws-pdp-carousel .carousel-item { transition: transform .4s var(--ws-ease); }
.ws-pdp-carousel .carousel-control-prev,
.ws-pdp-carousel .carousel-control-next {
  width: 44px; height: 44px; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, .85); border-radius: 50%;
  opacity: 0; transition: opacity .2s var(--ws-ease); z-index: 4;
  box-shadow: var(--ws-shadow-sm);
}
.ws-pdp-carousel .carousel-control-prev { left: 10px; }
.ws-pdp-carousel .carousel-control-next { right: 10px; }
.ws-pdp-carousel:hover .carousel-control-prev,
.ws-pdp-carousel:hover .carousel-control-next { opacity: 1; }
.ws-pdp-carousel .carousel-control-prev-icon,
.ws-pdp-carousel .carousel-control-next-icon { filter: invert(1); width: 55%; height: 55%; }
.ws-pdp-carousel .carousel-indicators { margin-bottom: 8px; }
.ws-pdp-carousel .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: var(--ws-gray-500); opacity: .5;
}
.ws-pdp-carousel .carousel-indicators .active { background: var(--ws-primary); opacity: 1; }
@media (max-width: 991.98px) {
  .ws-pdp-carousel .carousel-control-prev,
  .ws-pdp-carousel .carousel-control-next { opacity: 1; }
}
.ws-thumb-m { cursor: pointer; }

/* ---- Trust badges strip ---- */
.ws-trust-row { display: flex; gap: 18px; flex-wrap: wrap; }
.ws-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--ws-gray-700); }
.ws-trust-item i { color: var(--ws-primary); font-size: 0.95rem; }

/* Base: always-visible circular heart button (also used standalone, e.g. on the PDP). */
.ws-wishlist-btn {
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  width: 34px; height: 34px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ws-shadow-sm);
  transition: opacity .2s var(--ws-ease), transform .2s var(--ws-ease), background-color .15s var(--ws-ease);
  border: none;
}
.ws-wishlist-btn:hover { background: #fff; }

/* Inside a product card specifically, hide it until hover/focus (desktop only) so the image reads cleanly. */
@media (min-width: 992px) {
  .ws-product-card .ws-wishlist-btn { opacity: 0; transform: translateY(-4px); }
  .ws-product-card:hover .ws-wishlist-btn, .ws-product-card .ws-wishlist-btn:focus-visible { opacity: 1; transform: translateY(0); }
}

/* ---- PDP primary action row: Add to Bag / Buy Now / Wishlist ---- */
.ws-pdp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; border-radius: var(--ws-radius-lg); border: 2px solid transparent;
  font-size: 0.86rem;
}
.ws-pdp-btn i { font-size: 1rem; }
.ws-pdp-btn-cart {
  background: var(--ws-primary); border-color: var(--ws-primary); color: #fff;
  box-shadow: 0 6px 18px rgba(214, 90, 59, 0.22);
}
.ws-pdp-btn-cart:hover { background: #bf4b2e; border-color: #bf4b2e; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(214, 90, 59, 0.3); }
.ws-pdp-btn-buynow {
  background: var(--ws-black); border-color: var(--ws-black); color: #fff;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.18);
}
.ws-pdp-btn-buynow:hover { background: #000; border-color: #000; color: var(--ws-gold); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(27, 27, 27, 0.26); }
.ws-pdp-btn-buynow i { color: var(--ws-gold); }
.ws-pdp-btn:active { transform: translateY(0) !important; }
.ws-pdp-btn-wishlist {
  width: 52px; height: 52px; flex: 0 0 52px; padding: 0; border-radius: var(--ws-radius-lg);
  background: var(--ws-white); border-color: var(--ws-gray-300); color: var(--ws-primary); box-shadow: none;
}
.ws-pdp-btn-wishlist:hover { border-color: var(--ws-primary); background: var(--ws-gray-100); transform: translateY(-2px); }
.ws-pdp-btn-wishlist i { font-size: 1.1rem; }
@media (max-width: 575.98px) {
  .ws-pdp-btn { font-size: 0.78rem; height: 48px; }
  .ws-pdp-btn-wishlist { width: 48px; flex-basis: 48px; height: 48px; }
}

.ws-badge-sale {
  background: var(--ws-primary); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.4px; padding: 4px 8px; border-radius: 3px;
}
.ws-badge-new {
  background: var(--ws-black); color: #fff; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; padding: 4px 8px; border-radius: 3px;
}

/* Skeleton shimmer, used while an image is loading or as a lightweight placeholder block. */
.ws-skeleton {
  background: linear-gradient(90deg, var(--ws-gray-100) 25%, #efe8e2 37%, var(--ws-gray-100) 63%);
  background-size: 400% 100%;
  animation: ws-shimmer 1.4s ease infinite;
}
@keyframes ws-shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------------- Category circles ---------------- */
.ws-cat-circle {
  border-radius: 50%; aspect-ratio: 1/1; overflow: hidden;
  box-shadow: var(--ws-shadow-sm);
  transition: box-shadow .2s var(--ws-ease), transform .2s var(--ws-ease);
}
.ws-cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ws-ease); }
a:hover .ws-cat-circle { box-shadow: var(--ws-shadow-md); transform: translateY(-3px); }
a:hover .ws-cat-circle img { transform: scale(1.08); }

/* ---------------- Forms ---------------- */
.ws-form-control, .form-control, .form-select {
  border-radius: var(--ws-radius);
  border-color: var(--ws-gray-300);
  padding: 0.65rem 0.9rem;
  transition: border-color .15s var(--ws-ease), box-shadow .15s var(--ws-ease);
}
.form-control:focus, .form-select:focus {
  border-color: var(--ws-primary);
  box-shadow: 0 0 0 0.15rem rgba(214, 90, 59, 0.15);
}

/* ---------------- Auth card ---------------- */
.ws-auth-card {
  max-width: 420px;
  margin: 64px auto;
  padding: 40px 36px;
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-300);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow-md);
}
.ws-otp-input { letter-spacing: 8px; font-size: 1.4rem; text-align: center; }

/* ---------------- Cart ---------------- */
.ws-cart-item { transition: background-color .15s var(--ws-ease); border-radius: 4px; }
.ws-cart-item:hover { background-color: var(--ws-bg); }

/* ---------------- Empty states ---------------- */
.ws-empty-state { text-align: center; padding: 72px 20px; }
.ws-empty-state i, .ws-empty-state svg { font-size: 3rem; color: var(--ws-gray-300); }

/* ---------------- Filter chips (PLP) ---------------- */
.ws-filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ws-bg); border: 1px solid var(--ws-gray-300);
  border-radius: 20px; padding: 5px 10px 5px 12px; font-size: 0.78rem;
  color: var(--ws-black);
}
.ws-filter-chip button { border: none; background: none; padding: 0; line-height: 1; color: var(--ws-gray-500); }
.ws-filter-chip button:hover { color: var(--ws-primary); }
.ws-plp-clear-all { color: var(--ws-gray-500); text-decoration: underline; }
.ws-plp-clear-all:hover { color: var(--ws-primary); }

/* ---------------- PLP hero + filter card + toolbar ---------------- */
.ws-plp-hero { background: var(--ws-bg); border-bottom: 1px solid var(--ws-gray-300); padding: 22px 0 18px; margin-bottom: 4px; }
.ws-plp-breadcrumb a { color: var(--ws-gray-700); }
.ws-plp-breadcrumb a:hover { color: var(--ws-primary); }
.ws-plp-breadcrumb i { font-size: 0.55rem; color: var(--ws-gray-500); margin: 0 2px; }

.ws-filter-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-300);
  border-radius: var(--ws-radius-lg);
  padding: 20px;
}
.ws-filter-card .form-check { padding-left: 1.6em; margin-bottom: 6px; }
.ws-filter-card .form-check-input { cursor: pointer; }
.ws-filter-card .form-check-input:checked { background-color: var(--ws-primary); border-color: var(--ws-primary); }
.ws-filter-card .form-check-label { cursor: pointer; }

.ws-plp-toolbar { padding-bottom: 14px; border-bottom: 1px solid var(--ws-gray-300); }
/* Sticky filters only make sense in the desktop two-column layout - on mobile/tablet the filter
   panel is a single stacked block, so pinning it there would trap it mid-scroll over the products. */
@media (min-width: 992px) { #wsFilters { position: sticky; top: 90px; } }

.ws-pagination .page-link {
  border: 1px solid var(--ws-gray-300); color: var(--ws-black); margin: 0 3px; border-radius: 50%;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; padding: 0;
  font-family: var(--ws-font-button); font-size: 0.82rem;
}
.ws-pagination .page-item.active .page-link { background: var(--ws-black); border-color: var(--ws-black); color: #fff; }
.ws-pagination .page-link:hover { border-color: var(--ws-primary); color: var(--ws-primary); }
.ws-pagination .page-item.active .page-link:hover { color: #fff; }

/* ---------------- Toast ---------------- */
#ws-toast-container { display: flex; flex-direction: column; gap: 10px; }
.ws-toast {
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ws-black);
  border-left: 3px solid var(--ws-primary);
  padding: 12px 16px; border-radius: 4px;
  box-shadow: var(--ws-shadow-lg);
  font-family: var(--ws-font-body); font-size: 0.86rem;
  min-width: 240px; max-width: 320px;
  transform: translateX(12px); opacity: 0;
  transition: transform .25s var(--ws-ease-out), opacity .25s var(--ws-ease-out);
}
.ws-toast.show { transform: translateX(0); opacity: 1; }
.ws-toast.ws-toast-success { border-left-color: var(--ws-success); }
.ws-toast.ws-toast-error { border-left-color: var(--ws-danger); }
.ws-toast i { font-size: 1rem; }
.ws-toast.ws-toast-success i { color: var(--ws-success); }
.ws-toast.ws-toast-error i { color: var(--ws-danger); }
.ws-toast.ws-toast-info i { color: var(--ws-primary); }

/* ---------------- Sticky mobile add-to-cart bar (PDP) ---------------- */
.ws-sticky-cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035;
  background: #fff; border-top: 1px solid var(--ws-gray-300);
  box-shadow: 0 -6px 20px rgba(27,27,27,.08);
  padding: 10px 14px; display: none;
  transform: translateY(100%); transition: transform .25s var(--ws-ease-out);
}
.ws-sticky-cart-bar.show { transform: translateY(0); }
@media (max-width: 991.98px) { .ws-sticky-cart-bar.is-ready { display: flex; } }

/* ---------------- Floating "View Bag" pill (site-wide) ---------------- */
.ws-floating-cart {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1032;
  display: flex; align-items: center; gap: 10px;
  background: var(--ws-black);
  color: #fff;
  padding: 13px 20px 13px 18px;
  border-radius: 50px;
  box-shadow: var(--ws-shadow-lg);
  font-family: var(--ws-font-button);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(120%) scale(.9);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ws-ease-out), opacity .35s var(--ws-ease-out), background-color .2s var(--ws-ease);
}
.ws-floating-cart.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.ws-floating-cart:hover { background: var(--ws-primary); color: #fff; }
.ws-floating-cart i { font-size: 0.95rem; }
.ws-floating-cart.ws-shake { animation: ws-cart-shake .5s var(--ws-ease-out); }
@keyframes ws-cart-shake {
  0%, 100% { transform: translateY(0) scale(1) rotate(0); }
  20% { transform: translateY(0) scale(1.08) rotate(-6deg); }
  40% { transform: translateY(0) scale(1.05) rotate(5deg); }
  60% { transform: translateY(0) scale(1.06) rotate(-3deg); }
  80% { transform: translateY(0) scale(1.02) rotate(2deg); }
}
.ws-floating-cart .ws-floating-cart-count {
  background: var(--ws-primary);
  color: #fff;
  min-width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.ws-floating-cart:hover .ws-floating-cart-count { background: #fff; color: var(--ws-primary); }
@media (max-width: 991.98px) { .ws-floating-cart { right: 16px; bottom: 84px; } } /* clears the PDP sticky add-to-cart bar */

/* ---------------- Floating WhatsApp CTA (stacked above the cart pill, same right edge) ---------------- */
.ws-whatsapp-fab {
  position: fixed; right: 22px; bottom: 84px; z-index: 1032;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ws-shadow-lg);
  transition: transform .2s var(--ws-ease), box-shadow .2s var(--ws-ease);
}
.ws-whatsapp-fab:hover { color: #fff; transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px rgba(37, 211, 102, .35); }
@media (max-width: 991.98px) { .ws-whatsapp-fab { right: 16px; bottom: 146px; width: 44px; height: 44px; font-size: 1.25rem; } }

/* ---------------- Floating Instagram CTA (stacked just above the WhatsApp button) ---------------- */
.ws-instagram-fab {
  position: fixed; right: 22px; bottom: 142px; z-index: 1032;
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ws-shadow-lg);
  transition: transform .2s var(--ws-ease), box-shadow .2s var(--ws-ease);
}
.ws-instagram-fab:hover { color: #fff; transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px rgba(214, 36, 159, .35); }
@media (max-width: 991.98px) { .ws-instagram-fab { right: 16px; bottom: 198px; width: 44px; height: 44px; font-size: 1.25rem; } }

/* ---------------- Back to top (bottom-left, so it never collides with the floating cart pill on the right) ---------------- */
.ws-back-to-top {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 1031;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-300);
  color: var(--ws-black);
  box-shadow: var(--ws-shadow-md);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(120%) scale(.9);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ws-ease-out), opacity .3s var(--ws-ease-out), background-color .15s var(--ws-ease), color .15s var(--ws-ease);
}
.ws-back-to-top.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.ws-back-to-top:hover { background: var(--ws-primary); color: #fff; border-color: var(--ws-primary); }
@media (max-width: 991.98px) { .ws-back-to-top { left: 16px; bottom: 84px; width: 40px; height: 40px; } }

/* ---------------- Footer USP strip ---------------- */
.ws-usp-strip { background: var(--ws-bg); border-top: 1px solid var(--ws-gray-300); border-bottom: 1px solid var(--ws-gray-300); padding: 26px 0; }
.ws-usp-item { display: flex; align-items: center; gap: 12px; }
.ws-usp-item i { font-size: 1.3rem; color: var(--ws-primary); width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: rgba(214, 90, 59, 0.1); display: flex; align-items: center; justify-content: center; }
.ws-usp-item div { display: flex; flex-direction: column; line-height: 1.3; }
.ws-usp-item strong { font-family: var(--ws-font-button); font-size: 0.82rem; color: var(--ws-black); }
.ws-usp-item span { font-size: 0.76rem; color: var(--ws-gray-500); }

/* ---------------- Footer newsletter + payment icons ---------------- */
.ws-newsletter-form { display: flex; gap: 0; max-width: 320px; }
.ws-newsletter-form input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.06); border: 1px solid #47423e; border-right: 0;
  border-radius: var(--ws-radius) 0 0 var(--ws-radius); padding: 9px 12px; color: #fff; font-size: 0.85rem;
}
.ws-newsletter-form input::placeholder { color: #9c948f; }
.ws-newsletter-form input:focus { outline: none; border-color: var(--ws-primary); }
.ws-newsletter-form button {
  border: 0; background: var(--ws-primary); color: #fff; padding: 0 16px;
  border-radius: 0 var(--ws-radius) var(--ws-radius) 0; transition: background-color .15s var(--ws-ease);
}
.ws-newsletter-form button:hover { background: #bf4b2e; }
.ws-pay-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.ws-pay-icons i {
  width: 38px; height: 28px; border-radius: 4px; background: rgba(255,255,255,0.06); border: 1px solid #47423e;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #d8d2ce;
}

/* ---------------- "Talk to an expert" CTA strip ---------------- */
.ws-help-strip {
  display: flex; align-items: center; gap: 18px;
  background: var(--ws-black); color: #fff;
  border-radius: var(--ws-radius-lg);
  padding: 18px 26px;
  flex-wrap: wrap;
}
.ws-help-strip-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  background: rgba(214, 90, 59, 0.18); color: var(--ws-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.ws-help-strip-title { font-family: var(--ws-font-heading); font-size: 1.05rem; font-weight: 600; }
.ws-help-strip-sub { color: #b8b2ad; font-size: 0.8rem; }
@media (max-width: 575.98px) {
  .ws-help-strip { padding: 16px; text-align: left; }
}

/* ---------------- Stylist help promo banner ---------------- */
.ws-stylist-banner { position: relative; overflow: hidden; border-radius: var(--ws-radius-lg); }
.ws-stylist-banner img { width: 100%; max-height: 340px; object-fit: cover; display: block; }
.ws-stylist-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 55%, transparent 90%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 5% ;
}
@media (max-width: 575.98px) {
  .ws-stylist-banner-overlay { background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.78) 70%); justify-content: flex-end; padding: 24px 20px; }
}

/* ---------------- CTA buttons (used inside homepage CTA strips/banners) ---------------- */
.ws-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--ws-font-button); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.4px; text-transform: uppercase; text-decoration: none; white-space: nowrap;
  transition: transform .2s var(--ws-ease), box-shadow .2s var(--ws-ease), background-color .2s var(--ws-ease), color .2s var(--ws-ease), border-color .2s var(--ws-ease);
}
.ws-cta-btn i { font-size: 0.85rem; }
.ws-cta-btn:active { transform: translateY(0) !important; }

.ws-cta-btn-primary { background: var(--ws-primary); border-color: var(--ws-primary); color: #fff; box-shadow: 0 4px 14px rgba(214, 90, 59, .25); }
.ws-cta-btn-primary:hover { background: #bf4b2e; border-color: #bf4b2e; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214, 90, 59, .32); }

.ws-cta-btn-outline { background: transparent; border-color: var(--ws-gray-300); color: var(--ws-black); }
.ws-cta-btn-outline:hover { border-color: var(--ws-primary); color: var(--ws-primary); transform: translateY(-2px); }

.ws-cta-btn-light { background: #fff; border-color: #fff; color: var(--ws-black); }
.ws-cta-btn-light:hover { background: var(--ws-gold); border-color: var(--ws-gold); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 160, 91, .35); }

.ws-cta-btn-outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.ws-cta-btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-2px); }

@media (max-width: 575.98px) {
  .ws-cta-btn { padding: 10px 18px; font-size: 0.76rem; }
}

/* ---------------- CMS page hero / vision-mission / video / gallery ---------------- */
.ws-page-hero { position: relative; overflow: hidden; max-height: 320px; }
.ws-page-hero img { width: 100%; height: 320px; object-fit: cover; display: block; }
.ws-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.1)); display: flex; align-items: flex-end; padding-bottom: 28px; }

.ws-vm-card {
  height: 100%; padding: 28px; border: 1px solid var(--ws-gray-300); border-radius: var(--ws-radius-lg);
  background: var(--ws-bg); transition: box-shadow .2s var(--ws-ease), transform .2s var(--ws-ease);
}
.ws-vm-card:hover { box-shadow: var(--ws-shadow-md); transform: translateY(-2px); }
.ws-vm-icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(214, 90, 59, 0.1); color: var(--ws-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 14px;
}

.ws-video-embed { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--ws-radius-lg); overflow: hidden; background: var(--ws-black); box-shadow: var(--ws-shadow-md); }
.ws-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.ws-store-photo { border-radius: var(--ws-radius); overflow: hidden; aspect-ratio: 4/3; background: var(--ws-gray-100); }
.ws-store-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ws-ease); }
.ws-store-photo:hover img { transform: scale(1.06); }

/* .ws-cms-content renders raw admin-authored HTML (About/Privacy/Terms/Shipping/Returns pages) -
   an editor-pasted image or table has no built-in size limit, so without this it can force
   horizontal scroll on mobile regardless of how well the surrounding template is built. */
.ws-cms-content img { max-width: 100%; height: auto; }
.ws-cms-content table { display: block; max-width: 100%; overflow-x: auto; }
.ws-cms-content iframe { max-width: 100%; }

/* ---------------- Contact Us page ---------------- */
.ws-contact-hero { background: var(--ws-black); padding: 56px 0; }
.ws-contact-info-card {
  display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--ws-gray-300);
  border-radius: var(--ws-radius-lg); transition: box-shadow .2s var(--ws-ease), transform .2s var(--ws-ease);
}
.ws-contact-info-card:hover { box-shadow: var(--ws-shadow-md); transform: translateY(-2px); }
.ws-contact-form-card { padding: 32px; border: 1px solid var(--ws-gray-300); border-radius: var(--ws-radius-lg); box-shadow: var(--ws-shadow-sm); }
@media (max-width: 575.98px) { .ws-contact-form-card { padding: 22px; } }

/* ---------------- SEO text block (above footer) ---------------- */
.ws-seo-content { color: var(--ws-gray-700); font-size: 0.85rem; line-height: 1.8; max-width: 980px; margin: 0 auto; text-align: center; }

/* ---------------- Reel-style shoppable gallery tiles ---------------- */
.ws-reel-tile {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--ws-radius); aspect-ratio: 4/5; background: var(--ws-gray-100);
}
.ws-reel-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ws-ease), filter .25s var(--ws-ease); }
.ws-reel-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.72) 100%);
  opacity: 0; transition: opacity .25s var(--ws-ease);
}
.ws-reel-play {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ws-black);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
  box-shadow: var(--ws-shadow-sm);
}
.ws-reel-caption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  color: #fff; font-family: var(--ws-font-button); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.4px; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ws-ease), transform .25s var(--ws-ease);
}
.ws-reel-tile:hover img { transform: scale(1.08); }
.ws-reel-tile:hover::after { opacity: 1; }
.ws-reel-tile:hover .ws-reel-caption { opacity: 1; transform: translateY(0); }

/* ---------------- Reel playback modal ---------------- */
.ws-reel-modal-content {
  position: relative; background: #fff; border: none; border-radius: 16px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.ws-reel-modal-close {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--ws-black); color: #fff; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.ws-reel-modal-body { min-height: 320px; max-height: 82vh; overflow-y: auto; display: flex; align-items: center; justify-content: center; }

/* ---------------- Scroll reveal ---------------- */
.ws-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ws-ease-out), transform .6s var(--ws-ease-out); }
.ws-reveal.ws-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .ws-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Utilities ---------------- */
.ws-section-title { font-family: var(--ws-font-heading); font-size: 1.9rem; margin-bottom: 6px; }
.ws-section-subtitle { color: var(--ws-gray-700); margin-bottom: 32px; }
.ws-divider { height: 1px; background: var(--ws-gray-300); border: none; margin: 0; }

@media (max-width: 767.98px) {
  .ws-section-title { font-size: 1.4rem; }
  .ws-auth-card { margin: 24px 16px; padding: 28px 22px; }
}
