:root {
  --ink: #0b0b0b;
  --text: #1d1d1f;
  --muted: #666666;
  --muted-2: #8a8a8a;
  --line: #dedede;
  --line-soft: #eeeeee;
  --paper: #f6f4f1;
  --paper-2: #fafafa;
  --white: #ffffff;
  --soft: #f6f5f2;
  --off-white: #fafafa;
  --stone: #e8e5de;
  --gallery: #f7f7f7;
  --accent: #cf0a2c;
  --container: 1380px;
  --container-wide: 1560px;
  --radius: 0px;
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
:root { --soft: #f6f4f1; --off-white: #fafafa; --gallery: #f6f4f1; --stone: #eeeeee; }


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; }
::selection { background: #111; color: #fff; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 12px; left: 12px; z-index: 10000;
  width: auto; height: auto;
  padding: 10px 14px;
  background: var(--ink); color: #fff;
}

.oceanshe-container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.oceanshe-content-narrow { max-width: 920px; }
.oceanshe-section {
  padding: clamp(52px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.oceanshe-main { min-height: 58vh; }

h1, h2, h3, h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
h1 { font-size: clamp(44px, 6.5vw, 84px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 54px); }
h3 { font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.035em; }
p { margin: 0 0 16px; }
.oceanshe-lede {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
}
.oceanshe-eyebrow {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.oceanshe-microcopy,
.oceanshe-note,
.oceanshe-card-note,
.oceanshe-size-range { color: var(--muted); font-size: 13px; }
.oceanshe-inline-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.oceanshe-button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.oceanshe-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #333;
  border-color: #333;
  color: #fff !important;
}
.oceanshe-button--secondary {
  background: #fff;
  color: var(--ink) !important;
}
.oceanshe-button--secondary:hover { background: var(--ink); color: #fff !important; }
.oceanshe-button--ghost { background: transparent; color: var(--ink) !important; border-color: var(--line); }
.oceanshe-button--ghost:hover { border-color: var(--ink); background: #fff; color: var(--ink) !important; }
.oceanshe-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 24px;
}

.oceanshe-announcement {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  text-align: center;
  padding: 8px 0;
}
.oceanshe-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.oceanshe-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.oceanshe-logo a,
.oceanshe-footer-logo {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.oceanshe-logo img { max-height: 48px; width: auto; }
.oceanshe-menu-toggle { display: none; }
.oceanshe-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 600;
}
.oceanshe-nav > a,
.oceanshe-nav__mega-trigger { padding: 27px 0; }
.oceanshe-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.oceanshe-nav__mega-wrap { position: relative; }
.oceanshe-mega {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1040px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .16s ease;
}
.oceanshe-nav__mega-wrap:hover .oceanshe-mega,
.oceanshe-nav__mega-wrap:focus-within .oceanshe-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.oceanshe-mega h3 { font-size: 28px; }
.oceanshe-mega p { color: var(--muted); }
.oceanshe-mega__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.oceanshe-mega__links a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line-soft);
  background: var(--paper-2);
  font-weight: 700;
}
.oceanshe-mega__links a span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}
.oceanshe-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
}
.oceanshe-search-form {
  display: flex;
  align-items: center;
  width: 170px;
  border: 1px solid var(--line);
  background: #fff;
}
.oceanshe-search-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 9px 0 9px 12px;
}
.oceanshe-search-form button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
}
.oceanshe-cart-link { display: inline-flex; align-items: center; gap: 6px; }
.oceanshe-cart-link span {
  min-width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-size: 11px;
}

