:root {
  --oranje-page: #f7efe8;
  --oranje-surface: #fff9f3;
  --oranje-gallery: #eadfd2;
  --oranje-ink: #21151c;
  --oranje-muted: #776762;
  --oranje-line: #dac7b8;
  --oranje-brand: #b86618;
  --oranje-brand-dark: #7d3d0b;
  --oranje-delft: #312534;
  --oranje-gold: #c18733;
  --oranje-serif: Georgia, 'Times New Roman', serif;
  --oranje-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body.oranje-site {
  min-width: 320px;
  margin: 0;
  color: var(--oranje-ink);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(247, 239, 232, 0.94) 46%), var(--oranje-page);
  font-family: var(--oranje-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.oranje-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  color: #fff;
  background: var(--oranje-delft);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.oranje-skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(184, 102, 24, 0.28);
}

.oranje-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 31, 45, 0.08);
  background: rgba(255, 250, 240, 0.96);
  backdrop-filter: blur(22px);
}

.oranje-header.is-compact {
  box-shadow: 0 10px 28px rgba(8, 31, 45, 0.08);
}

.oranje-announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  color: #fff;
  background: var(--oranje-delft);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oranje-announcement span:not(:first-child)::before {
  content: "/";
  margin-right: 16px;
  color: rgba(255, 250, 240, 0.42);
}

.oranje-header-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 14px;
}

.oranje-brand img {
  width: auto;
  height: 66px;
  transition: height 0.24s ease;
}

.oranje-header.is-compact .oranje-brand img {
  height: 50px;
}

.oranje-primary-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.oranje-primary-nav::-webkit-scrollbar {
  display: none;
}

.oranje-primary-nav a,
.oranje-header-actions a,
.oranje-header-actions button,
.oranje-header-actions input[type="submit"] {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--oranje-ink);
  background: rgba(255, 253, 248, 0.76);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 820;
  text-decoration: none;
}

.oranje-primary-nav a:hover,
.oranje-primary-nav a:focus-visible,
.oranje-header-actions a:hover,
.oranje-header-actions a:focus-visible {
  color: var(--oranje-brand);
  outline: none;
}

.oranje-header-actions {
  display: flex;
  grid-column: 2;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.oranje-header-actions form {
  display: flex;
  min-width: 0;
  max-width: 240px;
}

.oranje-header-actions input[type="search"] {
  width: min(168px, 36vw);
  min-height: 38px;
  border: 1px solid var(--oranje-line);
  border-radius: 999px;
  color: var(--oranje-ink);
  background: rgba(255, 253, 248, 0.88);
  padding: 0 12px;
  font-size: 13px;
}

.oranje-header-actions input[type="submit"] {
  display: none;
}

.oranje-bag-link {
  position: relative;
}

.oranje-bag-link span {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--oranje-brand);
  margin-left: 5px;
  font-size: 10px;
}

.oranje-main,
.oranje-footer {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
}

.oranje-main {
  padding: 14px 0 52px;
}

.oranje-hero {
  display: grid;
  min-height: clamp(420px, 55vw, 620px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(184, 102, 24, 0.14);
  border-radius: 10px;
  background: linear-gradient(136deg, transparent 0 57%, rgba(255, 250, 240, 0.58) 58% 100%), linear-gradient(180deg, #f4e4d4 0%, #f6e8da 42%, #ecd8c4 100%);
  box-shadow: 0 18px 48px rgba(89, 55, 26, 0.13);
  text-align: center;
}

.oranje-hero div {
  display: grid;
  max-width: 760px;
  justify-items: center;
  gap: 14px;
  padding: 34px;
}

.oranje-hero img {
  width: auto;
  height: clamp(94px, 12vw, 150px);
}

.oranje-hero p {
  margin: 0;
  color: var(--oranje-brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oranje-hero h1,
.oranje-archive-hero h1,
.oranje-page h1,
.product_title,
.oranje-home-copy h2 {
  margin: 0;
  color: var(--oranje-ink);
  font-family: var(--oranje-serif);
  font-weight: 500;
  line-height: 0.96;
}

.oranje-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 8vw, 90px);
}

.oranje-hero a,
.single_add_to_cart_button,
.checkout-button,
.wc-block-components-button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--oranje-brand);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.oranje-service-strip,
.oranje-home-section,
.oranje-archive-hero,
.oranje-shop-toolbar,
.oranje-page,
.oranje-footer,
.woocommerce div.product,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout form.checkout {
  border: 1px solid rgba(8, 31, 45, 0.1);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 28px rgba(8, 31, 45, 0.08);
}

.oranje-service-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
}

.oranje-service-strip div {
  display: grid;
  gap: 3px;
  background: rgba(255, 250, 240, 0.78);
  padding: 14px;
}

