:root {
  --sw-green: #063b24;
  --sw-green-2: #2f6f33;
  --sw-green-light: #6f8f42;
  --sw-blue: #19364a;
  --sw-blue-dark: #102b3f;
  --sw-cream: #efe7d4;
  --sw-cream-2: #fbf6ea;
  --sw-ink: #10251b;
  --sw-red: #b9271d;
  --sw-gold: #b99a5b;
  --sw-muted: #6f776f;
  --sw-mood-gray: #d9d6cc;
}


body,
.shuck-page {
  background-color: var(--sw-cream-2);
  background-image: url('../images/bg-linen-ghost-pattern.png');
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--sw-ink);
}

body .site-header {
  background: rgba(251,246,234,.96);
  border-bottom: 1px solid rgba(6,59,36,.14);
  padding-top: 14px;
  padding-bottom: 12px;
  margin-bottom: 0 !important;
}

body .site-header .col-full {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sw-site-branding {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.sw-header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sw-header-logo img {
  width: 98px;
  max-width: 98px;
  height: auto;
  display: block;
}

.sw-one-page-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9rem;
}

.sw-one-page-nav a {
  color: var(--sw-blue);
  text-decoration: none;
}

.sw-one-page-nav a:hover,
.sw-one-page-nav a:focus {
  color: var(--sw-green-2);
}

body.home .storefront-primary-navigation,
body.home .main-navigation,
body.home .site-search,
body.home .site-header-cart {
  display: none !important;
}

body.home .site-footer {
  display: none !important;
}

.shuck-page {
  font-family: Georgia, 'Times New Roman', serif;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sw-wrap {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.sw-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px) 0;
  background-color: var(--sw-cream-2);
  background-image:
    linear-gradient(110deg, rgba(25,54,74,.16), rgba(47,111,51,.10)),
    url('../images/bg-linen-ghost-pattern.png');
  background-repeat: repeat, repeat;
  background-size: auto, 512px 512px;
  border-bottom: 1px solid rgba(25,54,74,.18);
}

.sw-hero-grid,
.sw-product-grid {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.sw-hero-logo-panel {
  text-align: center;
}

.sw-hero-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 42px rgba(6,59,36,.10));
}

.sw-hero-copy {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--sw-green);
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.sw-hero-product-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-hero-knives {
  display: block;
  width: min(620px, 100%);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(6,59,36,.18));
}

.sw-hero-badge {
  position: absolute;
  top: 10px;
  right: 4px;
  width: 136px;
  padding: 18px 12px 28px;
  background: var(--sw-blue);
  color: #fffaf0;
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  font-size: .78rem;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
}

.sw-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.sw-actions .button,
.sw-product-box .button {
  border-radius: 999px;
  padding: 14px 22px;
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  text-decoration: none;
}

.sw-button-primary,
button.single_add_to_cart_button {
  background: var(--sw-blue) !important;
  color: #fff !important;
}

.sw-button-secondary {
  background: transparent !important;
  color: var(--sw-blue) !important;
  border: 2px solid var(--sw-blue) !important;
}

.sw-button-primary:hover,
button.single_add_to_cart_button:hover {
  background: var(--sw-green-2) !important;
}

.sw-button-secondary:hover {
  background: var(--sw-blue) !important;
  color: #fff !important;
}

.sw-proof,
.sw-colors,
.sw-story,
.sw-product {
  padding: clamp(54px, 7vw, 86px) 0;
}

.sw-proof {
  background:
    linear-gradient(90deg, rgba(25,54,74,.07), rgba(47,111,51,.07)),
    rgba(251,246,234,.68);
  border-top: 1px solid rgba(25,54,74,.14);
  border-bottom: 1px solid rgba(25,54,74,.14);
}

.sw-proof {
  background: linear-gradient(180deg, #e6f0f7 0%, #dbe7f1 100%);
}

.sw-proof .sw-feature-item img {
}

.sw-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.sw-feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 230px;
  padding: 8px 10px;
  text-align: center;
}

.sw-feature-item + .sw-feature-item {
  border-left: 1px solid rgba(25,54,74,.32);
}

.sw-feature-item img {
  display: block;
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 10px 18px rgba(6,59,36,.08));
}