/* Home */
.oceanshe-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.oceanshe-hero .oceanshe-container { width: 100%; max-width: none; }
.oceanshe-hero__grid {
  min-height: clamp(560px, 46vw, 760px);
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}
.oceanshe-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 112px) clamp(28px, 6vw, 120px);
}
.oceanshe-hero__media { min-height: 420px; overflow: hidden; }
.oceanshe-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.oceanshe-trust-chips,
.oceanshe-fit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.oceanshe-trust-chips span,
.oceanshe-fit-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.oceanshe-fit-badges span { background: var(--paper-2); }
.oceanshe-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.oceanshe-fit-needs .oceanshe-section-heading,
.oceanshe-vacation-edits .oceanshe-section-heading,
.oceanshe-real-curves .oceanshe-section-heading { text-align: center; margin-inline: auto; }
.oceanshe-section-heading--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}
.oceanshe-card-grid,
.oceanshe-fit-system__grid,
.oceanshe-model-grid,
.oceanshe-destination-grid,
.oceanshe-related-grid,
.oceanshe-style-advice,
.oceanshe-measure-grid { display: grid; gap: 18px; }
.oceanshe-card-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.oceanshe-card-grid--six { grid-template-columns: repeat(6, minmax(0,1fr)); }
.oceanshe-fit-card,
.oceanshe-card-grid > article,
.oceanshe-fit-system__grid article,
.oceanshe-model-card,
.oceanshe-post-card,
.oceanshe-panel,
.oceanshe-review-panel,
.oceanshe-empty-state,
.oceanshe-launch-note,
.oceanshe-cta-panel,
.oceanshe-newsletter-panel {
  background: #fff;
  border: 1px solid var(--line);
}
.oceanshe-fit-card { overflow: hidden; }
.oceanshe-fit-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--paper-2); }
.oceanshe-fit-card div { padding: 16px; }
.oceanshe-fit-card h3 { font-size: 18px; margin-bottom: 8px; }
.oceanshe-fit-card p { color: var(--muted); font-size: 13px; }
.oceanshe-fit-card a,
.oceanshe-post-card span {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.oceanshe-fit-system { background: #fff; }
.oceanshe-fit-system .oceanshe-split { align-items: start; }
.oceanshe-fit-system__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.oceanshe-fit-system__grid article,
.oceanshe-card-grid > article { padding: 24px; }
.oceanshe-fit-system__grid h3 { font-size: 21px; }
.oceanshe-quote {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.oceanshe-split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}
.oceanshe-split--reverse { grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); }

/* Products */
.products, ul.products { list-style: none; padding: 0; margin: 0; }
.oceanshe-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 28px 18px;
}
.oceanshe-product-card,
.woocommerce ul.products li.product.oceanshe-product-card,
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  background: #fff;
}
.oceanshe-product-card__image,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  position: relative;
  display: block;
}
.oceanshe-product-card__image img,
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  margin: 0 0 12px !important;
  transition: opacity .18s ease;
}
.oceanshe-product-card:hover img { opacity: .88; }
.oceanshe-product-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
}
.oceanshe-product-card__body { padding: 0; }
.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 !important;
  margin: 0 0 5px !important;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.woocommerce ul.products li.product .price,
.oceanshe-product-card .price {
  color: var(--text) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin: 0 0 8px !important;
}
.oceanshe-size-range { margin: 0 0 10px; }
.oceanshe-loop-fit-meta .oceanshe-fit-badges,
.oceanshe-product-card .oceanshe-fit-badges { margin-bottom: 12px; }
.oceanshe-product-card .button,
.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 0 !important;
  min-height: 42px;
  padding: 12px 14px;
}

