:root {
  --ys-ink: #09090b;
  --ys-muted: #60646c;
  --ys-line: #e4e4e7;
  --ys-blue: #1238ff;
  --ys-purple: #8b5cf6;
  --ys-soft: #f8fafc;
  --ys-radius: 16px;
  --ys-shadow: 0 20px 60px rgba(24, 24, 27, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.yourshoope-theme {
  margin: 0;
  color: var(--ys-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.ys-skip {
  position: fixed;
  left: 1rem;
  top: -10rem;
  z-index: 1000;
  background: var(--ys-blue);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: .75rem;
}

.ys-skip:focus {
  top: 1rem;
}

.ys-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ys-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--ys-line);
  box-shadow: 0 8px 26px rgba(24, 24, 27, .05);
  backdrop-filter: blur(18px);
}

.ys-header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  min-height: 64px;
  margin: 0 auto;
  padding: .55rem 1rem;
}

.ys-brand {
  display: none;
  align-items: center;
  gap: .75rem;
  flex: 0 0 auto;
}

.ys-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ys-blue), var(--ys-purple));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(18, 56, 255, .2);
}

.ys-brand-text {
  font-size: 1.1rem;
  font-weight: 800;
}

.ys-search {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 160px;
  height: 44px;
  border: 2px solid #2290ff;
  border-radius: 12px;
  background: #fff;
  padding: 0 .9rem;
  box-shadow: 0 2px 10px rgba(34, 144, 255, .08);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.ys-search:focus-within {
  border-color: var(--ys-blue);
  box-shadow: 0 0 0 4px rgba(18, 56, 255, .1);
}

.ys-search-icon {
  display: grid;
  place-items: center;
  color: #52525b;
  margin-right: .7rem;
}

.ys-search input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--ys-ink);
  font-size: 1rem;
}

.ys-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
}

.ys-action {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  padding: 0 .65rem;
  background: transparent;
  color: var(--ys-ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.ys-action:hover {
  color: var(--ys-blue);
  background: #eff6ff;
  transform: translateY(-1px);
}

.ys-chevron {
  font-size: .9rem;
}

.ys-cart {
  position: relative;
}

.ys-cart b {
  position: absolute;
  top: -.35rem;
  right: -.35rem;
  min-width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ys-blue);
  color: #fff;
  font-size: .68rem;
}

.ys-more {
  position: relative;
}

.ys-more-menu {
  position: absolute;
  right: 0;
  top: 2.7rem;
  width: 210px;
  padding: .45rem;
  border: 1px solid var(--ys-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ys-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.ys-more:hover .ys-more-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ys-more-menu a {
  display: block;
  border-radius: 10px;
  padding: .65rem .75rem;
  color: #3f3f46;
  font-size: .92rem;
}

.ys-more-menu a:hover {
  background: #eff6ff;
  color: var(--ys-blue);
}

.ys-market-rail {
  display: flex;
  gap: .75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: .55rem 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid #f4f4f5;
}

.ys-market-rail::-webkit-scrollbar {
  height: 0;
}

.ys-market-item {
  position: relative;
  display: flex;
  min-width: 82px;
  flex-direction: column;
  align-items: center;
  gap: .22rem;
  padding: 0 .25rem .7rem;
  color: var(--ys-ink);
  font-size: .82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.ys-market-item::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--ys-blue);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.ys-market-item:hover,
.ys-market-item.is-active {
  color: var(--ys-blue);
  transform: translateY(-2px);
}

.ys-market-item:hover::after,
.ys-market-item.is-active::after {
  transform: scaleX(1);
}

.ys-market-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ys-line);
  border-radius: 10px;
  background: #fff;
  color: #27272a;
  box-shadow: 0 8px 20px rgba(24, 24, 27, .06);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .22s ease, box-shadow .22s ease;
}

.ys-market-item:hover .ys-market-icon,
.ys-market-item.is-active .ys-market-icon {
  border-color: #93c5fd;
  background: #dbeafe;
  color: var(--ys-blue);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 26px rgba(18, 56, 255, .14);
}

.ys-site-content {
  padding-top: 142px;
}

.ys-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  min-height: 74vh;
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: radial-gradient(circle at 15% 15%, rgba(18, 56, 255, .10), transparent 28%), radial-gradient(circle at 88% 5%, rgba(139, 92, 246, .12), transparent 28%);
}

.ys-hero-copy {
  animation: ys-reveal .75s cubic-bezier(.2, .8, .2, 1) both;
}

.ys-eyebrow {
  display: inline-flex;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  padding: .55rem .9rem;
  color: #4b5563;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(24, 24, 27, .06);
}

.ys-hero h1 {
  max-width: 680px;
  margin: 1.4rem 0 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: .95;
  letter-spacing: 0;
}

