:root {
  --bg: #121a1d;
  --bg-alt: #182427;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #edf5f5;
  --muted: #9eb0b0;
  --line: rgba(255, 255, 255, 0.12);
  --aqua: #7ef4f6;
  --orange: #ff8a2b;
  --blue: #2257ff;
  --pink: #ff43c4;
  --mocha: #8a6249;
  --lime: #b9ff2f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-small: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126, 244, 246, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 138, 43, 0.12), transparent 22%),
    linear-gradient(180deg, #101719 0%, #141d20 38%, #0d1214 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-banner {
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(255, 138, 43, 0.88), rgba(126, 244, 246, 0.48));
  color: #081012;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 18, 0.6);
  border-bottom: 1px solid transparent;
  transition: padding 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  padding: 14px 0;
  border-color: var(--line);
  background: rgba(11, 16, 18, 0.86);
}

.header-shell,
.footer-grid,
.split-grid,
.hero-grid {
  display: grid;
  gap: 24px;
}

.header-shell {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(20px, 3vw, 36px);
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  width: clamp(156px, 12vw + 84px, 230px);
  max-width: 100%;
  flex: 0 0 auto;
  line-height: 0;
}

.site-logo {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: none;
  max-height: none;
}

.site-title,
.site-footer h3,
h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
}

.site-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.primary-menu,
.footer-menu,
.menu-fallback,
.hero-metrics,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-menu,
.menu-fallback {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-menu a,
.menu-fallback a {
  font-size: 0.95rem;
  color: rgba(237, 245, 245, 0.82);
}

.header-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(90deg, var(--orange), #ffb15d);
  color: #111516;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.header-cta:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

/* Header Account & Cart */
.header-account-cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(237, 245, 245, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-icon-link:hover {
  color: var(--orange);
}

.header-icon-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--orange);
  color: #111516;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.hero-section,
.inner-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 86px 0 54px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.section-badge,
.eyebrow,
.footer-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.inner-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
}

.hero-copy p,
.lead-copy,
.section-head p,
.content-shell,
.footer-grid p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-metrics li {
  min-width: 126px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.9rem;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.visual-card,
.feature-card,
.collection-card,
.pillar-card,
.story-card,
.story-panel,
.post-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.visual-large {
  min-height: 220px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(126, 244, 246, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(255, 138, 43, 0.14), rgba(255, 255, 255, 0.02));
}

.visual-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-large h3 {
  max-width: 320px;
  margin: 18px 0 0;
  font-size: 2.1rem;
  line-height: 1;
}

.visual-strip {
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

.color-pill {
  flex: 1;
  min-height: 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.visual-stack {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-height: 260px;
}

.device-card,
.mock-device {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.device-card {
  flex: 1;
}

.device-card::before,
.mock-device::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53, 60, 67, 0.75) 0 21%, transparent 21%);
}

.device-card::after,
.mock-device::after {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  width: 26%;
  height: 20%;
  border-radius: 14px;
  transform: translateX(-50%);
  background: rgba(245, 246, 250, 0.78);
  box-shadow: 0 0 0 1px rgba(17, 21, 22, 0.18);
}

.visual-stack .offset {
  transform: translateY(-26px);
}

.section-shell {
  padding: 36px 0 72px;
}

.alt-shell,
.faq-shell,
.site-footer {
  background: rgba(255, 255, 255, 0.015);
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.feature-grid,
.collection-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.pillar-card,
.story-card,
.post-card,
.empty-state {
  padding: 24px;
}

.feature-card h3,
.collection-copy h3,
.collection-copy h2,
.story-card h2,
.pillar-card h3,
.post-card-copy h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1;
}

.feature-card p,
.collection-copy p,
.story-card p,
.pillar-card p,
.post-card-copy p,
.content-shell,
.archive-description {
  color: var(--muted);
}

.collection-card {
  overflow: hidden;
}

.collection-thumb {
  display: block;
  min-height: 320px;
  padding: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(18, 26, 29, 0.2));
}

.collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-fallback {
  width: 100%;
  height: 272px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(126, 244, 246, 0.22), rgba(255, 138, 43, 0.24));
}

