:root {
  --pod-ink: #f8f5ef;
  --pod-muted: #c9c3b8;
  --pod-accent: #f59e0b;
  --pod-accent-dark: #c2410c;
  --pod-panel: #101827;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: #1f2937;
  background-color: #f7f3ea;
}

body.home {
  color: var(--pod-ink);
  background-color: #0b1016;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pod-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.pod-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pod-logo {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.pod-nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.pod-nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.pod-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pod-cta:hover {
  transform: translateY(-1px);
}

body.home .pod-header {
  background: rgba(2, 6, 23, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.home .pod-logo,
body.home .pod-nav-menu a {
  color: #e2e8f0;
}

body.home .pod-nav-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.home .pod-cta {
  background: var(--pod-accent);
  color: #1c140b;
  border: 1px solid transparent;
}

body.home .pod-cta:hover {
  background: #fbbf24;
}

body:not(.home) .pod-header {
  background: rgba(247, 243, 234, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

body:not(.home) .pod-logo,
body:not(.home) .pod-nav-menu a {
  color: #111827;
}

body:not(.home) .pod-nav-menu a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
}

body:not(.home) .pod-cta {
  background: var(--pod-accent);
  color: #1c140b;
  border: 1px solid transparent;
}

body:not(.home) .pod-cta:hover {
  background: #fbbf24;
}

.pod-prose {
  color: var(--pod-muted);
  line-height: 1.75;
}

.pod-prose h1,
.pod-prose h2,
.pod-prose h3,
.pod-prose h4 {
  color: var(--pod-ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.pod-prose h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.pod-prose p {
  margin-bottom: 1.25rem;
}

.pod-prose a {
  color: var(--pod-accent);
  text-decoration: none;
}

.pod-prose a:hover {
  color: #fbbf24;
}

.pod-prose ul,
.pod-prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.pod-prose blockquote {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
  color: var(--pod-ink);
}

body:not(.home) .pod-prose {
  color: #3f3b36;
}

body:not(.home) .pod-prose h1,
body:not(.home) .pod-prose h2,
body:not(.home) .pod-prose h3,
body:not(.home) .pod-prose h4 {
  color: #111827;
}

body:not(.home) .pod-prose a {
  color: #b45309;
}

body:not(.home) .pod-prose blockquote {
  border-left: 2px solid rgba(15, 23, 42, 0.15);
  color: #111827;
}

.pod-hero-bg {
  background: radial-gradient(circle at top right, rgba(14, 165, 164, 0.2), transparent 45%),
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.25), transparent 40%),
    linear-gradient(135deg, #0b1016 0%, #0f1724 50%, #121a28 100%);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.pod-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 8px
  );
  opacity: 0.25;
  pointer-events: none;
}

.pod-marquee {
  overflow: hidden;
  position: relative;
}

.pod-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: pod-marquee 18s linear infinite;
}

.pod-marquee-track img {
  height: 44px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.pod-marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.pod-card,
.pod-card-lg {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.pod-card::before,
.pod-card-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 23, 0.2), rgba(10, 15, 23, 0.9));
  transition: opacity 0.2s ease;
}

.pod-card:hover::before,
.pod-card-lg:hover::before {
  opacity: 0.7;
}

.pod-card > div,
.pod-card-lg > div {
  position: relative;
  z-index: 1;
}

.pod-card h3,
.pod-card-lg h3 {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.pod-card p,
.pod-card-lg p {
  color: var(--pod-muted);
}

@media (min-width: 1024px) {
  .pod-card-lg {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
  }
}

@keyframes pod-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .pod-marquee-track {
    animation: none;
  }
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering select {
  color: var(--pod-muted);
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  background: #0f1724;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(5, 10, 20, 0.45);
}

.woocommerce ul.products li.product img {
  margin: 0 !important;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 1rem 1rem 0.4rem;
  color: var(--pod-ink);
  font-size: 1.05rem;
}

.woocommerce ul.products li.product .price {
  padding: 0 1rem 1.1rem;
  color: var(--pod-accent) !important;
  font-weight: 700;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 2rem);
  margin: 0 1rem 1.4rem !important;
  border-radius: 999px !important;
  background: #1f2937 !important;
  color: var(--pod-ink) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  padding: 0.7rem 1rem !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--pod-accent) !important;
  color: #1c140b !important;
}