.ys-hero p {
  max-width: 680px;
  color: var(--ys-muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.ys-hero-actions,
.ys-product-actions,
.ys-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.ys-btn,
.button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 0;
  padding: .75rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.ys-btn:hover,
.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
}

.ys-btn-dark,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--ys-ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 24, 27, .14);
}

.ys-btn-light {
  border: 1px solid var(--ys-line);
  background: #fff;
  color: var(--ys-ink);
}

.ys-btn-gradient {
  background: linear-gradient(90deg, var(--ys-blue), var(--ys-purple));
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 56, 255, .18);
}

.ys-trust-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: .75rem;
  margin-top: 2rem;
}

.ys-trust-pills span {
  border: 1px solid var(--ys-line);
  border-radius: 12px;
  background: #fff;
  padding: .8rem;
  text-align: center;
  color: #52525b;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(24, 24, 27, .05);
}

.ys-hero-card,
.ys-single-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ys-line);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 30px 80px rgba(18, 56, 255, .11);
}

.ys-hero-card {
  aspect-ratio: 4 / 5;
  animation: ys-float 5.5s ease-in-out infinite;
}

.ys-hero-card img,
.ys-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ys-hero-product {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .92);
  padding: 1.1rem;
  box-shadow: var(--ys-shadow);
  backdrop-filter: blur(18px);
}

.ys-hero-product p,
.ys-slide p,
.ys-section-heading p,
.ys-sale-band p {
  margin: 0;
  color: var(--ys-blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 900;
}

.ys-hero-product h2 {
  margin: .35rem 0;
  font-size: 1.55rem;
}

.ys-hero-product span {
  color: var(--ys-muted);
  font-size: .92rem;
}

.ys-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .58), transparent 65%);
  animation: ys-shine 4.2s ease-in-out infinite;
  pointer-events: none;
}

.ys-slider {
  position: relative;
  max-width: 1280px;
  margin: 1rem auto 3rem;
  padding: 0 1rem;
}

.ys-slide {
  display: none;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: center;
  min-height: 430px;
  border: 1px solid var(--ys-line);
  border-radius: 2rem;
  background: linear-gradient(135deg, #eff6ff, #fff, #ede9fe);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 28px 80px rgba(18, 56, 255, .1);
}

.ys-slide.is-active {
  display: grid;
  animation: ys-reveal .55s ease both;
}

.ys-slide h2,
.ys-section-heading h2,
.ys-sale-band h2 {
  margin: .75rem 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.ys-slide span {
  display: block;
  max-width: 520px;
  margin: 1rem 0 1.4rem;
  color: var(--ys-muted);
  line-height: 1.75;
}

.ys-slide img {
  width: 100%;
  max-height: 370px;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--ys-shadow);
}

.ys-slider-controls {
  position: absolute;
  right: 2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.ys-slider-controls button {
  border: 0;
  cursor: pointer;
}

.ys-slider-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ys-ink);
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(24, 24, 27, .1);
}

.ys-slider-controls div {
  display: flex;
  gap: .4rem;
}

.ys-slider-controls div button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: width .2s ease, background .2s ease;
}

.ys-slider-controls div button.is-active {
  width: 30px;
  background: var(--ys-blue);
}

.ys-stat-grid,
.ys-section,
.ys-sale-band,
.ys-page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.ys-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ys-stat {
  border: 1px solid var(--ys-line);
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(24, 24, 27, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ys-stat:hover,
.ys-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(18, 56, 255, .11);
}

.ys-stat strong {
  display: block;
  font-size: 2rem;
}

.ys-stat span {
  display: block;
  margin-top: .35rem;
  color: var(--ys-muted);
}

.ys-soft {
  max-width: none;
  background: var(--ys-soft);
}

.ys-soft > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.ys-section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.ys-section-heading h1 {
  margin: .65rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.ys-section-heading p + h1 {
  margin-top: .65rem;
}

.ys-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ys-category-grid a {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--ys-line);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #fff, #eff6ff);
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(24, 24, 27, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ys-category-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--ys-shadow);
}

.ys-category-grid span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: #dbeafe;
  color: var(--ys-blue);
}