.sw-kicker {
  margin: 0 0 14px;
  color: var(--sw-green-2);
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .82rem;
}

.sw-section-heading {
  max-width: 620px;
}

.sw-section-heading h2,
.sw-product h2,
.sw-story h2 {
  color: var(--sw-green);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.sw-colors {
  background: linear-gradient(180deg, rgba(251,246,234,.82), rgba(239,231,212,.88));
}

.sw-colors-grid-real,
.sw-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.sw-all-knives {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(6,59,36,.18);
}

.sw-colors-grid-real .sw-all-knives {
  grid-column: 1;
  grid-row: 1;
}

.sw-colors-grid-real > *:not(.sw-all-knives) {
  grid-column: 2;
  grid-row: 1;
}

.sw-story {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,246,234,.95), rgba(251,246,234,.58)),
    url('../images/bg-river.png') center center / cover no-repeat;
}

.sw-story-text p:not(.sw-kicker) {
  font-size: 1.18rem;
  line-height: 1.75;
}

.sw-story-assets {
  position: relative;
  min-height: 560px;
}

.sw-oysters {
  position: absolute;
  right: 0;
  top: 20px;
  width: min(460px, 72%);
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(6,59,36,.25));
}

.sw-napkin {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(420px, 65%);
  height: auto;
  filter: drop-shadow(0 30px 42px rgba(6,59,36,.2));
}

.sw-product {
  background: var(--sw-cream);
}

.sw-product-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
}

.sw-product-box {
  background: #fffaf0;
  border-radius: 24px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 22px 54px rgba(6,59,36,.12);
}

.sw-product-box .product { margin: 0; }
.sw-product-box .woocommerce-product-gallery { display: none; }
.sw-product-box .summary { width: 100% !important; float: none !important; }
.sw-product-box .product_title { font-size: 2rem; color: var(--sw-green); }
.sw-note { color: var(--sw-muted); font-style: italic; }

