/*
Theme Name: Norfolk Sweet Company
Theme URI: https://norfolksweetcompany.co.uk/
Author: Norfolk Sweet Company
Description: Editable WooCommerce theme for Norfolk Sweet Company. Pages are managed in the standard WordPress editor and can also be imported as NSC Page Package ZIP files.
Version: 2.2.2
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: norfolk-sweet-company
*/

:root {
  --nsc-pink: #df8f9d;
  --nsc-pink-dark: #c86f82;
  --nsc-pink-soft: #f3cbd2;
  --nsc-blush: #fbf1f2;
  --nsc-cream: #fffaf7;
  --nsc-purple: #a58bad;
  --nsc-ink: #322f33;
  --nsc-muted: #746d73;
  --nsc-border: #ead9dd;
  --nsc-white: #ffffff;
  --nsc-radius: 18px;
  --nsc-shadow: 0 12px 40px rgba(82, 55, 66, .12);
  --nsc-shell: 1320px;
  --nsc-content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--nsc-cream);
  color: var(--nsc-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--nsc-pink-dark); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.nsc-shell {
  width: min(var(--nsc-shell), calc(100% - 48px));
  margin-inline: auto;
}
.nsc-content-shell {
  width: min(var(--nsc-content), calc(100% - 48px));
  margin-inline: auto;
}
.alignwide {
  width: min(var(--nsc-shell), calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: #fff;
  color: #111;
  clip: auto;
  z-index: 99999;
}

/* Header */
.nsc-topbar {
  position: relative;
  z-index: 1001;
  background: linear-gradient(90deg, #d88898, #e4a2af);
  color: #fff;
  font-size: 12px;
  letter-spacing: .025em;
}
.nsc-topbar-inner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 4px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(223,143,157,.25);
  box-shadow: 0 4px 22px rgba(82,55,66,.05);
}
.admin-bar .site-header { top: 32px; }
.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 138px minmax(0,1fr) auto;
  align-items: center;
  gap: 28px;
}
.site-branding {
  width: 138px;
  min-width: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.site-logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}
