/* -------------------------------------------------------------
 * Jeanesis Theme - Core Stylesheet
 * Modern Dark Luxury Streetwear E-Commerce
 * ----------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --bg-black: #08080a;
  --bg-surface: #101014;
  --bg-elevated: #16161b;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text-white: #ffffff;
  --text-muted: #94949e;
  --text-dim: #62626e;
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --accent-white: #ffffff;
  --accent-silver: #e2e2e8;
  --header-height: 80px;
  --topbar-height: 38px;
  --container-max: 1440px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-black);
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* -------------------------------------------------------------
 * Top Announcement Bar
 * ----------------------------------------------------------- */
.top-bar {
  background-color: #030304;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-messages {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #c4c4cc;
}

.top-bar-messages span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-messages .divider {
  color: var(--border-strong);
  opacity: 0.4;
}

.top-bar-locale {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #d1d1d6;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.top-bar-locale:hover {
  color: #fff;
}

/* -------------------------------------------------------------
 * Main Site Header
 * ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 99;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo svg, .site-logo img {
  height: 38px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b0b0b8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-white);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-action-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.35rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header-action-btn:hover {
  transform: translateY(-2px);
  color: var(--accent-silver);
}

.header-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* -------------------------------------------------------------
 * Hero Section
 * ----------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--topbar-height));
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4.5rem;
  background: #060608;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 30%, rgba(0,0,0,0.1) 0%, rgba(8,8,10,0.85) 90%),
              linear-gradient(to top, rgba(8,8,10,1) 0%, rgba(8,8,10,0.3) 40%, rgba(8,8,10,0.4) 100%);
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}

.hero-content {
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #d4d4dc;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d1d1d8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #000000;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid #ffffff;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.hero-slider-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-slide-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 6px;
}

.hero-slide-num.active {
  color: #ffffff;
}

.hero-slide-num.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* Hero Right Vertical Ticker */
.hero-side-ticker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 3rem;
  padding-bottom: 0.5rem;
}

.hero-badge-column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.hero-badge-column span {
  display: block;
}

.hero-sub-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

/* -------------------------------------------------------------
 * Section: The Origin (01 / COLLECTION)
 * ----------------------------------------------------------- */
.origin-section {
  padding: 7rem 0;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.origin-left {
  display: flex;
  flex-direction: column;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b8b96;
  margin-bottom: 1rem;
}

.section-heading-large {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.origin-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 380px;
}

.btn-black-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #ffffff;
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  width: fit-content;
  transition: var(--transition-smooth);
}

.btn-black-outline:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.origin-thumbnails {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.origin-thumb-item {
  width: 75px;
  height: 95px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.origin-thumb-item:hover, .origin-thumb-item.active {
  border-color: #ffffff;
  transform: translateY(-3px);
}

.origin-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-limitation-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b8b96;
}

.origin-center {
  position: relative;
}

.origin-hero-image-wrap {
  position: relative;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.origin-hero-image-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.origin-hero-image-wrap:hover img {
  transform: scale(1.04);
}

.origin-quality-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.origin-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.origin-story-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 280px;
}

.origin-divider {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.origin-quote {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a1a1aa;
  line-height: 1.8;
  max-width: 260px;
}

/* -------------------------------------------------------------
 * Section: Shop By Category
 * ----------------------------------------------------------- */
.category-section {
  padding: 6.5rem 0;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-link-all {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a1a1aa;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-link-all:hover {
  color: #ffffff;
  transform: translateX(4px);
}

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

.category-card {
  position: relative;
  background: var(--bg-surface);
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  transition: var(--transition-smooth);
}

.category-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.9);
}

.category-card:hover .category-card-bg img {
  transform: scale(1.08);
  filter: brightness(1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(8,8,10,0.95) 0%, rgba(8,8,10,0.4) 40%, rgba(8,8,10,0.1) 100%);
  transition: opacity 0.4s ease;
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d1d1d8;
  transition: color 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-card-cta {
  color: #ffffff;
  transform: translateX(4px);
}

/* -------------------------------------------------------------
 * Section: Our World - More Than Clothing
 * ----------------------------------------------------------- */
.world-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #000000;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 0;
}

.world-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.world-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
}

.world-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8,8,10,0.95) 0%, rgba(8,8,10,0.6) 45%, rgba(8,8,10,0.4) 100%);
}