@media (max-width: 900px) {
  body .site-header .col-full {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sw-one-page-nav {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sw-hero-grid,
  .sw-product-grid,
  .sw-colors-grid-real,
  .sw-story-grid {
    grid-template-columns: 1fr;
  }

  .sw-hero-product-panel,
  .sw-story-assets {
    min-height: auto;
  }

  .sw-hero-badge {
    position: static;
    margin: 14px auto 0;
  }

  .sw-oysters,
  .sw-napkin {
    position: static;
    display: block;
    margin: 20px auto;
    width: min(420px, 100%);
  }

  .sw-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .sw-feature-item {
    min-height: 160px;
  }

  .sw-feature-item:nth-child(3) {
    border-left: 0;
  }
}


/* v7 refinements */
body .site-header {
  margin-bottom: 0 !important;
}

.sw-hero {
  padding: clamp(18px, 3vw, 34px) 0 clamp(22px, 3vw, 38px);
}

.sw-hero-grid {
  grid-template-columns: minmax(300px, .95fr) minmax(320px, 1.05fr);
  gap: clamp(18px, 4vw, 52px);
}

.sw-hero-logo {
  width: min(455px, 100%);
  filter: none;
}

.sw-hero-copy {
  margin-top: 12px;
  font-size: clamp(.92rem, 1.5vw, 1.08rem);
}

.sw-hero-product-panel {
  min-height: 355px;
}

.sw-hero-knives {
  width: min(380px, 78vw);
  transform: rotate(45deg);
  transform-origin: center center;
  filter: none;
}

.sw-hero-badge {
  display: none !important;
}

.sw-actions {
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 18px;
}

.sw-actions .button,
.sw-product-box .button,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.added_to_cart,
.wc-block-components-button {
  border-radius: 0 !important;
}

.sw-actions .button,
.sw-product-box .button {
  padding: 13px 20px;
}

.sw-proof,
.sw-colors,
.sw-story,
.sw-product {
  padding: clamp(44px, 6vw, 72px) 0;
}

.sw-product {
  background:
    linear-gradient(180deg, rgba(25,54,74,.05), rgba(47,111,51,.04)),
    var(--sw-cream);
}

.sw-story {
  background:
    linear-gradient(90deg, rgba(25,54,74,.92), rgba(6,59,36,.86)),
    url('../images/bg-river.png') center center / cover no-repeat;
  color: #fffaf0;
}

.sw-story .sw-kicker,
.sw-story h2,
.sw-story p {
  color: #fffaf0;
}

.sw-story h2 {
  color: #fffaf0;
}

@media (max-width: 900px) {
  .sw-hero {
    padding: 22px 0 30px;
  }

  .sw-hero-product-panel {
    min-height: 300px;
  }

  .sw-hero-knives {
    width: min(300px, 78vw);
  }
}

@media (max-width: 520px) {
  .sw-actions {
    flex-wrap: wrap;
  }

  .sw-actions .button {
    width: 100%;
    text-align: center;
  }
}


/* v8 refinements */
.sw-hero-grid {
  grid-template-columns: minmax(300px, 1.14fr) minmax(360px, 1.14fr);
  gap: clamp(12px, 3vw, 36px);
}

.sw-hero-product-panel {
  min-height: clamp(390px, 35vw, 500px);
  justify-content: center;
  overflow: visible;
}

.sw-hero-knives {
  width: min(600px, 50vw);
  max-width: none;
  transform: rotate(45deg) translate(10px, -4px);
  transform-origin: center center;
}

.sw-all-knives {
  max-width: 860px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 900px) {
  .sw-hero-product-panel {
    min-height: 360px;
  }

  .sw-hero-knives {
    width: min(520px, 82vw);
    transform: rotate(45deg) translate(0, 0);
  }
}

@media (max-width: 520px) {
  .sw-hero-product-panel {
    min-height: 300px;
  }

  .sw-hero-knives {
    width: min(390px, 92vw);
  }
}


/* v9 typography + refinements */
body.home,
.shuck-page,
.shuck-page p,
.shuck-page li,
.shuck-page input,
.shuck-page select,
.shuck-page textarea,
.shuck-page button,
.sw-one-page-nav,
.sw-hero-copy,
.sw-kicker,
.sw-actions .button,
.sw-product-box .button,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.added_to_cart,
.wc-block-components-button {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

body.home p,
.shuck-page p {
  font-size: 18px;
}

.shuck-page h1,
.shuck-page h2,
.shuck-page h3,
.shuck-page h4,
.sw-section-heading h2,
.sw-product h2,
.sw-story h2,
.sw-product-box .product_title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700;
  letter-spacing: -.025em;
}

.sw-one-page-nav,
.sw-hero-copy,
.sw-kicker,
.sw-actions .button,
.sw-product-box .button {
  letter-spacing: .09em;
}

/* Keep hero on the single black/white knife, scaled from v8 */
.sw-hero-knives {
  width: min(600px, 50vw);
  max-width: none;
  transform: rotate(45deg) translate(10px, -4px);
  transform-origin: center center;
}

/* Make the course/coast section overlay more subtle so the river art shows through. */
.sw-story {
  background:
    linear-gradient(90deg, rgba(25,54,74,.58), rgba(6,59,36,.46)),
    url('../images/bg-river.png') center center / cover no-repeat;
}

@media (max-width: 900px) {
  .sw-hero-knives {
    width: min(520px, 82vw);
    transform: rotate(45deg) translate(0, 0);
  }
}

@media (max-width: 520px) {
  .sw-hero-knives {
    width: min(390px, 92vw);
  }
}


/* v10 layout refinements */
body .site-header {
  background: var(--sw-mood-gray) !important;
  border-bottom: 1px solid rgba(25,54,74,.18);
  box-shadow: none;
}

/* Tighten the hero so the icon row is visible above the fold. */
.sw-hero {
  padding: clamp(10px, 1.6vw, 22px) 0 clamp(12px, 1.8vw, 24px) !important;
}

.sw-hero-grid {
  gap: clamp(10px, 2.4vw, 30px);
}

.sw-hero-logo {
  width: min(410px, 100%);
}

.sw-hero-copy {
  margin-top: 8px;
}

.sw-actions {
  margin-top: 14px;
}

.sw-hero-product-panel {
  min-height: clamp(320px, 30vw, 430px);
}

.sw-hero-knives {
  width: min(540px, 45vw);
}

/* Product purchase section: product/buy box left, copy right. */
.sw-product-grid {
  grid-template-columns: minmax(340px, .95fr) minmax(360px, 1.05fr) !important;
}

.sw-product-copy {
  grid-column: 2;
  grid-row: 1;
}

.sw-product-box {
  grid-column: 1;
  grid-row: 1;
}

/* Make the story copy breathe more on desktop. */
@media (min-width: 901px) {
  .sw-story-text {
    min-width: 500px;
  }
}

.sw-bottom-bar {
  background: var(--sw-green);
  color: #fffaf0;
  padding: 20px 0;
	clear: both;
}

.sw-bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(.82rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sw-bottom-bar-inner span:last-child {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: none;
}

.sw-bottom-divider {
  color: rgba(255,250,240,.75);
}

@media (max-width: 900px) {
  .sw-hero-logo {
    width: min(360px, 92vw);
  }

  .sw-hero-product-panel {
    min-height: 280px;
  }

  .sw-hero-knives {
    width: min(430px, 78vw);
  }

  .sw-product-copy,
  .sw-product-box {
    grid-column: auto;
    grid-row: auto;
  }

  .sw-bottom-bar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .sw-bottom-divider {
    display: none;
  }
}

/* v11 refinements */
body.home .site-main,
body.home main.site-main,
body.home .shuck-page,
.site-main.shuck-page {
  margin-bottom: 0 !important;
}

body .site-header {
  background: var(--sw-blue) !important;
  border-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

body .site-header .col-full {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px;
}

.sw-one-page-nav {
  display: flex !important;
  margin-left: auto !important;
  align-items: center;
  justify-content: flex-end;
}

.sw-one-page-nav a {
  color: #fffaf0 !important;
}

.sw-one-page-nav a:hover,
.sw-one-page-nav a:focus {
  color: var(--sw-green-light) !important;
}

.sw-header-logo img {
  width: 86px;
  max-width: 86px;
}

/* Crop the enlarged hero knife instead of letting it make the hero too tall. */
.sw-hero {
  padding: 4px 0 8px !important;
}

.sw-hero-grid {
  align-items: center;
}

.sw-hero-logo {
  width: min(380px, 100%);
}

.sw-hero-copy {
  margin-top: 4px;
}

.sw-actions {
  margin-top: 10px;
}

.sw-hero-product-panel {
  min-height: 260px !important;
  height: clamp(260px, 25vw, 340px);
  max-height: 340px;
  overflow: hidden !important;
  align-items: center;
  justify-content: center;
}

.sw-hero-knives {
  width: min(560px, 8.5vw);
  transform: rotate(45deg) translate(22px, -8px);
}

@media (max-width: 900px) {
  body .site-header .col-full {
    justify-content: center !important;
  }

  .sw-header-logo img {
    width: 82px;
    max-width: 82px;
  }

  .sw-hero {
    padding: 12px 0 18px !important;
  }

  .sw-hero-product-panel {
    min-height: 240px !important;
    height: 240px;
    max-height: 240px;
  }


}

/* v12 refinements */
body .site-header .col-full {
  display: block !important;
}

.sw-split-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  width: 100%;
}

.sw-split-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.sw-split-nav-left {
  justify-content: flex-end;
}

.sw-split-nav-right {
  justify-content: flex-start;
}

.sw-split-nav a {
  color: #fffaf0 !important;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.sw-split-nav a:hover,
.sw-split-nav a:focus {
  color: var(--sw-green-light) !important;
  opacity: .95;
}

.sw-one-page-nav {
  display: none !important;
}

/* Requested hero panel adjustment. */
.sw-hero-product-panel {
  overflow: visible !important;
}

.sw-wrap.sw-hero-grid {
  padding: 0 0 60px;
}

/* Button polish: square, equal optical size, subtle color motion. */
.sw-actions .button,
.sw-product-box .button,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.added_to_cart,
.wc-block-components-button {
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .18s ease, box-shadow .18s ease;
}

.sw-actions .button:hover,
.sw-product-box .button:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.added_to_cart:hover,
.wc-block-components-button:hover {
  transform: none;
}

.sw-button-primary,
button.single_add_to_cart_button {
  border: 2px solid var(--sw-blue) !important;
}

.sw-button-primary:hover,
button.single_add_to_cart_button:hover {
  border-color: var(--sw-green-2) !important;
}

@media (max-width: 900px) {
  .sw-split-header {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .sw-split-nav,
  .sw-split-nav-left,
  .sw-split-nav-right {
    justify-content: center;
  }

  .sw-wrap.sw-hero-grid {
    padding: 34px 0;
  }
}

@media (max-width: 520px) {
  .sw-split-nav {
    gap: 16px;
    font-size: .78rem;
  }
}


/* v15 refinements */
.sw-actions .button:hover,
.sw-product-box .button:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wc-block-components-button:hover {
  transform: none !important;
}

/* v16 product purchase refinements */
.sw-section-heading-centered {
  max-width: none;
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 48px);
}

.sw-section-heading-centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.sw-product-buy-grid {
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr) !important;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sw-product-buy-grid .sw-product-box {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.sw-product-visual {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(16px, 3vw, 34px);
  /*background: rgba(255, 250, 240, .54);
  border: 1px solid rgba(25,54,74,.12);*/
}

.sw-product-variation-image {
  display: block;
  /*width: min(100%, 560px);*/
  height: auto;
  object-fit: contain;
  transition: opacity .18s ease;
}

.sw-product-variation-image.is-changing {
  opacity: .35;
}

/* Avoid duplicate/conflicting product imagery inside the WooCommerce shortcode. */
.sw-product-box .woocommerce-product-gallery,
.sw-product-box .woocommerce-product-gallery__wrapper,
.sw-product-box .woocommerce-product-gallery__image {
  display: none !important;
}

.sw-product-box .summary,
.sw-product-box .entry-summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.sw-product-box .product_title {
  display: none;
}

.sw-product-box .product_meta,
.sw-product-box .woocommerce-tabs,
.sw-product-box .related.products,
.sw-product-box .upsells.products {
  display: none !important;
}

@media (max-width: 900px) {
  .sw-product-buy-grid {
    grid-template-columns: 1fr !important;
  }

  .sw-product-buy-grid .sw-product-box,
  .sw-product-visual {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .sw-product-visual {
    min-height: 0;
  }
}

/* Responsive cleanup */
img {
  max-width: 100%;
  height: auto;
}

/* Hero image */
.sw-hero-product-panel {
}

@media (min-width: 1400px) {
.sw-hero-knives {
  max-width: none;
  height: auto;
  transform: rotate(45deg) translate(22px, -8px);
  transform-origin: center center;
	    width: min(560px, 5.5vw);
}
}

/* Product variation image */
.sw-product-variation-image {
  max-width: min(100%, 560px);
  max-height: 620px;
  object-fit: contain;
}

/* Tablet/mobile */
@media (max-width: 900px) {
  .sw-wrap {
    width: min(100% - 28px, 1200px);
  }

  .sw-hero-grid,
  .sw-product-buy-grid,
  .sw-colors-grid-real,
  .sw-story-grid {
    grid-template-columns: 1fr !important;
  }

  .sw-wrap.sw-hero-grid {
    padding: 20px 0 34px;
  }

  .sw-hero-product-panel {
    height: 300px;
    min-height: 300px !important;
    max-height: 300px;
    overflow: hidden !important;
  }

  .sw-hero-knives {
    /*width: min(440px, 92vw) !important;*/
    transform: rotate(45deg) translate(0, 0);
	 max-height: 315px;
	  width: auto !important;
  }

  .sw-colors-grid-real .sw-all-knives,
  .sw-colors-grid-real > *:not(.sw-all-knives),
  .sw-product-buy-grid .sw-product-box,
  .sw-product-visual {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .sw-all-knives {
    margin: 0 auto;
  }

  .sw-product-visual {
    min-height: 0;
    padding: 10px 0 0;
  }

  .sw-product-variation-image {
    max-height: 520px;
  }
}

/* Small mobile */
@media (max-width: 520px) {
  .sw-split-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .sw-hero-product-panel {
    height: 250px;
    min-height: 250px !important;
    max-height: 250px;
  }

  .sw-hero-knives {
  }

  .sw-feature-row {
    grid-template-columns: 1fr;
  }

  .sw-feature-item + .sw-feature-item {
    border-left: 0;
    border-top: 1px solid rgba(25,54,74,.22);
  }

  .sw-section-heading h2,
  .sw-product h2,
  .sw-story h2 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .sw-product-variation-image {
    max-height: 460px;
  }
}


/* Shuck Wedge WooCommerce form styling */
.sw-product-box form.cart,
.sw-product-box .variations_form {
  display: grid;
  gap: 18px;
}

.sw-product-box table.variations {
  margin: 0;
  width: 100%;
  border: 0;
}

.sw-product-box table.variations tr,
.sw-product-box table.variations th,
.sw-product-box table.variations td {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.sw-product-box table.variations label {
  display: block;
  margin-bottom: 8px;
  color: var(--sw-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sw-product-box table.variations select {
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 16px;
  border: 2px solid rgba(25,54,74,.28);
  border-radius: 0;
  background-color: #fffaf0;
  color: var(--sw-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.sw-product-box table.variations select:focus {
  outline: 3px solid rgba(47,111,51,.18);
  border-color: var(--sw-green-2);
}

.sw-product-box .reset_variations {
  display: inline-block;
  margin-top: 10px;
  color: var(--sw-muted);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sw-product-box .woocommerce-variation-price {
  margin: 14px 0 18px;
}

.sw-product-box .woocommerce-variation-price .price,
.sw-product-box .price {
  color: var(--sw-green);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.sw-product-box .woocommerce-variation-add-to-cart {
  display: flex;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.sw-product-box .quantity {
  margin: 0;
}

.sw-product-box .quantity input.qty {
  width: 100%;
  height: 56px;
  border: 2px solid rgba(25,54,74,.28);
  background: #fffaf0;
  color: var(--sw-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.sw-product-box .quantity input.qty:focus {
  outline: 3px solid rgba(47,111,51,.18);
  border-color: var(--sw-green-2);
}

.sw-product-box button.single_add_to_cart_button {
  width: 100%;
  min-height: 56px;
  margin: 0;
  background: var(--sw-blue) !important;
  border: 2px solid var(--sw-blue) !important;
  color: #fffaf0 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sw-product-box button.single_add_to_cart_button:hover,
.sw-product-box button.single_add_to_cart_button:focus {
  background: var(--sw-green-2) !important;
  border-color: var(--sw-green-2) !important;
}

@media (max-width: 520px) {
  .sw-product-box .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }

  .sw-product-box .quantity input.qty {
    max-width: 100%;
  }
}

/* Internal page brand background */
body:not(.home) {
  background-color: var(--sw-cream-2);
  background-image: url('../images/bg-linen-ghost-pattern.png');
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--sw-ink);
}

/* Give internal page content some breathing room */
body:not(.home) .site-main,
body:not(.home) .content-area {
  padding-top: clamp(32px, 5vw, 70px);
  padding-bottom: clamp(48px, 6vw, 86px);
}

/* Hide WooCommerce empty cart block */
.wp-block-woocommerce-empty-cart-block {
  display: none !important;
}


/* Internal page H1 styling (match brand headings) */
.entry-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.entry-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700;
  letter-spacing: -.025em;
  text-transform: uppercase;
  color: var(--sw-green);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .92;
  margin: 0;
}

.entry-header::before {
  content: "The Shuck Wedge";
  display: block;
  margin-bottom: 10px;
  color: var(--sw-green-2);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .entry-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

.woocommerce-page .entry-content,
.customize-support .entry-content,
.storefront-full-width-content .entry-content {
	max-width: 1200px;
	margin: auto;
}
.woocommerce-page .wp-block-woocommerce-cart,
.woocommerce-page .wp-block-woocommerce-checkout,
.customize-support .entry-content,
.storefront-full-width-content .entry-content{
	width: 100% !important;
	margin: 0 auto !important;
	background: linear-gradient(180deg, #e6f0f7 0%, #dbe7f1 100%);
	padding: 30px 1.41575em;
}
.customize-support .entry-content,
.storefront-full-width-content .entry-content {
	margin-top: 30px !important;
}