.site-logo-image,
.site-branding .custom-logo {
  display: block !important;
  position: static !important;
  transform: none !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  max-width: 108px !important;
  max-height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
}
.site-branding .custom-logo-link {
  display: contents;
}
.site-navigation { min-width: 0; }
.primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.primary-menu li { position: relative; }
.primary-menu > li > a {
  display: block;
  padding: 36px 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.primary-menu > li > a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a { color: var(--nsc-pink-dark); }
.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 14px);
  left: -20px;
  z-index: 20;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--nsc-border);
  border-radius: 12px;
  box-shadow: var(--nsc-shadow);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
}
.primary-menu .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}
.primary-menu .sub-menu a:hover { background: var(--nsc-blush); }
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}
.nsc-header-cart {
  display: flex;
  align-items: center;
  gap: 7px;
}
.nsc-header-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--nsc-pink-dark);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .045em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.nsc-header-button:hover {
  transform: translateY(-1px);
}
.nsc-view-basket-button {
  background: #fff;
  color: var(--nsc-pink-dark);
}
.nsc-view-basket-button:hover {
  background: var(--nsc-blush);
  color: var(--nsc-pink-dark);
}
.nsc-customer-login-button {
  background: var(--nsc-pink-dark);
  color: #fff;
  box-shadow: 0 5px 14px rgba(184,95,115,.16);
}
.nsc-customer-login-button:hover {
  background: #a85166;
  border-color: #a85166;
  color: #fff;
}
.header-icon-link {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--nsc-ink);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.header-icon-link:hover { background: var(--nsc-blush); color: var(--nsc-pink-dark); }
.header-icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--nsc-pink-dark);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}
.nsc-social-links { display: flex; align-items: center; gap: 6px; }
.nsc-social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nsc-border);
  border-radius: 50%;
  color: var(--nsc-pink-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nsc-social-link:hover {
  background: var(--nsc-pink-dark);
  border-color: var(--nsc-pink-dark);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--nsc-ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* Page content */
.site-main { min-height: 35vh; }
.content-area { padding: 58px 0 72px; }
.nsc-front-page { padding: 0; }
.nsc-page-article-full .entry-content,
.nsc-front-page .entry-content { margin: 0; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.page-title {
  margin: 0 0 28px;
  color: var(--nsc-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--nsc-ink);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
}
.entry-content h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 500; }
.entry-content h3 { font-size: clamp(23px, 3vw, 31px); font-weight: 500; }
.entry-content p { color: var(--nsc-muted); }
.entry-content a:not(.wp-element-button):not(.nsc-button) { text-decoration-color: var(--nsc-pink); text-underline-offset: 3px; }

/* Reusable design classes for normal page-editor content and ChatGPT page packages */
.nsc-section { padding: clamp(54px, 7vw, 88px) 0; }
.nsc-section-soft { background: var(--nsc-blush); }
.nsc-section-white { background: #fff; }
.nsc-section-cream { background: var(--nsc-cream); }
.nsc-section-heading { text-align: center; max-width: 780px; margin: 0 auto 34px; }
.nsc-eyebrow {
  margin: 0 0 8px !important;
  color: var(--nsc-pink-dark) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nsc-section-heading h2 { margin: 0 0 12px; }
.nsc-section-heading p:last-child { margin-bottom: 0; }
.nsc-button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--nsc-pink-dark) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: none !important;
  transition: transform .2s ease, background .2s ease;
}
.nsc-button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #b85f73 !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.nsc-card {
  background: #fff;
  border: 1px solid rgba(223,143,157,.20);
  border-radius: var(--nsc-radius);
  box-shadow: 0 8px 28px rgba(82,55,66,.08);
  overflow: hidden;
}

/* Starter-page styles. Content remains fully editable in WordPress. */
.nsc-home-hero {
  background: linear-gradient(90deg, #fff8f6 0%, #fff2f4 48%, #f6e4e9 100%);
  overflow: hidden;
}
.nsc-home-hero-grid {
  width: min(1440px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(360px,.88fr) minmax(0,1.12fr);
  min-height: 530px;
}
.nsc-home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(48px,6vw,78px) clamp(28px,5vw,72px);
}
.nsc-home-hero-copy h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px,6vw,82px);
  font-weight: 500;
  line-height: .98;
}
.nsc-home-hero-copy .nsc-script-line {
  display: block;
  margin-top: 10px;
  color: var(--nsc-pink-dark);
  font-family: 'Brush Script MT','Segoe Script',cursive;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.03;
}
.nsc-home-hero-copy > p:not(.nsc-eyebrow) {
  max-width: 560px;
  margin: 22px 0 26px;
  font-size: 17px;
}
.nsc-home-hero-media { margin: 0; min-height: 530px; height: 100%; }
.nsc-home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: center;
}
.nsc-occasion-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}
.nsc-occasion-card {
  position: relative;
  min-height: 280px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 9px 28px rgba(82,55,66,.11);
}
.nsc-occasion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.nsc-occasion-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(47,35,40,.72), rgba(47,35,40,.02) 72%);
}
.nsc-occasion-card:hover img { transform: scale(1.035); }
.nsc-occasion-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.nsc-occasion-card-copy h3 { margin: 0 0 5px; color: #fff; font-size: 27px; }
.nsc-occasion-card-copy p { margin: 0; color: rgba(255,255,255,.88); font-size: 14px; }
.nsc-feature-strip {
  border-top: 1px solid var(--nsc-border);
  border-bottom: 1px solid var(--nsc-border);
  background: #fff;
}
.nsc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.nsc-feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 34px;
}
.nsc-feature-item + .nsc-feature-item { border-left: 1px solid var(--nsc-border); }
.nsc-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--nsc-pink);
  border-radius: 50%;
  color: var(--nsc-pink-dark);
  font-size: 24px;
}
.nsc-feature-item h3 { margin: 0 0 4px; color: var(--nsc-pink-dark); font-size: 19px; }
.nsc-feature-item p { margin: 0; font-size: 14px; }