.world-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
}

.world-content {
  max-width: 540px;
}

.world-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b8b96;
  margin-bottom: 1rem;
}

.world-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.world-desc {
  font-size: 0.95rem;
  color: #c4c4cc;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.world-quote-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-right: 2rem;
}

.world-quote-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  max-width: 320px;
}

.world-quote-line {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------------------
 * Value Props Bar
 * ----------------------------------------------------------- */
.value-props-section {
  background: #0a0a0d;
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.prop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.prop-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.prop-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.prop-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.prop-desc {
  font-size: 0.75rem;
  color: #8b8b96;
  line-height: 1.4;
}

/* -------------------------------------------------------------
 * Site Footer
 * ----------------------------------------------------------- */
.site-footer {
  background: #050507;
  padding: 6rem 0 3rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.8fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #71717a;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.footer-social-link {
  color: #8b8b96;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: #8b8b96;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-newsletter-col {
  display: flex;
  flex-direction: column;
}

.newsletter-desc {
  font-size: 0.82rem;
  color: #8b8b96;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  align-items: center;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: #ffffff;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.2rem;
  color: #ffffff;
  outline: none;
  font-size: 0.82rem;
}

.newsletter-input::placeholder {
  color: #52525b;
}

.newsletter-submit {
  background: #ffffff;
  border: none;
  color: #000000;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.newsletter-submit:hover {
  background: #d4d4dc;
}

.newsletter-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.newsletter-note {
  font-size: 0.72rem;
  color: #52525b;
  letter-spacing: 0.05em;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #52525b;
}

/* -------------------------------------------------------------
 * Slide-Out Mini Cart Drawer
 * ----------------------------------------------------------- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #0c0c0f;
  border-left: 1px solid var(--border-subtle);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-drawer-close {
  background: transparent;
  border: none;
  color: #8b8b96;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.cart-drawer-close:hover {
  color: #ffffff;
}

.cart-shipping-notice {
  background: var(--bg-surface);
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c4c4cc;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-drawer-footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: #09090b;
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #ffffff;
  color: #000000;
  padding: 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  transition: var(--transition-smooth);
}

.cart-checkout-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* -------------------------------------------------------------
 * Search Modal
 * ----------------------------------------------------------- */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.search-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-modal-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 2rem;
  position: relative;
}

.search-close-btn {
  position: absolute;
  top: -45px;
  right: 2rem;
  background: transparent;
  border: none;
  color: #8b8b96;
  cursor: pointer;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.75rem;
}

.search-input-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.search-input-wrap input::placeholder {
  color: #52525b;
}

/* -------------------------------------------------------------
 * Responsive Media Queries
 * ----------------------------------------------------------- */
@media (max-width: 1200px) {
  .origin-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .origin-right {
    grid-column: span 2;
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  .footer-newsletter-col {
    grid-column: span 4;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-side-ticker {
    display: none;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .world-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .world-quote-block {
    align-items: flex-start;
    text-align: left;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .top-bar-messages .divider,
  .top-bar-messages span:nth-child(2),
  .top-bar-messages span:nth-child(3) {
    display: none;
  }
  .hero-section {
    padding: 4rem 0 3rem;
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary {
    justify-content: center;
  }
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .origin-right {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .props-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* -------------------------------------------------------------
 * Anti-Clash Reset: Neutralize Residual Dummy Theme & Page Builders
 * ----------------------------------------------------------- */
html, body {
  background-color: #08080a !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

#page, .site, #content, .site-content, .content-area,
.wp-site-blocks, .entry-content, .ast-container,
.elementor, .elementor-section-wrap {
  background: transparent !important;
  color: inherit !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* Suppress 3rd-party plugin header/footer overrides */
.hfe-header, .hfe-footer, .hfe-before-header,
.elementor-location-header, .elementor-location-footer,
.ast-header-breadcrumb, .ast-above-header, .ast-below-header,
#ast-scroll-top, .site-below-footer-wrap {
  display: none !important;
}

/* Ensure Jeanesis container works regardless of outer layout */
.jeanesis-homepage-main,
body.home .site-main {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