.oceanshe-feature-card,
.oceanshe-contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0;
  align-items: stretch;
  background: var(--ink);
  color: #fff;
}
.oceanshe-feature-card h2,
.oceanshe-feature-card h3,
.oceanshe-contact-layout h2 { color: #fff; }
.oceanshe-feature-card p { color: rgba(255,255,255,.82); }
.oceanshe-feature-card__media img,
.oceanshe-rounded-image { width: 100%; height: 100%; object-fit: cover; }
.oceanshe-feature-card__copy { padding: clamp(28px, 6vw, 70px); align-self: center; }
.oceanshe-model-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.oceanshe-model-card { overflow: hidden; }
.oceanshe-model-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--paper-2); }
.oceanshe-model-card > div { padding: 18px; }
.oceanshe-model-card dl { display: grid; gap: 8px; margin: 0 0 14px; }
.oceanshe-model-card dl div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
.oceanshe-model-card dt { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.oceanshe-model-card dd { margin: 0; color: var(--ink); font-weight: 700; }
.oceanshe-mix-match { background: var(--paper); }
.oceanshe-panel { padding: clamp(26px, 5vw, 60px); }
.oceanshe-destination-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.oceanshe-destination-grid a {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 22px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.oceanshe-destination-grid a:nth-child(1) { background: linear-gradient(0deg, rgba(255,255,255,.7), rgba(255,255,255,.7)), url('../img/generated/hero-clean.webp') center/cover; }
.oceanshe-destination-grid a:nth-child(2) { background: linear-gradient(0deg, rgba(255,255,255,.7), rgba(255,255,255,.7)), url('../img/generated/fit-full-coverage.jpg') center/cover; }
.oceanshe-destination-grid a:nth-child(3) { background: linear-gradient(0deg, rgba(255,255,255,.7), rgba(255,255,255,.7)), url('../img/generated/fit-vacation.jpg') center/cover; }
.oceanshe-destination-grid a:nth-child(4) { background: linear-gradient(0deg, rgba(255,255,255,.7), rgba(255,255,255,.7)), url('../img/generated/about-clean.webp') center/cover; }
.oceanshe-cta-panel,
.oceanshe-newsletter-panel { padding: clamp(28px, 5vw, 62px); text-align: center; }
.oceanshe-cta-panel p,
.oceanshe-newsletter-panel p { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--muted); }
.oceanshe-review-panel { padding: 34px; background: var(--paper); }

/* Pages */
.oceanshe-page-hero {
  padding: clamp(54px, 7vw, 110px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.oceanshe-page-hero__inner { max-width: 920px; }
.oceanshe-collection-benefits {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  margin-bottom: 24px;
}
.oceanshe-filter-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 30px;
}
.oceanshe-filter-bar label,
.oceanshe-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.oceanshe-filter-bar select,
.oceanshe-filter-bar input,
.oceanshe-contact-form input,
.oceanshe-contact-form select,
.oceanshe-contact-form textarea,
.oceanshe-newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
}
.oceanshe-filter-bar button { min-height: 45px; border: 1px solid var(--ink); background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 700; }
.oceanshe-filter-bar > a { align-self: center; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.oceanshe-fit-education { background: var(--paper); }
.oceanshe-related-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.oceanshe-related-grid a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}
.oceanshe-related-grid a::after { content: '→'; }
.oceanshe-entry-content > * + * { margin-top: 18px; }
.oceanshe-entry-content a { text-decoration: underline; text-underline-offset: 4px; }
.oceanshe-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.oceanshe-post-card a { display: block; padding: 24px; min-height: 220px; }
.oceanshe-about-hero { background: var(--paper); }
.oceanshe-belief-panel { background: var(--ink); color: #fff; }
.oceanshe-belief-panel h2, .oceanshe-belief-panel p { color: #fff; }

/* Forms, tables, accordions */
.oceanshe-table-wrap { overflow-x: auto; border: 1px solid var(--line); margin: 18px 0 34px; }
.oceanshe-fit-table { width: 100%; border-collapse: collapse; background: #fff; }
.oceanshe-fit-table th,
.oceanshe-fit-table td { padding: 14px 16px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.oceanshe-fit-table th { color: var(--ink); font-weight: 700; }
.oceanshe-launch-note { padding: 18px; margin: 0 0 28px; background: var(--paper); }
.oceanshe-measure-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.oceanshe-measure-grid article,
.oceanshe-style-advice article { padding: 20px; border: 1px solid var(--line); background: #fff; }
.oceanshe-style-advice { grid-template-columns: repeat(2, minmax(0,1fr)); }
.oceanshe-check-list { padding: 0; margin: 18px 0; list-style: none; }
.oceanshe-check-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--line-soft); }
.oceanshe-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.oceanshe-accordion-list details { border: 1px solid var(--line); background: #fff; padding: 18px; margin-bottom: 10px; }
.oceanshe-accordion-list summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.oceanshe-accordion-list p { margin: 12px 0 0; color: var(--muted); }
.oceanshe-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.oceanshe-contact-form { display: grid; gap: 16px; }
.oceanshe-success { padding: 16px; border: 1px solid var(--line); background: var(--paper); margin-bottom: 18px; }
.oceanshe-newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 560px; margin: 0 auto; }
.oceanshe-newsletter-form p { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }

/* Fit finder */
.oceanshe-fit-finder { border: 1px solid var(--line); background: #fff; padding: clamp(24px, 5vw, 56px); }
.oceanshe-fit-finder__progress { height: 3px; background: var(--line-soft); margin-bottom: 34px; }
.oceanshe-fit-finder__progress span { display: block; height: 100%; background: var(--ink); transition: width .22s ease; }
.oceanshe-fit-finder__panel { display: none; }
.oceanshe-fit-finder__panel.is-active { display: block; }
.oceanshe-fit-finder__options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.oceanshe-fit-finder__options button {
  min-height: 64px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  text-align: left;
  padding: 18px;
  font-weight: 700;
  cursor: pointer;
}
.oceanshe-fit-finder__options button:hover { border-color: var(--ink); background: #fff; }
.oceanshe-result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }

/* WooCommerce detail */
.oceanshe-woocommerce-page { background: #fff; }
.woocommerce .woocommerce-breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.woocommerce div.product div.images img { border: 1px solid var(--line-soft); background: var(--paper-2); }
.woocommerce div.product .product_title { font-size: clamp(32px, 4vw, 56px); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--ink); font-weight: 700; }
.oceanshe-single-fit-summary { border: 1px solid var(--line); background: var(--paper-2); padding: 18px; margin: 18px 0; }
.oceanshe-fit-note { color: var(--text); margin: 12px 0; }
.oceanshe-fit-note--pending { color: var(--muted); }
.woocommerce div.product form.cart { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.woocommerce div.product form.cart .quantity input { min-height: 46px; border: 1px solid var(--line); padding: 0 10px; }
.woocommerce div.product .woocommerce-tabs { margin-top: 56px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 0 0 20px; display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 0; background: transparent; padding: 0; margin: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 14px 12px; font-weight: 700; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { border-bottom: 2px solid var(--ink); }
.oceanshe-two-column-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.oceanshe-two-column-list > div { border: 1px solid var(--line); padding: 16px; background: #fff; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border-top-color: var(--ink); background: var(--paper-2); }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--ink); }

/* Footer */
.oceanshe-footer {
  background: #090909;
  color: #fff;
  padding: clamp(48px, 7vw, 82px) 0 28px;
}
.oceanshe-footer-logo { color: #fff; margin-bottom: 18px; }
.oceanshe-footer p { color: rgba(255,255,255,.72); }
.oceanshe-footer__top {
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(0,1.6fr);
  gap: clamp(34px, 6vw, 90px);
}
.oceanshe-footer__columns { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; }
.oceanshe-footer h3 { color: #fff; font-size: 14px; letter-spacing: .02em; margin-bottom: 14px; }
.oceanshe-footer a { display: block; color: rgba(255,255,255,.78); padding: 4px 0; font-size: 13px; }
.oceanshe-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.oceanshe-footer .oceanshe-newsletter-form { margin: 20px 0 0; grid-template-columns: 1fr; }
.oceanshe-footer .oceanshe-newsletter input { background: #111; color: #fff; border-color: #333; }
.oceanshe-footer .oceanshe-button { background: #fff; color: #000 !important; border-color: #fff; }
.oceanshe-footer__bottom {
  display: flex; justify-content: space-between; gap: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 48px;
  padding-top: 20px;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .oceanshe-card-grid--six { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .oceanshe-product-grid, .woocommerce ul.products { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .oceanshe-filter-bar { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .oceanshe-container { width: min(100% - 32px, var(--container)); }
  .oceanshe-header__inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .oceanshe-menu-toggle {
    display: inline-grid; gap: 4px;
    border: 0; background: transparent; padding: 8px 0; color: var(--ink);
  }
  .oceanshe-menu-toggle span { width: 22px; height: 1px; background: var(--ink); display: block; }
  .oceanshe-menu-toggle strong { font-size: 0; }
  .oceanshe-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }
  .oceanshe-nav.is-open { display: grid; }
  .oceanshe-nav > a,
  .oceanshe-nav__mega-trigger { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .oceanshe-mega { display: none; }
  .oceanshe-header-actions .oceanshe-search-form,
  .oceanshe-account-link { display: none; }
  .oceanshe-logo { justify-self: center; }
  .oceanshe-hero__grid,
  .oceanshe-split,
  .oceanshe-split--reverse,
  .oceanshe-feature-card,
  .oceanshe-contact-layout,
  .oceanshe-footer__top { grid-template-columns: 1fr; }
  .oceanshe-hero__grid { min-height: 0; }
  .oceanshe-hero__copy { padding: 42px 24px; }
  .oceanshe-hero__media { min-height: 420px; order: -1; }
  .oceanshe-destination-grid,
  .oceanshe-related-grid,
  .oceanshe-footer__columns,
  .oceanshe-measure-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(40px, 11vw, 58px); }
  h2 { font-size: clamp(28px, 8vw, 42px); }
  .oceanshe-section { padding: 46px 0; }
  .oceanshe-card-grid,
  .oceanshe-card-grid--six,
  .oceanshe-model-grid,
  .oceanshe-product-grid,
  .woocommerce ul.products,
  .oceanshe-post-grid,
  .oceanshe-style-advice,
  .oceanshe-filter-bar,
  .oceanshe-form-grid,
  .oceanshe-two-column-list,
  .oceanshe-fit-finder__options { grid-template-columns: 1fr; }
  .oceanshe-fit-system__grid { grid-template-columns: 1fr; }
  .oceanshe-section-heading--row { display: block; }
  .oceanshe-footer__columns,
  .oceanshe-destination-grid,
  .oceanshe-related-grid { grid-template-columns: 1fr; }
  .oceanshe-footer__bottom { display: block; }
  .oceanshe-newsletter-form { grid-template-columns: 1fr; }
}

.oceanshe-collection-banner { margin: -18px 0 34px; overflow: hidden; background: var(--stone); }
.oceanshe-collection-banner img { width: 100%; aspect-ratio: 16/6; object-fit: cover; object-position: center; }
.oceanshe-size-visual { margin: 0 0 34px; border: 1px solid var(--line); background: var(--soft); }
.oceanshe-size-visual img { width: 100%; height: auto; }

/* Front-page clean editorial hero and image-card overrides. */
.oceanshe-hero--clean { position: relative; min-height: clamp(560px, 74vh, 840px); overflow: hidden; background: var(--soft); }
.oceanshe-hero--clean .oceanshe-hero__image { position: absolute; inset: 0; z-index: 0; }
.oceanshe-hero--clean .oceanshe-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.oceanshe-hero--clean::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(246,245,242,.98) 0%, rgba(246,245,242,.9) 34%, rgba(246,245,242,.18) 64%, rgba(246,245,242,0) 100%); }
.oceanshe-hero--clean .oceanshe-hero__content { position: relative; z-index: 2; min-height: clamp(560px, 74vh, 840px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }
.oceanshe-hero--clean h1 { max-width: 680px; }
.oceanshe-hero--clean .oceanshe-lede { max-width: 560px; }
.oceanshe-fit-card > a::after { content: none; }
.oceanshe-section--gallery { background: var(--off-white); }
.oceanshe-fit-system .oceanshe-split { padding: clamp(24px, 4vw, 54px); border: 1px solid var(--line); background: var(--white); }
.oceanshe-fit-system .oceanshe-split .oceanshe-fit-system__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.oceanshe-fit-system .oceanshe-split .oceanshe-fit-system__grid article { min-height: 180px; padding: clamp(22px, 3vw, 34px); border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.oceanshe-destination-grid a img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .28s ease; }
.oceanshe-destination-grid a:hover img { transform: scale(1.035); }
@media (max-width: 1120px) {
  .oceanshe-hero--clean::after { background: linear-gradient(180deg, rgba(246,245,242,.12) 0%, rgba(246,245,242,.24) 45%, rgba(246,245,242,.98) 100%); }
  .oceanshe-hero--clean .oceanshe-hero__content { justify-content: flex-end; }
}
@media (max-width: 640px) {
  .oceanshe-hero--clean { min-height: 690px; }
  .oceanshe-hero--clean .oceanshe-hero__content { min-height: 690px; }
  .oceanshe-fit-system .oceanshe-split .oceanshe-fit-system__grid { grid-template-columns: 1fr; }
}

.oceanshe-collection-banner { margin: 0 0 24px; overflow: hidden; background: var(--gallery); }
.oceanshe-collection-banner img { width: 100%; aspect-ratio: 16/5; object-fit: cover; }

/* Current clean homepage structure */
.oceanshe-section-heading--center { text-align: center; margin-inline: auto; }
.oceanshe-section--gallery { background: var(--paper-2); }
.oceanshe-hero--clean {
  position: relative;
  min-height: clamp(620px, 52vw, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}
.oceanshe-hero--clean .oceanshe-container { width: min(100% - 48px, var(--container)); max-width: var(--container); }
.oceanshe-hero__image { position: absolute; inset: 0; z-index: 0; }
.oceanshe-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.oceanshe-hero--clean::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 34%, rgba(255,255,255,.10) 66%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.oceanshe-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 8vw, 122px) 0;
}
.oceanshe-hero__content h1 { max-width: 620px; }
.oceanshe-hero__content .oceanshe-lede { max-width: 520px; }
.oceanshe-destination-grid a { position: relative; overflow: hidden; background: #111 !important; color: #fff; min-height: 320px; }
.oceanshe-destination-grid a img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .28s ease, opacity .28s ease;
  opacity: .86;
}
.oceanshe-destination-grid a:hover img { transform: scale(1.03); opacity: .7; }
.oceanshe-destination-grid a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.58) 100%);
  z-index: 1;
}
.oceanshe-destination-grid a span { position: relative; z-index: 2; color: #fff; }
.oceanshe-collection-banner { margin-bottom: 24px; border: 1px solid var(--line-soft); background: var(--paper-2); }
.oceanshe-collection-banner img { width: 100%; aspect-ratio: 16/5; object-fit: cover; }
.oceanshe-size-visual { margin: 0 0 30px; border: 1px solid var(--line-soft); background: var(--paper-2); }
.oceanshe-size-visual img { width: 100%; }
.oceanshe-placeholder-product .oceanshe-eyebrow { color: var(--muted); }
.oceanshe-placeholder-product h3 { font-family: var(--font-body); font-size: 16px; letter-spacing: -0.02em; }

@media (max-width: 980px) {
  .oceanshe-hero--clean { min-height: 760px; align-items: end; }
  .oceanshe-hero--clean::after { background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.86) 54%, rgba(255,255,255,.96) 100%); }
  .oceanshe-hero__image img { object-position: 62% center; }
  .oceanshe-hero__content { padding: 360px 0 42px; }
}

/* Oceanshe V3: brand logo, cleaner header, concise swimwear dropdown */
:root {
  --ink: #1E1E1E;
  --text: #242424;
  --muted: #666666;
  --line: #E4E1DA;
  --line-soft: #F0EDE7;
  --paper: #F7F0E7;
  --paper-2: #FAFAFA;
  --soft: #F7F0E7;
  --off-white: #FFFFFF;
  --gallery: #F7F7F5;
  --accent: #103B4A;
  --teal: #2CA6A4;
  --coral: #F26D5B;
}
.oceanshe-announcement { background: #fff; font-size: 12px; letter-spacing: .02em; }
.oceanshe-header__inner { min-height: 70px; grid-template-columns: auto 1fr auto; gap: clamp(18px, 2vw, 34px); }
.oceanshe-logo { min-width: 180px; }
.oceanshe-logo a { display: inline-flex; align-items: center; }
.oceanshe-logo img,
.oceanshe-logo .custom-logo { max-height: 44px; width: auto; max-width: 230px; object-fit: contain; }
.oceanshe-nav { gap: clamp(18px, 2vw, 34px); font-size: 14px; }
.oceanshe-nav > a,
.oceanshe-nav__mega-trigger,
.oceanshe-nav__dropdown-trigger { padding: 26px 0; display: inline-flex; align-items: center; }
.oceanshe-nav__dropdown-wrap { position: relative; }
.oceanshe-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 230px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .16s ease;
  box-shadow: 0 22px 60px rgba(0,0,0,.08);
}
.oceanshe-nav__dropdown-wrap:hover .oceanshe-nav__dropdown,
.oceanshe-nav__dropdown-wrap:focus-within .oceanshe-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.oceanshe-nav__dropdown a {
  display: block;
  padding: 12px 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--line-soft);
}
.oceanshe-nav__dropdown a:last-child { border-bottom: 0; }
.oceanshe-nav__dropdown a:hover { background: var(--paper-2); text-decoration: none; }
.oceanshe-mega--simple { width: min(720px, calc(100vw - 48px)); grid-template-columns: 1fr; padding: 16px; }
.oceanshe-mega--simple .oceanshe-mega__links { grid-template-columns: repeat(3, minmax(0,1fr)); }
.oceanshe-mega--simple .oceanshe-mega__links a { background: #fff; min-height: 76px; }
.oceanshe-hero__content .oceanshe-lede { max-width: 560px; }
.oceanshe-section-heading p { max-width: 560px; }
.oceanshe-fit-card p,
.oceanshe-product-card__body .oceanshe-card-note { font-size: 13px; line-height: 1.35; }
.oceanshe-fit-system__grid article p { font-size: 14px; }
.oceanshe-footer-logo img { width: 230px; height: auto; }
.oceanshe-footer__brand .oceanshe-footer-logo { display: inline-flex; align-items: center; }
.oceanshe-footer__brand > p { max-width: 340px; }
.oceanshe-footer__bottom p:last-child { color: rgba(255,255,255,.56); }

@media (max-width: 1024px) {
  .oceanshe-logo { min-width: 0; }
  .oceanshe-logo img,
  .oceanshe-logo .custom-logo { max-height: 36px; max-width: 190px; }
  .oceanshe-nav__dropdown,
  .oceanshe-mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0 0 8px;
  }
  .oceanshe-nav__dropdown a { padding: 10px 14px; }
  .oceanshe-mega--simple .oceanshe-mega__links { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .oceanshe-nav > a,
  .oceanshe-nav__mega-trigger,
  .oceanshe-nav__dropdown-trigger { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .oceanshe-mega { display: block; }
  .oceanshe-nav__dropdown-wrap { border-bottom: 1px solid var(--line-soft); }
  .oceanshe-nav__dropdown-trigger { border-bottom: 0; }
}
.oceanshe-section--compact { padding: clamp(44px, 5vw, 74px) 0; }
.oceanshe-hero--v3 h1 { max-width: 600px; }
.oceanshe-hero--v3 .oceanshe-lede { font-size: clamp(18px, 1.6vw, 22px); }
.oceanshe-lede--small { font-size: clamp(16px, 1.4vw, 18px); color: var(--muted); }
.oceanshe-card-grid--quiet .oceanshe-fit-card { border: 0; background: transparent; }
.oceanshe-fit-card--quiet div { padding-inline: 0; }
.oceanshe-fit-card--quiet h3 { margin-bottom: 6px; }
.oceanshe-fit-card--quiet p { margin-bottom: 8px; color: var(--muted); }
.oceanshe-fit-system__grid--compact article { min-height: 126px !important; }
.oceanshe-feature-clean .oceanshe-panel--minimal { background: #fff; border: 1px solid var(--line-soft); }
.oceanshe-review-panel--quiet { display: grid; align-content: center; gap: 12px; min-height: 280px; background: var(--ink); color: #fff; padding: clamp(28px, 5vw, 60px); }
.oceanshe-review-panel--quiet p { margin: 0; color: #fff; font-size: clamp(22px, 3vw, 44px); line-height: 1; font-weight: 700; letter-spacing: -.05em; }