.collection-copy {
  padding: 0 24px 24px;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pillar-list,
.contact-cards {
  display: grid;
  gap: 18px;
}

.story-visual img,
.hero-image-wrap img,
.single-thumb img,
.post-card-thumb img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.story-panel {
  min-height: 100%;
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font: 700 1.05rem/1.4 "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.inner-hero {
  padding: 74px 0 26px;
}

.content-shell > :last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 24px;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 28px;
}

.footer-menu,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.swatch-aqua {
  background:
    linear-gradient(180deg, rgba(241, 237, 232, 0.88) 0%, rgba(126, 244, 246, 0.94) 46%, rgba(255, 124, 0, 0.92) 100%);
}

.swatch-carbon {
  background:
    linear-gradient(180deg, rgba(84, 87, 92, 0.96) 0%, rgba(39, 43, 46, 0.98) 100%);
}

.swatch-cobalt {
  background:
    linear-gradient(180deg, rgba(201, 227, 255, 0.95) 0%, rgba(54, 110, 255, 0.94) 100%);
}

.swatch-aurora {
  background:
    linear-gradient(180deg, rgba(255, 66, 194, 0.96) 0%, rgba(136, 239, 244, 0.94) 100%);
}

.swatch-mocha {
  background:
    linear-gradient(180deg, rgba(240, 229, 226, 0.96) 0%, rgba(100, 60, 39, 0.95) 100%);
}

.swatch-lime {
  background:
    linear-gradient(180deg, rgba(255, 251, 210, 0.96) 0%, rgba(154, 222, 0, 0.96) 100%);
}

/* Homepage Slider */
.home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  max-height: 500px;
}

.slider-track {
  position: relative;
  width: 100%;
}

.slide {
  position: relative;
  display: none;
  width: 100%;
  height: 500px;
}

.slide.active {
  display: block;
}

.slide-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -4px;
}

.slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 26, 29, 0.85) 0%, rgba(18, 26, 29, 0.4) 50%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.slide-content h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.slide-content p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: rgba(237, 245, 245, 0.8);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

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

.slider-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

.catalog-pagination {
  margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination,
.woocommerce-pagination {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-pagination .page-numbers li {
  margin: 0;
  border: 0;
  padding: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:focus-visible,
.woocommerce nav.woocommerce-pagination ul li span:focus-visible,
.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers a:focus-visible,
.woocommerce-pagination .page-numbers .current {
  border-color: var(--orange);
  background: rgba(247, 147, 30, 0.12);
  color: var(--text);
}

.woocommerce-pagination .page-numbers .current {
  font-weight: 700;
}

/* Top Selling Products Grid */
.top-selling-section {
  padding-top: 56px;
}

.products-grid {
  --catalog-grid-columns: 5;
  display: grid;
  grid-template-columns: repeat(var(--catalog-grid-columns), minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.product-thumb .add-to-cart-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-thumb .add-to-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(126, 244, 246, 0.2), rgba(255, 138, 43, 0.2));
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-badge.sale {
  background: var(--orange);
  color: #111516;
}

.product-info {
  padding: 14px;
}

.product-info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.product-info-header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}

.product-info h3 a {
  color: var(--text);
  transition: color 0.2s ease;
}

.product-info h3 a:hover {
  color: var(--orange);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

.product-sales {
  font-size: 0.75rem;
  color: var(--muted);
}

.product-actions {
  display: none;
}

/* Cart Toast Notification */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, rgba(255, 138, 43, 0.95), rgba(255, 177, 93, 0.95));
  color: #111516;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast svg {
  flex-shrink: 0;
  stroke: #111516;
}

/* WooCommerce Notice Styles */
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--text);
}

.woocommerce-message {
  border-left: 4px solid #4caf50;
}

.woocommerce-info {
  border-left: 4px solid var(--aqua);
}