/* Footer brand strip and footer */
.nsc-footer-signature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 22%, rgba(255,255,255,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 72%, rgba(255,255,255,.15) 0 2px, transparent 3px),
    linear-gradient(100deg, #db8798 0%, #e9a3b0 50%, #f0b9c1 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(160,72,94,.12);
}
.nsc-footer-signature::before,
.nsc-footer-signature::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  pointer-events: none;
}
.nsc-footer-signature::before { left: -90px; top: -120px; }
.nsc-footer-signature::after { right: -80px; bottom: -130px; }
.nsc-footer-signature-inner {
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(150px,.7fr) minmax(320px,1.7fr) minmax(150px,.7fr);
  align-items: center;
  gap: 28px;
  padding-block: 24px;
}
.nsc-footer-signature-copy { text-align: center; }
.nsc-footer-signature-copy h2 {
  margin: 0 0 7px;
  color: #fff;
  font-family: 'Brush Script MT','Segoe Script',cursive;
  font-size: clamp(32px,3.2vw,46px);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 1px 0 rgba(119,48,65,.08);
}
.nsc-footer-signature-copy p {
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .035em;
}
.nsc-footer-signature-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px,2vw,24px);
  color: #fff;
}
.nsc-signature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.035);
  font-size: 24px;
  line-height: 1;
}
.nsc-signature-heart { font-family: Georgia,'Times New Roman',serif; font-size: 32px; }
.nsc-signature-star { width: 34px; height: 34px; border: 0; background: transparent; font-size: 19px; }
.nsc-footer-signature-decor-left .nsc-signature-icon:nth-child(1),
.nsc-footer-signature-decor-right .nsc-signature-icon:nth-child(3) { transform: translateY(-11px) rotate(-7deg); }
.nsc-footer-signature-decor-left .nsc-signature-icon:nth-child(3),
.nsc-footer-signature-decor-right .nsc-signature-icon:nth-child(1) { transform: translateY(10px) rotate(7deg); }
.site-footer {
  background: #fff;
  border-top: 1px solid var(--nsc-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px,1.35fr) repeat(3,minmax(140px,.7fr));
  gap: 38px;
  padding: 46px 0 34px;
}
.footer-grid:has(.footer-extra-column) {
  grid-template-columns: minmax(220px,1.35fr) repeat(4,minmax(130px,.65fr));
}
.footer-brand { max-width: 310px; }
.footer-logo-link { display: inline-flex; line-height: 0; }
.footer-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 104px;
  max-height: 104px;
  object-fit: contain;
}
.footer-brand p { margin: 14px 0 18px; color: var(--nsc-muted); font-size: 14px; }
.footer-menu-column h3,
.footer-widget h3 {
  margin: 5px 0 13px;
  color: var(--nsc-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-menu,
.footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li { margin: 7px 0; }
.footer-menu a { color: var(--nsc-muted); font-size: 14px; }
.footer-menu a:hover { color: var(--nsc-pink-dark); }
.footer-extra-text { color: var(--nsc-muted); font-size: 14px; line-height: 1.65; }
.footer-extra-text p { margin: 0 0 10px; }
.footer-extra-text p:last-child { margin-bottom: 0; }
.footer-extra-column .footer-widget { margin-top: 14px; }
.nsc-social-links-footer { gap: 8px; }
.nsc-social-links-footer .nsc-social-link {
  width: 34px;
  height: 34px;
  background: var(--nsc-pink-dark);
  border-color: var(--nsc-pink-dark);
  color: #fff;
}
.nsc-social-links-footer .nsc-social-link:hover { background: #b85f73; border-color: #b85f73; }
.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--nsc-border);
  color: var(--nsc-muted);
  font-size: 12px;
}
.footer-legal-menu { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-legal-menu a:hover { color: var(--nsc-pink-dark); }

/* Posts */
.nsc-post-list { display: grid; gap: 24px; }
.nsc-post-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--nsc-border);
  border-radius: var(--nsc-radius);
}
.nsc-post-card h2 { margin-top: 0; font-family: Georgia,serif; }
.nsc-not-found { text-align: center; padding-block: 48px; }