.ys-category-grid strong {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.ys-category-grid em {
  margin-top: .25rem;
  color: var(--ys-muted);
  font-style: normal;
}

.ys-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.ys-product-card {
  overflow: hidden;
  border: 1px solid var(--ys-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 24, 27, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ys-product-card:hover {
  border-color: #bfdbfe;
}

.ys-product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f5;
}

.ys-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.ys-product-card:hover .ys-product-image img {
  transform: scale(1.05);
}

.ys-product-image span {
  position: absolute;
  top: .9rem;
  left: .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  padding: .4rem .7rem;
  font-size: .75rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(24, 24, 27, .08);
}

.ys-product-info {
  padding: 1rem;
}

.ys-product-info p {
  margin: 0 0 .4rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.ys-product-info h3 {
  min-height: 2.5rem;
  margin: 0;
  font-size: 1rem;
}

.ys-product-info small {
  display: block;
  margin-top: .35rem;
  color: var(--ys-purple);
}

.ys-price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: block;
  margin-top: .85rem;
  color: var(--ys-ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.ys-price del,
.woocommerce del {
  color: #a1a1aa;
  font-weight: 500;
}

.ys-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.ys-product-actions .ys-btn {
  width: 100%;
}

.ys-sale-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--ys-line);
  border-radius: 2rem;
  background: linear-gradient(135deg, #eff6ff, #fff, #ede9fe);
  box-shadow: 0 18px 50px rgba(18, 56, 255, .1);
}

.ys-sale-band span {
  display: block;
  margin-top: .75rem;
  color: var(--ys-muted);
}

.ys-page-shell {
  min-height: 60vh;
}

.ys-content-card {
  border: 1px solid var(--ys-line);
  border-radius: 1.5rem;
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 10px 32px rgba(24, 24, 27, .06);
}

.ys-entry-content {
  color: var(--ys-muted);
  line-height: 1.75;
}

.ys-woo-shell .woocommerce-breadcrumb {
  color: var(--ys-muted);
}

.ys-single-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.ys-single-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ys-single-image {
  aspect-ratio: 4 / 5;
}

.ys-single-summary {
  position: sticky;
  top: 160px;
  align-self: start;
  border: 1px solid var(--ys-line);
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 32px rgba(24, 24, 27, .06);
}

.ys-product-brand {
  color: var(--ys-blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 900;
}

.ys-single-summary h1 {
  margin: .5rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.ys-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  color: var(--ys-muted);
  font-size: .92rem;
}

.ys-single-price {
  margin: 1.2rem 0;
  font-size: 1.8rem;
  font-weight: 900;
}

.ys-single-description {
  color: var(--ys-muted);
  line-height: 1.75;
}

.ys-single-actions form.cart {
  margin: 0;
}

.ys-single-actions .quantity {
  display: none;
}

.ys-service-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.ys-service-list span {
  border: 1px solid var(--ys-line);
  border-radius: 12px;
  background: var(--ys-soft);
  padding: .9rem;
  color: var(--ys-muted);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce input.input-text {
  min-height: 46px;
  border: 1px solid var(--ys-line);
  border-radius: 12px;
  padding: .75rem 1rem;
}

.woocommerce table.shop_table {
  border-radius: 16px;
  overflow: hidden;
}

.ys-footer {
  border-top: 1px solid var(--ys-line);
  background: #f8fafc;
}

.ys-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.ys-footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.ys-footer p {
  max-width: 390px;
  color: var(--ys-muted);
  line-height: 1.7;
}

.ys-footer h3 {
  margin: 0 0 1rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
}

.ys-footer a {
  display: block;
  margin: .65rem 0;
  color: #52525b;
}

.ys-footer a:hover {
  color: var(--ys-blue);
}

.ys-footer-bottom {
  border-top: 1px solid var(--ys-line);
  padding: 1rem;
  text-align: center;
  color: #71717a;
  font-size: .85rem;
}

@keyframes ys-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ys-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes ys-shine {
  0%, 45% {
    transform: translateX(-130%);
  }
  75%, 100% {
    transform: translateX(130%);
  }
}

@media (min-width: 1440px) {
  .ys-brand {
    display: flex;
  }
}

@media (max-width: 960px) {
  .ys-header-top {
    flex-wrap: wrap;
  }
  .ys-search {
    order: 3;
    flex-basis: 100%;
  }
  .ys-site-content {
    padding-top: 188px;
  }
  .ys-hero,
  .ys-slide,
  .ys-single-product {
    grid-template-columns: 1fr;
  }
  .ys-hero {
    padding-top: 2rem;
  }
  .ys-stat-grid,
  .ys-category-grid,
  .ys-product-grid,
  .woocommerce ul.products,
  .ys-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ys-single-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .ys-action span,
  .ys-more {
    display: none;
  }
  .ys-site-content {
    padding-top: 178px;
  }
  .ys-hero h1 {
    font-size: 3.2rem;
  }
  .ys-hero-actions,
  .ys-sale-band,
  .ys-single-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ys-trust-pills,
  .ys-stat-grid,
  .ys-category-grid,
  .ys-product-grid,
  .woocommerce ul.products,
  .ys-footer-grid,
  .ys-single-gallery {
    grid-template-columns: 1fr;
  }
  .ys-slide {
    min-height: 520px;
  }
  .ys-slider-controls {
    right: 1.4rem;
  }
}