.woocommerce span.onsale {
  background: var(--pod-accent-dark) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.25rem 0.75rem !important;
  font-size: 0.7rem !important;
}

.woocommerce div.product .product_title {
  color: var(--pod-ink);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--pod-accent) !important;
  font-weight: 700;
}

.woocommerce div.product .woocommerce-product-gallery img {
  border-radius: 20px;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--pod-accent) !important;
  color: #1c140b !important;
  border-radius: 999px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: none !important;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #fbbf24 !important;
}

.woocommerce .quantity input.qty,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: #0b1220;
  color: var(--pod-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
}

.woocommerce table.shop_table {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #0b1220;
  color: var(--pod-ink);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
  background: #0b1220;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: #0f1724;
  color: var(--pod-ink);
  border-top-color: var(--pod-accent);
}

.woocommerce .select2-container .select2-selection--single {
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  height: 42px;
  padding: 0.4rem 0.75rem;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--pod-ink);
}

body:not(.home) .woocommerce .woocommerce-breadcrumb,
body:not(.home) .woocommerce .woocommerce-result-count,
body:not(.home) .woocommerce .woocommerce-ordering select {
  color: #4b5563;
}

body:not(.home) .woocommerce .woocommerce-ordering select {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

body:not(.home) .woocommerce ul.products li.product {
  background: #fffdf7;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

body:not(.home) .woocommerce ul.products li.product:hover {
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.12);
}

body:not(.home) .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #111827;
}

body:not(.home) .woocommerce ul.products li.product img {
  background: #f1ebe2;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

body:not(.home) .woocommerce ul.products li.product .price {
  color: #b45309 !important;
}

body:not(.home) .woocommerce ul.products li.product .button {
  background: #111827 !important;
  color: #f8f5ef !important;
  border-color: #111827 !important;
}

body:not(.home) .woocommerce ul.products li.product .button:hover {
  background: #1f2937 !important;
}

body:not(.home) .woocommerce span.onsale {
  background: #b45309 !important;
}

body:not(.home) .woocommerce div.product .product_title {
  color: #111827;
}

body:not(.home) .woocommerce div.product p.price,
body:not(.home) .woocommerce div.product span.price {
  color: #b45309 !important;
}

body:not(.home) .woocommerce div.product .woocommerce-product-gallery img {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body:not(.home) .woocommerce div.product form.cart .button,
body:not(.home) .woocommerce a.button,
body:not(.home) .woocommerce button.button,
body:not(.home) .woocommerce input.button {
  background: #111827 !important;
  color: #f8f5ef !important;
}

body:not(.home) .woocommerce div.product form.cart .button:hover,
body:not(.home) .woocommerce a.button:hover,
body:not(.home) .woocommerce button.button:hover,
body:not(.home) .woocommerce input.button:hover {
  background: #1f2937 !important;
}

body:not(.home) .woocommerce .quantity input.qty,
body:not(.home) .woocommerce input.input-text,
body:not(.home) .woocommerce textarea,
body:not(.home) .woocommerce select {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

body:not(.home) .woocommerce table.shop_table {
  background: #fff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.1);
}

body:not(.home) .woocommerce table.shop_table th,
body:not(.home) .woocommerce table.shop_table td {
  border-color: rgba(15, 23, 42, 0.08) !important;
}

body:not(.home) .woocommerce-cart .cart_totals,
body:not(.home) .woocommerce-checkout #order_review {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.1);
}

body:not(.home) .woocommerce-message,
body:not(.home) .woocommerce-info,
body:not(.home) .woocommerce-error {
  background: #fffbeb;
  color: #92400e;
  border-top-color: #f59e0b;
}

body:not(.home) .woocommerce .select2-container .select2-selection--single {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

body:not(.home) .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #111827;
}