.oranje-service-strip span,
.oranje-section-heading p,
.oranje-archive-hero p,
.oranje-home-copy p:first-child {
  margin: 0;
  color: var(--oranje-brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oranje-service-strip strong {
  color: var(--oranje-ink);
  font-size: 14px;
}

.oranje-home-section,
.oranje-page,
.woocommerce div.product,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout form.checkout {
  margin-top: 18px;
  padding: 16px;
}

.oranje-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.oranje-section-heading h2 {
  margin: 0;
  color: var(--oranje-ink);
  font-size: 26px;
  line-height: 1;
}

.oranje-section-heading a {
  color: var(--oranje-brand);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.oranje-home-copy {
  display: grid;
  gap: 14px;
}

.oranje-home-copy h2 {
  font-size: clamp(34px, 6vw, 66px);
}

.oranje-home-copy > p {
  margin: 0;
  color: var(--oranje-muted);
  font-size: 15px;
  line-height: 1.55;
}

.oranje-archive-hero {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
  padding: 18px;
}

.oranje-archive-hero h1 {
  font-size: clamp(38px, 7vw, 72px);
}

.oranje-archive-hero > span,
.woocommerce-result-count,
.oranje-card-meta,
.woocommerce-product-details__short-description,
.product_meta,
.oranje-pdp-trust span {
  color: var(--oranje-muted);
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0;
  color: var(--oranje-muted);
  font-size: 12px;
  font-weight: 760;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--oranje-muted);
  text-decoration: none;
}

.oranje-shop-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
}

.oranje-shop-toolbar strong {
  display: block;
  color: var(--oranje-ink);
  font-size: 14px;
}

.oranje-shop-toolbar span {
  color: var(--oranje-muted);
  font-size: 12px;
}

.woocommerce-ordering select {
  min-height: 42px;
  border: 1px solid var(--oranje-line);
  border-radius: 8px;
  color: var(--oranje-ink);
  background: var(--oranje-page);
  padding: 0 11px;
  font-size: 13px;
  font-weight: 760;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 31, 45, 0.1);
  border-radius: 8px;
  background: var(--oranje-surface);
  box-shadow: 0 12px 26px rgba(8, 31, 45, 0.08);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: grid;
  color: var(--oranje-ink);
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--oranje-gallery);
  margin: 0;
}

.oranje-card-brand,
.woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.oranje-card-meta,
.woocommerce ul.products li.product .button {
  margin-right: 12px;
  margin-left: 12px;
}

.oranje-card-brand {
  margin-top: 12px;
  margin-bottom: 4px;
  color: var(--oranje-brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-loop-product__title {
  min-height: 42px;
  padding: 0;
  color: var(--oranje-ink);
  font-size: 16px;
  line-height: 1.18;
}

.oranje-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
}

.oranje-card-meta span {
  border: 1px solid var(--oranje-line);
  border-radius: 999px;
  padding: 5px 8px;
}

.woocommerce ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--oranje-brand);
  font-size: 15px;
  font-weight: 850;
}

.woocommerce ul.products li.product .price del {
  color: var(--oranje-muted);
  opacity: 0.8;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 24px);
  margin-bottom: 12px;
}

.woocommerce div.product {
  display: grid;
  gap: 18px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.product_title {
  font-size: clamp(42px, 7vw, 72px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--oranje-brand);
  font-size: 24px;
  font-weight: 860;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.quantity .qty {
  min-height: 46px;
  border: 1px solid var(--oranje-line);
  border-radius: 999px;
  color: var(--oranje-ink);
  background: var(--oranje-page);
}

.oranje-pdp-trust {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.oranje-pdp-trust div {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 8px;
  border: 1px solid var(--oranje-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  padding: 11px;
}

.oranje-pdp-trust strong {
  color: var(--oranje-ink);
}

.oranje-page h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 7vw, 72px);
}

.oranje-page-content {
  color: var(--oranje-muted);
  line-height: 1.6;
}

.oranje-footer {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--oranje-surface);
  background: linear-gradient(135deg, rgba(49, 37, 52, 0.98), rgba(33, 21, 28, 0.98));
  padding: 22px;
}

.oranje-footer-brand img {
  width: auto;
  height: 104px;
}

.oranje-footer p,
.oranje-footer small {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.oranje-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oranje-footer nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 760px) {
  .oranje-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 12px 20px;
  }

  .oranje-primary-nav {
    grid-column: 2;
    justify-content: center;
  }

  .oranje-header-actions {
    grid-column: 3;
  }

  .oranje-brand img {
    height: 76px;
  }

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

  .oranje-home-section,
  .woocommerce div.product,
  .woocommerce-cart-form,
  .cart_totals,
  .woocommerce-checkout form.checkout {
    padding: 22px;
  }

  .oranje-shop-toolbar {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .woocommerce div.product {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 30px;
  }

  .oranje-home-copy {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: center;
  }

  .oranje-footer {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 18px 28px;
    padding: 26px;
  }

  .oranje-footer nav,
  .oranje-footer small {
    grid-column: 2;
  }
}

@media (min-width: 1080px) {
  .oranje-main {
    padding-top: 24px;
  }

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

@media (max-width: 520px) {
  .oranje-announcement span:nth-child(n + 2) {
    display: none;
  }

  .oranje-header-actions .oranje-icon-link {
    display: none;
  }

  .oranje-header-actions input[type="search"] {
    width: 118px;
  }

  .woocommerce ul.products {
    gap: 10px;
  }
}