/* WooCommerce */
.nsc-woocommerce-area { background: #fffaf8; }
.woocommerce .woocommerce-breadcrumb { color: var(--nsc-muted); font-size: 13px; }
.woocommerce ul.products { margin-top: 30px; }
.woocommerce ul.products li.product {
  padding: 12px 12px 18px;
  background: #fff;
  border: 1px solid rgba(223,143,157,.18);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(82,55,66,.08);
}
.woocommerce ul.products li.product a img { border-radius: 13px; margin-bottom: 14px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--nsc-ink); font-size: 17px; }
.woocommerce ul.products li.product .price { color: var(--nsc-pink-dark); font-weight: 700; }
.woocommerce div.product div.images img { border-radius: 18px; }
.woocommerce div.product .product_title { font-family: Georgia,serif; font-weight: 500; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--nsc-pink-dark); }
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--nsc-pink-dark);
  background: #fff;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--nsc-pink-dark); }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 112px minmax(0,1fr) auto; gap: 14px; min-height: 86px; }
  .site-branding { width: 112px; height: 86px; }
  .site-logo-image,
  .site-branding .custom-logo { max-width: 92px !important; max-height: 76px !important; }
  .primary-menu { gap: 16px; font-size: 10.5px; }
  .primary-menu > li > a { padding: 31px 0; }
  .header-actions { gap: 6px; }
  .nsc-social-links-header { gap: 4px; }
  .nsc-social-links-header .nsc-social-link { width: 26px; height: 26px; font-size: 12px; }
  .nsc-header-button { min-height: 34px; padding: 8px 10px; font-size: 10px; }
  .nsc-occasion-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid,
  .footer-grid:has(.footer-extra-column) { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-brand { grid-column: span 3; max-width: 520px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .nsc-shell,
  .nsc-content-shell { width: min(100% - 30px, var(--nsc-shell)); }
  .header-inner {
    min-height: 76px;
    grid-template-columns: 78px 1fr auto;
    gap: 8px;
  }
  .site-branding { width: 78px; height: 76px; }
  .site-logo-image,
  .site-branding .custom-logo { max-width: 66px !important; max-height: 66px !important; }
  .mobile-menu-toggle { display: block; justify-self: end; grid-column: 2; }
  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-top: 1px solid var(--nsc-border);
    border-bottom: 1px solid var(--nsc-border);
    box-shadow: 0 12px 22px rgba(82,55,66,.08);
  }
  .site-navigation.is-open { display: block; }
  .primary-menu {
    display: block;
    width: min(100% - 30px, var(--nsc-shell));
    margin: 0 auto;
    padding: 12px 0 18px;
    font-size: 13px;
    letter-spacing: .07em;
  }
  .primary-menu > li > a { padding: 11px 4px; }
  .primary-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin-left: 16px;
    padding: 0 0 5px;
    border: 0;
    box-shadow: none;
  }
  .header-actions { grid-column: 3; gap: 5px; }
  .nsc-social-links-header { display: none; }
  .nsc-header-button { min-height: 34px; padding: 8px 10px; font-size: 10px; letter-spacing: .02em; }
  .nsc-home-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .nsc-home-hero-copy { align-items: center; text-align: center; padding: 52px 24px 40px; }
  .nsc-home-hero-media { min-height: 360px; }
  .nsc-home-hero-media img { min-height: 360px; }
  .nsc-feature-grid { grid-template-columns: 1fr; }
  .nsc-feature-item + .nsc-feature-item { border-left: 0; border-top: 1px solid var(--nsc-border); }
  .nsc-footer-signature-inner { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .nsc-footer-signature-decor { display: none; }
  .footer-grid,
  .footer-grid:has(.footer-extra-column) { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
}

@media (max-width: 560px) {
  .nsc-topbar { font-size: 11px; }
  .header-inner {
    min-height: 0;
    grid-template-columns: 72px 1fr auto;
    padding-top: 6px;
    padding-bottom: 7px;
  }
  .site-branding { width: 72px; height: 64px; }
  .site-logo-image,
  .site-branding .custom-logo { max-width: 60px !important; max-height: 58px !important; }
  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    gap: 6px;
    padding-bottom: 4px;
  }
  .nsc-header-cart { gap: 5px; }
  .nsc-cart-link { width: 34px; height: 34px; }
  .nsc-header-button { min-height: 32px; padding: 7px 10px; font-size: 9.5px; }
  .nsc-home-hero-copy h1 { font-size: 45px; }
  .nsc-home-hero-media { min-height: 290px; }
  .nsc-home-hero-media img { min-height: 290px; }
  .nsc-occasion-grid { grid-template-columns: 1fr; }
  .nsc-occasion-card { min-height: 230px; }
  .footer-grid,
  .footer-grid:has(.footer-extra-column) { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; }
}