.woocommerce-error {
  border-left: 4px solid #f44336;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb15d);
  color: #111516;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .feature-grid,
  .collection-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .site-navigation {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11, 16, 18, 0.94);
  }

  .site-banner-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-logo-link {
    width: clamp(132px, 42vw, 178px);
  }

  .site-logo {
    width: 100% !important;
  }

  .primary-menu,
  .menu-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .header-account-cart {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .header-icon-label {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-copy h1,
  .inner-hero h1 {
    font-size: 2.7rem;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-actions,
  .hero-metrics {
    flex-direction: column;
  }

  .collection-thumb {
    min-height: 260px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slider-container {
    max-height: 400px;
  }

  .slide {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .slider-container {
    max-height: 300px;
  }

  .slide {
    height: 300px;
  }

  .slide-overlay {
    background: linear-gradient(180deg, rgba(18, 26, 29, 0.7) 0%, rgba(18, 26, 29, 0.5) 100%);
  }

  .slide-content {
    align-items: center;
    text-align: center;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   WooCommerce Cart Page Styles
   ============================================ */

/* Cart Layout - Side by Side */
.woocommerce-cart-form {
  flex: 1;
  min-width: 0;
}

.cart-collaterals {
  width: 360px;
  flex-shrink: 0;
}

.cart-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Cart Items Card */
.cart-items-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
              rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

/* Cart Table */
.woocommerce-cart-form__contents {
  width: 100%;
  border-collapse: collapse;
}

/* Product Row - Each item as a card row */
.woocommerce-cart-form__contents tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.woocommerce-cart-form__contents tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-cart-form__contents tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.woocommerce-cart-form__contents tbody td {
  padding: 20px 16px;
  vertical-align: middle;
}

/* Product Image */
.woocommerce-cart-form__contents .product-thumbnail {
  width: 100px;
  padding-left: 20px;
}

.woocommerce-cart-form__contents .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* Product Info (Name + Price) */
.woocommerce-cart-form__contents .product-name {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.woocommerce-cart-form__contents .product-name a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-cart-form__contents .product-name a:hover {
  color: var(--orange);
}

/* Unit Price */
.woocommerce-cart-form__contents .product-price {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0 !important;
}

/* Quantity Control - Compact inline style */
.woocommerce-cart-form__contents .quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.woocommerce-cart-form__contents .qty {
  width: 48px;
  height: 38px;
  padding: 0;
  text-align: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  -moz-appearance: textfield;
}

.woocommerce-cart-form__contents .qty::-webkit-outer-spin-button,
.woocommerce-cart-form__contents .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-cart-form__contents .qty:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.woocommerce-cart-form__contents .quantity .plus,
.woocommerce-cart-form__contents .quantity .minus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-cart-form__contents .quantity .plus:hover,
.woocommerce-cart-form__contents .quantity .minus:hover {
  background: var(--orange);
  color: #111516;
}

/* Remove Button - Text style */
.woocommerce-cart-form__contents .product-remove {
  text-align: center;
  padding-right: 20px !important;
}

.woocommerce-cart-form__contents .product-remove a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.woocommerce-cart-form__contents .product-remove a:hover {
  color: #f44336;
}

/* Product Subtotal - Right aligned */
.woocommerce-cart-form__contents .product-subtotal {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  padding-right: 20px !important;
  white-space: nowrap;
}

/* ============================================
   Cart Totals Section (Right Side)
   ============================================ */

.cart-totals-wrapper {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
              rgba(255, 255, 255, 0.02);
  padding: 24px;
}

.cart_totals {
  width: 100%;
}

.cart_totals > h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

/* Coupon Toggle */
.woocommerce-form-coupon-toggle {
  margin-bottom: 16px;
}

.woocommerce-form-coupon-toggle .showcoupon {
  color: var(--aqua);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.woocommerce-form-coupon-toggle .showcoupon:hover {
  color: var(--orange);
}

/* Coupon Form */
.woocommerce-form-coupon {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.woocommerce-form-coupon.toggle-active {
  display: flex;
}

.woocommerce-form-coupon input[type="text"] {
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.9rem;
}

.woocommerce-form-coupon input[type="text"]::placeholder {
  color: var(--muted);
}

.woocommerce-form-coupon input[type="text"]:focus {
  outline: none;
  border-color: var(--aqua);
}

.woocommerce-form-coupon button {
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.woocommerce-form-coupon button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--aqua);
}

/* Totals Table */
.cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.cart_totals table.shop_table_responsive {
  margin-bottom: 16px;
}

.cart_totals table th,
.cart_totals table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart_totals table th {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

.cart_totals table td {
  text-align: right;
  color: var(--text);
  font-weight: 600;
}

/* Shipping Section - Collapsible */
.woocommerce-shipping-totals {
  padding: 12px 0;
}

.woocommerce-shipping-totals .shipping-methods {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.woocommerce-shipping-totals .shipping-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.woocommerce-shipping-totals .shipping-methods input[type="radio"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

.woocommerce-shipping-totals .shipping-methods label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* Order Total */
.cart_totals .order-total th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 16px;
}

.cart_totals .order-total td {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  padding-top: 16px;
}

/* Checkout Button - Black Style */
.cart_totals .wc-proceed-to-checkout {
  margin-top: 24px;
}

.cart_totals .wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Continue Shopping */
.woocommerce-cart-form + .return-to-shop {
  margin-top: 24px;
  text-align: center;
}

.return-to-shop .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.return-to-shop .button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--aqua);
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  stroke: var(--muted);
}

.cart-empty p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cart-empty .return-to-shop {
  display: flex;
  justify-content: center;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 980px) {
  .cart-container {
    flex-direction: column;
  }

  .cart-collaterals,
  .cart-totals-wrapper {
    width: 100%;
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-items-wrapper {
    border-radius: var(--radius-small);
    overflow-x: auto;
  }

  .woocommerce-cart-form__contents {
    min-width: 560px;
  }

  .woocommerce-cart-form__contents tbody td {
    padding: 14px 12px;
  }

  .woocommerce-cart-form__contents .product-thumbnail {
    padding-left: 14px;
  }

  .woocommerce-cart-form__contents .product-thumbnail img {
    width: 60px;
    height: 60px;
  }

  .woocommerce-cart-form__contents .product-name {
    font-size: 0.9rem;
  }

  .cart_totals .order-total td {
    font-size: 1.2rem;
  }

  .woocommerce-form-coupon {
    flex-direction: column;
  }

  .woocommerce-form-coupon button {
    width: 100%;
  }
}

/* WooCommerce Product Page Styles */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  margin: 0 0 24px !important;
  color: var(--muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  color: inherit !important;
}

.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce-page .woocommerce-breadcrumb a:hover {
  color: var(--orange) !important;
}

.woocommerce-page div.product {
  color: var(--text);
}

/* Hide sidebar on product pages */
.woocommerce-page #sidebar {
  display: none !important;
}



.woocommerce div.product,
.woocommerce-page div.product {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
  flex: 1 !important;
  min-width: 300px !important;
  max-width: 48% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  flex: 1 !important;
  min-width: 300px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 48% !important;
  display: grid !important;
  align-content: start;
  gap: 18px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price {
  color: var(--orange) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
  color: var(--text) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: clamp(2.8rem, 5vw, 4.6rem) !important;
  font-weight: 700 !important;
  line-height: 0.96 !important;
  margin: 0 !important;
  clear: none !important;
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
  background: var(--panel) !important;
  border-radius: var(--radius-small) !important;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-page div.product .woocommerce-product-details__short-description {
  color: var(--muted) !important;
  max-width: 34rem;
  margin: 0 !important;
  font-size: 1.05rem;
  line-height: 1.7;
}

.woocommerce div.product form.cart,
.woocommerce-page div.product form.cart {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: fit-content;
  margin: 4px 0 0 !important;
  padding: 12px !important;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-small) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.woocommerce div.product form.cart .quantity,
.woocommerce-page div.product form.cart .quantity {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  float: none !important;
  border: 2px solid rgba(24, 36, 40, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.woocommerce div.product form.cart .qty,
.woocommerce-page div.product form.cart .qty {
  width: 60px !important;
  height: 58px;
  padding: 0 !important;
  border: 0;
  border-left: 1px solid rgba(24, 36, 40, 0.12);
  border-right: 1px solid rgba(24, 36, 40, 0.12);
  border-radius: 0;
  background: transparent;
  color: #172126;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  box-shadow: none !important;
  -moz-appearance: textfield;
  appearance: textfield;
}

.woocommerce div.product form.cart .button,
.woocommerce-page div.product form.cart .button,
.woocommerce div.product form.cart button,
.woocommerce-page div.product form.cart button {
  background: linear-gradient(90deg, var(--orange), #ffb15d) !important;
  color: #111516 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  min-height: 54px;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease !important;
}

.woocommerce div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .qty::-webkit-inner-spin-button,
.woocommerce-page div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce-page div.product form.cart .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.product form.cart .qty:focus,
.woocommerce-page div.product form.cart .qty:focus {
  outline: none;
}

.woocommerce div.product form.cart .qty-step,
.woocommerce-page div.product form.cart .qty-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f767c;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce div.product form.cart .qty-step:hover,
.woocommerce-page div.product form.cart .qty-step:hover {
  background: rgba(24, 36, 40, 0.04);
  color: #172126;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .button:hover {
  transform: translateY(-2px) !important;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
  width: 100% !important;
  margin-top: 40px !important;
  clear: both !important;
}

.woocommerce div.product .product_meta,
.woocommerce-page div.product .product_meta {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.woocommerce div.product .product_meta > span,
.woocommerce-page div.product .product_meta > span {
  display: block;
}

.woocommerce div.product .product_meta a,
.woocommerce-page div.product .product_meta a {
  color: var(--text);
}

.woocommerce div.product .product_meta a:hover,
.woocommerce-page div.product .product_meta a:hover {
  color: var(--orange);
}

@media (max-width: 980px) {
  .woocommerce div.product form.cart,
  .woocommerce-page div.product form.cart {
    width: 100%;
    justify-content: space-between;
  }

  .woocommerce div.product form.cart .button,
  .woocommerce-page div.product form.cart .button {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    font-size: 0.88rem !important;
  }

  .woocommerce div.product form.cart,
  .woocommerce-page div.product form.cart {
    flex-direction: column;
    align-items: stretch !important;
  }

  .woocommerce div.product form.cart .quantity,
  .woocommerce-page div.product form.cart .quantity,
  .woocommerce div.product form.cart .qty,
  .woocommerce-page div.product form.cart .qty {
    width: 100% !important;
  }
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  border-bottom: 1px solid var(--line) !important;
  display: flex !important;
  gap: 10px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  color: var(--muted) !important;
  padding: 10px 20px !important;
  display: block !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--orange) !important;
  border-bottom: 2px solid var(--orange) !important;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce-page div.product .woocommerce-tabs .panel {
  color: var(--text) !important;
  padding: 20px 0 !important;
}

.woocommerce #reviews #comments h2,
.woocommerce-page #reviews #comments h2 {
  color: var(--text) !important;
  font-family: "Barlow Condensed", sans-serif !important;
}

.woocommerce .related.products h2,
.woocommerce-page .related.products h2 {
  color: var(--text) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 1.8rem !important;
  margin-bottom: 20px !important;
}

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

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

.woocommerce .related.products ul.products li.product,
.woocommerce-page .related.products ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  padding: 0 0 24px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.woocommerce .related.products ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page .related.products ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}

.woocommerce .related.products ul.products li.product img,
.woocommerce-page .related.products ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 0 18px !important;
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page .related.products ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  padding: 0 20px;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1;
}

.woocommerce .related.products ul.products li.product .price,
.woocommerce-page .related.products ul.products li.product .price {
  margin-top: auto !important;
  padding: 16px 20px 0 !important;
  color: var(--orange) !important;
  font-size: 1rem !important;
  font-weight: 700;
}

.woocommerce .related.products ul.products li.product .button,
.woocommerce-page .related.products ul.products li.product .button {
  align-self: flex-start;
  margin: 18px 20px 0 !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--orange), #ffb15d) !important;
  color: #111516 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.woocommerce .related.products ul.products li.product .button.loading,
.woocommerce-page .related.products ul.products li.product .button.loading {
  padding-right: 20px !important;
}

@media (max-width: 1100px) {
  .woocommerce .related.products ul.products,
  .woocommerce-page .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .woocommerce .related.products ul.products,
  .woocommerce-page .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Remove default WooCommerce floats */
.woocommerce .product,
.woocommerce-page .product {
  overflow: visible !important;
}

/* Light theme overrides */
.theme-light {
  --bg: #f7f1e6;
  --bg-alt: #edf3f2;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #182428;
  --muted: #64757a;
  --line: rgba(24, 36, 40, 0.14);
  --aqua: #1c98a7;
  --orange: #de7421;
  --blue: #376dff;
  --pink: #dc56ad;
  --mocha: #9f7656;
  --lime: #6aa62f;
  --shadow: 0 24px 56px rgba(144, 117, 84, 0.14);
  background:
    radial-gradient(circle at top left, rgba(61, 189, 196, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(247, 147, 30, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f6efe5 42%, #edf4f2 100%);
}

body.theme-light .site-banner {
  background: linear-gradient(90deg, rgba(255, 190, 112, 0.94), rgba(139, 225, 226, 0.72));
  color: #172126;
}

body.theme-light .site-header {
  background: rgba(255, 250, 243, 0.8);
}

body.theme-light .site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.95);
}

body.theme-light .primary-menu a,
body.theme-light .menu-fallback a,
body.theme-light .header-icon-link {
  color: rgba(24, 36, 40, 0.8);
}

body.theme-light .button-secondary {
  border-color: rgba(24, 36, 40, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

body.theme-light .section-badge,
body.theme-light .eyebrow,
body.theme-light .footer-kicker {
  background: rgba(28, 152, 167, 0.09);
}

body.theme-light .visual-card,
body.theme-light .feature-card,
body.theme-light .collection-card,
body.theme-light .pillar-card,
body.theme-light .story-card,
body.theme-light .story-panel,
body.theme-light .post-card,
body.theme-light .empty-state,
body.theme-light .faq-item,
body.theme-light .product-card,
body.theme-light .woocommerce-message,
body.theme-light .woocommerce-info,
body.theme-light .woocommerce-error {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    rgba(255, 250, 245, 0.8);
  box-shadow: var(--shadow);
}

body.theme-light .visual-large {
  background:
    radial-gradient(circle at top right, rgba(61, 189, 196, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(247, 147, 30, 0.16), rgba(255, 255, 255, 0.82));
}

body.theme-light .visual-tag {
  background: rgba(255, 255, 255, 0.82);
  color: #4f8b28;
}

body.theme-light .alt-shell,
body.theme-light .faq-shell,
body.theme-light .site-footer {
  background: rgba(255, 255, 255, 0.34);
}

body.theme-light .collection-thumb {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 241, 0.9));
}

body.theme-light .story-visual img,
body.theme-light .hero-image-wrap img,
body.theme-light .single-thumb img,
body.theme-light .post-card-thumb img,
body.theme-light .woocommerce nav.woocommerce-pagination ul li a,
body.theme-light .woocommerce nav.woocommerce-pagination ul li span,
body.theme-light .woocommerce-pagination .page-numbers a,
body.theme-light .woocommerce-pagination .page-numbers span {
  background: rgba(255, 255, 255, 0.82);
}

body.theme-light .product-placeholder,
body.theme-light .image-fallback {
  background: linear-gradient(135deg, rgba(61, 189, 196, 0.18), rgba(247, 147, 30, 0.18));
}

body.theme-light .slide-overlay {
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.82) 0%, rgba(255, 249, 241, 0.44) 46%, transparent 100%);
}

body.theme-light .slider-nav {
  border: 1px solid rgba(24, 36, 40, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

body.theme-light .slider-nav:hover {
  background: rgba(255, 255, 255, 0.94);
}

body.theme-light .slider-dot {
  background: rgba(24, 36, 40, 0.18);
}

@media (max-width: 980px) {
  body.theme-light .site-navigation {
    background: rgba(255, 250, 243, 0.98);
  }
}
