:root {
  --osp-ink: #102a43;
  --osp-deep: #061a33;
  --osp-navy: #0a2748;
  --osp-blue: #3189c4;
  --osp-blue-dark: #1c679e;
  --osp-sky: #eaf7ff;
  --osp-paper: #fffefa;
  --osp-line: #cbdfee;
  --osp-pink: #ed82ab;
  --osp-gold: #f0c36a;
  --osp-muted: #577089;
  --osp-success: #27765a;
  --osp-error: #aa2b3e;
  --osp-serif: Georgia, "Times New Roman", serif;
  --osp-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --osp-shadow: 0 22px 60px rgba(20, 66, 105, 0.15);
  --osp-shell: 1220px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 116px; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(87, 181, 231, 0.15), transparent 28rem),
    radial-gradient(circle at 92% 36%, rgba(237, 130, 171, 0.11), transparent 27rem),
    #f6fbff;
  color: var(--osp-ink);
  font: 16px/1.65 var(--osp-sans);
  -webkit-font-smoothing: antialiased;
}

body.ospgc-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
h1, h2, h3, h4 { color: var(--osp-deep); font-family: var(--osp-serif); line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -0.055em; }
h2 { margin-bottom: 18px; font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -0.04em; }
h3 { margin-bottom: 8px; font-size: 1.35rem; }
::selection { background: #bde6fa; color: var(--osp-deep); }
:focus-visible { outline: 3px solid #f3b841; outline-offset: 4px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.screen-reader-text:focus { z-index: 999; top: 10px; left: 10px; width: auto; height: auto; padding: 10px 16px; clip: auto; border-radius: 7px; background: #fff; color: var(--osp-navy); font-weight: 800; box-shadow: var(--osp-shadow); }
.ospgc-shell { width: min(calc(100% - 40px), var(--osp-shell)); margin-inline: auto; }
.ospgc-section { padding-block: clamp(82px, 10vw, 136px); }

.ospgc-announcement {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 20px;
  background: var(--osp-deep);
  color: #dcefff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ospgc-announcement i { width: 3px; height: 3px; border-radius: 50%; background: var(--osp-pink); }

.ospgc-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(164, 196, 221, 0.58); background: rgba(246, 251, 255, 0.93); transition: 0.2s; }
.ospgc-header.is-scrolled { background: rgba(255, 254, 250, 0.97); box-shadow: 0 8px 26px rgba(14, 54, 89, 0.08); }
@supports (backdrop-filter: blur(16px)) { .ospgc-header { backdrop-filter: blur(16px); } }
.ospgc-header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.ospgc-brand { display: inline-flex; align-items: center; gap: 12px; }
.ospgc-brand-seal { display: grid; width: 48px; height: 48px; place-items: center; border: 2px solid var(--osp-navy); border-radius: 50% 50% 46% 54%; background: linear-gradient(145deg, #dff5ff, #62afe0); color: var(--osp-navy); font: 900 0.82rem var(--osp-serif); letter-spacing: 0.06em; box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.56); }
.ospgc-brand-copy { display: grid; line-height: 1.18; }
.ospgc-brand-copy strong { font: 700 1.2rem var(--osp-serif); }
.ospgc-brand-copy small { margin-top: 3px; color: var(--osp-muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.ospgc-custom-logo img { width: auto; max-width: 150px; max-height: 54px; }
.ospgc-nav { display: flex; align-items: center; gap: clamp(17px, 2.4vw, 30px); }
.ospgc-menu { display: flex; align-items: center; gap: clamp(17px, 2.4vw, 30px); margin: 0; padding: 0; list-style: none; }
.ospgc-menu a { position: relative; color: #35536e; font-size: 0.9rem; font-weight: 750; }
.ospgc-menu a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; transform: scaleX(0); background: var(--osp-blue); content: ""; transition: transform 0.16s; }
.ospgc-menu a:hover::after, .ospgc-menu a:focus-visible::after, .ospgc-menu .current-menu-item a::after { transform: scaleX(1); }
.ospgc-menu-button { display: none; border: 0; background: none; color: var(--osp-navy); font-weight: 800; cursor: pointer; }
.ospgc-menu-button i, .ospgc-menu-button i::after { display: block; width: 22px; height: 2px; background: currentColor; content: ""; transition: 0.18s; }
.ospgc-menu-button i::after { transform: translateY(6px); }
.ospgc-cart-link { display: inline-flex; min-height: 42px; align-items: center; gap: 9px; padding: 8px 12px 8px 16px; border: 1px solid var(--osp-navy); border-radius: 999px; background: var(--osp-navy); color: #fff; font-size: 0.78rem; font-weight: 850; }
.ospgc-cart-link strong { display: grid; min-width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #fff; color: var(--osp-navy); font-size: 0.7rem; }

.ospgc-button,
button.button,
a.button,
input.button,
.wp-element-button,
.wc-block-components-button:not(.is-link) {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 23px;
  border: 1px solid var(--osp-navy) !important;
  border-radius: 10px !important;
  background: var(--osp-navy) !important;
  color: #fff !important;
  font-weight: 850 !important;
  line-height: 1.25;
  box-shadow: 0 8px 0 rgba(5, 26, 51, 0.12);
  cursor: pointer;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s;
}
.ospgc-button:hover,
button.button:hover,
a.button:hover,
input.button:hover,
.wp-element-button:hover,
.wc-block-components-button:not(.is-link):hover { transform: translateY(-2px); background: #173f68 !important; box-shadow: 0 11px 0 rgba(5, 26, 51, 0.1); }
.ospgc-paper-button { border-color: #fff !important; background: var(--osp-paper) !important; color: var(--osp-navy) !important; box-shadow: 0 8px 0 rgba(0, 0, 0, 0.13); }
.ospgc-paper-button:hover { background: var(--osp-sky) !important; }
.ospgc-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--osp-navy); font-weight: 850; text-decoration: underline; text-decoration-color: rgba(74, 159, 218, 0.55); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.ospgc-text-link span { transition: transform 0.16s; }
.ospgc-text-link:hover span { transform: translateX(4px); }
.ospgc-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--osp-blue); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.ospgc-eyebrow.ospgc-light { color: #c9ebff; }

.ospgc-hero { position: relative; isolation: isolate; overflow: hidden; padding-top: clamp(66px, 8vw, 110px); }
.ospgc-hero::before { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(32, 117, 174, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 117, 174, 0.035) 1px, transparent 1px); background-size: 34px 34px; content: ""; mask-image: linear-gradient(#000, transparent 92%); }
.ospgc-orb { position: absolute; z-index: -1; width: 480px; height: 480px; border-radius: 50%; filter: blur(10px); opacity: 0.5; }
.ospgc-orb-one { top: -200px; right: -100px; background: radial-gradient(circle, rgba(92, 183, 233, 0.45), transparent 68%); }
.ospgc-orb-two { bottom: -260px; left: -240px; background: radial-gradient(circle, rgba(237, 130, 171, 0.26), transparent 68%); }
.ospgc-hero-grid { display: grid; min-height: 640px; align-items: center; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); gap: clamp(28px, 5vw, 78px); }
.ospgc-hero-copy { position: relative; z-index: 2; padding-bottom: 52px; }
.ospgc-hero h1 em { display: block; color: var(--osp-blue); font-weight: inherit; }
.ospgc-hero-lead { max-width: 620px; margin-bottom: 32px; color: #46647e; font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.75; }
.ospgc-hero-actions { display: flex; align-items: center; gap: 25px; margin-bottom: 32px; }
.ospgc-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 0; color: #4a687f; font-size: 0.82rem; font-weight: 750; list-style: none; }
.ospgc-hero-visual { position: relative; padding-bottom: 50px; }
.ospgc-hero-frame { position: relative; overflow: hidden; border: 10px solid rgba(255, 255, 255, 0.82); border-radius: 34px; background: #e1f1fa; box-shadow: 0 34px 80px rgba(24, 70, 105, 0.24); transform: rotate(1.4deg); }
.ospgc-hero-frame::after { position: absolute; top: -40%; left: -22%; width: 30%; height: 180%; transform: rotate(24deg); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.37), transparent); content: ""; }
.ospgc-hero-note { position: absolute; right: -1%; bottom: 3%; display: grid; min-width: 178px; padding: 15px 19px; transform: rotate(-3deg); border: 1px solid #dab75f; border-radius: 8px; background: #fff7d6; color: var(--osp-navy); box-shadow: 0 13px 35px rgba(19, 50, 73, 0.17); }
.ospgc-hero-note small { color: #866b24; font-size: 0.64rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.ospgc-hero-note strong { font-family: var(--osp-serif); font-size: 1.2rem; }
.ospgc-ribbon { display: flex; min-height: 54px; align-items: center; justify-content: space-around; gap: 18px; margin-top: 10px; overflow: hidden; background: var(--osp-blue); color: #eaf8ff; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.22em; }
.ospgc-ribbon i { width: 5px; height: 5px; transform: rotate(45deg); background: var(--osp-pink); }

.ospgc-collection { background: rgba(255, 254, 250, 0.67); }
.ospgc-section-heading { margin-bottom: 42px; }
.ospgc-section-heading p:not(.ospgc-eyebrow) { max-width: 680px; color: var(--osp-muted); }
.ospgc-split-heading { display: flex; align-items: end; justify-content: space-between; gap: 38px; }
.ospgc-home-products .woocommerce { width: 100%; }
.ospgc-notice { padding: 28px; border: 1px dashed var(--osp-line); border-radius: 16px; background: #fff; text-align: center; }

.ospgc-how { position: relative; overflow: hidden; background: var(--osp-sky); }
.ospgc-how::after { position: absolute; right: -120px; bottom: -180px; width: 420px; height: 420px; border: 1px solid rgba(49, 137, 196, 0.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(49, 137, 196, 0.035), 0 0 0 110px rgba(49, 137, 196, 0.025); content: ""; }
.ospgc-how-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(60px, 10vw, 150px); }
.ospgc-how-intro > p:not(.ospgc-eyebrow) { color: var(--osp-muted); }
.ospgc-books { display: flex; height: 80px; align-items: end; gap: 5px; margin-top: 42px; }
.ospgc-books i { width: 25px; border: 2px solid var(--osp-navy); border-radius: 3px 3px 0 0; background: #fff; }
.ospgc-books i:nth-child(1) { height: 57px; background: #8bcaf0; }
.ospgc-books i:nth-child(2) { height: 72px; background: #ffc1d7; }
.ospgc-books i:nth-child(3) { width: 33px; height: 51px; background: #ffe296; }
.ospgc-books i:nth-child(4) { height: 78px; background: #a5d7bf; }
.ospgc-books i:nth-child(5) { height: 63px; background: #fff; }
.ospgc-steps { margin: 0; padding: 0; list-style: none; }
.ospgc-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid #bad8ea; }
.ospgc-steps li:first-child { padding-top: 0; }
.ospgc-steps li > span { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid #80bddf; border-radius: 50%; background: rgba(255, 255, 255, 0.72); color: var(--osp-blue-dark); font: 800 0.78rem var(--osp-sans); }
.ospgc-steps h3 { margin-bottom: 7px; font-size: 1.5rem; }
.ospgc-steps p { margin: 0; color: var(--osp-muted); }

.ospgc-reader-quote { padding-block: clamp(70px, 9vw, 118px); background: var(--osp-deep); color: #fff; }
.ospgc-quote-inner { display: grid; align-items: center; grid-template-columns: auto 1fr auto; gap: 45px; }
.ospgc-quote-inner > span { color: #87c9ee; font: 7rem/0.6 var(--osp-serif); }
.ospgc-quote-inner blockquote { margin: 0; text-align: center; }
.ospgc-quote-inner blockquote p { margin-bottom: 12px; color: #fff; font: italic clamp(1.75rem, 4vw, 3.2rem)/1.2 var(--osp-serif); }
.ospgc-quote-inner blockquote footer { color: #8fb4cd; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.ospgc-quote-inner > i { color: var(--osp-pink); font-style: normal; letter-spacing: 8px; }

.ospgc-faq { background: var(--osp-paper); }
.ospgc-faq-grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: clamp(55px, 9vw, 130px); }
.ospgc-faq-intro { position: sticky; top: 125px; align-self: start; }
.ospgc-faq-intro > p:not(.ospgc-eyebrow) { color: var(--osp-muted); }
.ospgc-faq-intro .ospgc-text-link { margin-top: 12px; font-size: 0.86rem; }
.ospgc-faq-items { border-top: 1px solid var(--osp-line); }
.ospgc-faq details { border-bottom: 1px solid var(--osp-line); }
.ospgc-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--osp-deep); cursor: pointer; font: 700 1.26rem var(--osp-serif); list-style: none; }
.ospgc-faq summary::-webkit-details-marker { display: none; }
.ospgc-faq summary span { color: var(--osp-blue); font: 500 1.5rem var(--osp-sans); transition: transform 0.18s; }
.ospgc-faq details[open] summary span { transform: rotate(45deg); }
.ospgc-faq details p { max-width: 720px; margin: -6px 0 25px; padding-right: 40px; color: var(--osp-muted); }
.ospgc-final-cta { position: relative; overflow: hidden; padding-block: 68px; background: var(--osp-blue); color: #fff; }
.ospgc-final-cta::before, .ospgc-final-cta::after { position: absolute; width: 230px; height: 230px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%; content: ""; }
.ospgc-final-cta::before { top: -145px; left: -65px; box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.035); }
.ospgc-final-cta::after { right: 2%; bottom: -178px; box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.03); }
.ospgc-final-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ospgc-final-cta h2 { max-width: 760px; margin-bottom: 0; color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); }

.ospgc-footer { padding: 70px 0 25px; background: var(--osp-deep); color: #bdd4e6; }
.ospgc-footer-grid { display: grid; grid-template-columns: 1.8fr 0.7fr 0.9fr; gap: 55px; padding-bottom: 52px; }
.ospgc-footer-brand .ospgc-brand-seal { border-color: #bfe6ff; }
.ospgc-footer-brand strong { color: #fff; }
.ospgc-footer-brand small { color: #99bdd6; }
.ospgc-footer-grid > div:first-child > p { max-width: 380px; margin: 22px 0 0; color: #8fb0c8; font-size: 0.88rem; }
.ospgc-footer-grid h2 { margin-bottom: 17px; color: #fff; font: 800 0.7rem var(--osp-sans); letter-spacing: 0.13em; text-transform: uppercase; }
.ospgc-footer-grid > div:not(:first-child) { display: flex; align-items: start; flex-direction: column; gap: 9px; }
.ospgc-footer-grid > div:not(:first-child) a { color: #adc8dc; font-size: 0.88rem; }
.ospgc-footer-grid > div:not(:first-child) a:hover { color: #fff; }
.ospgc-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.11); color: #7799b2; font-size: 0.74rem; }
.ospgc-footer-bottom p { margin: 0; }

/* WooCommerce storefront */
.ospgc-commerce-main, .ospgc-content-main { min-height: 60vh; padding-block: clamp(60px, 8vw, 105px); }
.ospgc-commerce-shell { position: relative; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 26px; color: var(--osp-muted); font-size: 0.76rem; font-weight: 700; }
.woocommerce .woocommerce-breadcrumb a { color: var(--osp-blue-dark); }
.woocommerce-products-header__title.page-title, .woocommerce div.product .product_title, .ospgc-page-header h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 32px; color: var(--osp-muted); font-size: 0.82rem; }
.woocommerce select, .woocommerce input.input-text, .woocommerce textarea, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .wc-block-components-text-input input, .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #abc7da !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--osp-ink) !important;
  box-shadow: none !important;
}
.woocommerce textarea { min-height: 120px; }
.woocommerce ul.products { display: grid; clear: both; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 3.5vw, 48px) clamp(15px, 2.5vw, 30px); margin: 0 !important; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { display: flex; width: auto !important; min-width: 0; align-items: stretch; flex-direction: column; float: none !important; margin: 0 !important; padding-bottom: 18px; overflow: hidden; border: 1px solid rgba(154, 190, 214, 0.76); border-radius: 18px; background: rgba(255, 255, 255, 0.86); box-shadow: 0 15px 40px rgba(23, 69, 103, 0.09); transition: transform 0.18s, box-shadow 0.18s; }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(23, 69, 103, 0.16); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { flex: 1; }
.woocommerce ul.products li.product a img { width: 100%; margin: 0 !important; aspect-ratio: 2 / 3; object-fit: contain; border-radius: 17px 17px 0 0; background: linear-gradient(145deg, #e4f4fc, #fdfaff); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 16px 17px 0 !important; font-size: clamp(1.15rem, 1.7vw, 1.45rem) !important; }
.ospgc-card-role { margin: 2px 17px 0; color: var(--osp-blue-dark); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.woocommerce ul.products li.product .price { margin: 7px 17px 12px; color: var(--osp-navy) !important; font: 800 1.14rem var(--osp-serif) !important; }
.woocommerce ul.products li.product .button { min-height: 43px; margin: auto 17px 0 !important; padding: 9px 15px; font-size: 0.78rem; box-shadow: none; }
.woocommerce ul.products li.product .added_to_cart { margin: 8px 17px 0; color: var(--osp-blue-dark); font-size: 0.75rem; font-weight: 850; text-align: center; text-decoration: underline; }
.woocommerce span.onsale { top: 12px !important; right: 12px !important; left: auto !important; min-width: 0; min-height: 0; padding: 6px 10px; border-radius: 999px; background: var(--osp-pink); font-size: 0.7rem; line-height: 1.1; }
.woocommerce div.product { display: flow-root; }
.woocommerce div.product div.images img { border-radius: 22px; background: #eaf7ff; box-shadow: var(--osp-shadow); }
.woocommerce div.product .summary { padding-top: 20px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--osp-navy); font: 800 1.7rem var(--osp-serif); }
.woocommerce div.product .stock { color: var(--osp-success); font-size: 0.83rem; font-weight: 850; }
.woocommerce div.product .stock.out-of-stock { color: var(--osp-error); }
.woocommerce .quantity .qty { min-height: 49px; border: 1px solid #abc7da; border-radius: 8px; }
.woocommerce div.product .woocommerce-tabs { clear: both; padding-top: 65px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--osp-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-color: var(--osp-line); background: #edf7fc; }
.woocommerce table.shop_table { overflow: hidden; border-color: var(--osp-line); border-radius: 13px; background: rgba(255,255,255,.72); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 14px; border-color: var(--osp-line); }
.woocommerce-cart table.cart img { width: 82px; border-radius: 9px; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout-review-order, .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register, .woocommerce-account .woocommerce-MyAccount-content, .woocommerce-account .woocommerce-MyAccount-navigation { padding: clamp(20px, 3vw, 32px); border: 1px solid var(--osp-line); border-radius: 15px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 15px 40px rgba(23, 69, 103, 0.07); }
.woocommerce form .form-row label { color: var(--osp-navy); font-size: 0.78rem; font-weight: 800; }
.woocommerce form .form-row .required { color: var(--osp-error); }
.woocommerce-info, .woocommerce-message, .woocommerce-error { padding: 18px 20px 18px 56px !important; border-top-color: var(--osp-blue) !important; border-radius: 10px; background: #fff; box-shadow: 0 9px 24px rgba(23, 69, 103, 0.08); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--osp-blue); }
.woocommerce-error { border-top-color: var(--osp-error) !important; }
.woocommerce-checkout #payment { border: 1px solid var(--osp-line); border-radius: 13px; background: #edf7fc; }
.woocommerce-checkout #payment div.payment_box { background: #dceef8; }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #dceef8; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 25%; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li + li { border-top: 1px solid var(--osp-line); }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 10px 0; color: var(--osp-navy); font-weight: 800; }
.woocommerce-account .woocommerce-MyAccount-content { width: 72%; }

/* Cart and Checkout Blocks */
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { color: var(--osp-ink); }
.wc-block-components-sidebar, .wc-block-components-main { border-color: var(--osp-line) !important; }
.wc-block-components-sidebar-layout .wc-block-components-main, .wc-block-components-sidebar { padding: clamp(18px, 3vw, 34px) !important; border: 1px solid var(--osp-line); border-radius: 15px; background: rgba(255, 255, 255, 0.82); }
.wc-block-components-sidebar-layout { gap: 28px; }
.wc-block-components-order-summary-item__image img { border-radius: 8px; }
.wc-block-components-title { font-family: var(--osp-serif); }
.wc-block-checkout__additional-fields .wc-block-components-checkout-step__description { color: var(--osp-muted); }

.ospgc-prose { max-width: 900px; }
.ospgc-page-header { margin-bottom: 45px; }
.ospgc-prose .entry-content a { color: var(--osp-blue-dark); font-weight: 750; text-decoration: underline; }
.ospgc-post { margin-bottom: 50px; padding-bottom: 40px; border-bottom: 1px solid var(--osp-line); }
.ospgc-post-image { margin-bottom: 34px; overflow: hidden; border-radius: 18px; box-shadow: var(--osp-shadow); }
.ospgc-empty-state { max-width: 740px; padding-block: 70px; text-align: center; }
.ospgc-empty-state .ospgc-eyebrow { justify-content: center; }
.ospgc-empty-state p:not(.ospgc-eyebrow) { color: var(--osp-muted); font-size: 1.12rem; }

@media (max-width: 1050px) {
  .ospgc-hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .ospgc-hero-copy { max-width: 770px; padding-bottom: 10px; }
  .ospgc-hero h1 em { display: inline; }
  .ospgc-hero-visual { max-width: 820px; margin: auto; }
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .ospgc-shell { width: min(calc(100% - 30px), var(--osp-shell)); }
  .ospgc-menu-button { display: flex; align-items: center; gap: 10px; }
  .ospgc-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 10px 20px 20px; transform: translateY(-8px); border-bottom: 1px solid var(--osp-line); background: rgba(255, 254, 250, 0.99); box-shadow: var(--osp-shadow); opacity: 0; pointer-events: none; transition: 0.18s; }
  .ospgc-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .ospgc-menu { display: grid; gap: 0; }
  .ospgc-menu li { border-bottom: 1px solid #e3edf3; }
  .ospgc-menu a { display: block; padding: 13px 3px; }
  .ospgc-menu a::after { display: none; }
  .ospgc-cart-link { justify-self: stretch; justify-content: center; margin-top: 12px; }
  .ospgc-menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
  .ospgc-menu-button[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .ospgc-split-heading, .ospgc-final-inner { align-items: start; flex-direction: column; }
  .ospgc-how-grid, .ospgc-faq-grid { grid-template-columns: 1fr; }
  .ospgc-how-grid { gap: 48px; }
  .ospgc-faq-intro { position: static; }
  .ospgc-quote-inner { grid-template-columns: 1fr; }
  .ospgc-quote-inner > span, .ospgc-quote-inner > i { display: none; }
  .ospgc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
  .woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; }
  .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 24px; }
}

@media (max-width: 680px) {
  .ospgc-announcement { min-height: 34px; font-size: 0.59rem; letter-spacing: 0.05em; }
  .ospgc-announcement i, .ospgc-announcement i ~ * { display: none; }
  .ospgc-header-inner { min-height: 72px; }
  .ospgc-brand-seal { width: 42px; height: 42px; font-size: 0.7rem; }
  .ospgc-brand-copy strong { font-size: 1.05rem; }
  .ospgc-brand-copy small { font-size: 0.56rem; }
  .ospgc-menu-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .ospgc-hero { padding-top: 54px; }
  .ospgc-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .ospgc-hero-lead { font-size: 1rem; }
  .ospgc-hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .ospgc-hero-actions .ospgc-text-link { align-self: center; }
  .ospgc-hero-frame { margin-inline: -7px; border-width: 6px; border-radius: 23px; transform: rotate(0.8deg); }
  .ospgc-hero-note { right: 3%; bottom: -6px; }
  .ospgc-ribbon { margin-top: 50px; }
  .ospgc-section { padding-block: 76px; }
  .ospgc-split-heading { display: block; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 11px; }
  .woocommerce ul.products li.product { border-radius: 12px; }
  .woocommerce ul.products li.product a img { border-radius: 11px 11px 0 0; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 12px 11px 0 !important; font-size: 1.02rem !important; }
  .ospgc-card-role { margin-inline: 11px; font-size: 0.54rem; }
  .woocommerce ul.products li.product .price { margin: 4px 11px 9px; font-size: 1rem !important; }
  .woocommerce ul.products li.product .button { min-height: 38px; margin-inline: 9px !important; padding: 7px 8px; font-size: 0.66rem; }
  .ospgc-steps li { grid-template-columns: 50px 1fr; gap: 16px; }
  .ospgc-footer-grid { grid-template-columns: 1fr 1fr; }
  .ospgc-footer-grid > div:first-child { grid-column: 1 / -1; }
  .ospgc-footer-bottom { align-items: start; flex-direction: column; }
  .woocommerce div.product div.images, .woocommerce div.product div.summary { width: 100%; float: none; }
  .woocommerce-cart table.cart .product-thumbnail { display: none; }
  .wc-block-components-sidebar-layout .wc-block-components-main, .wc-block-components-sidebar { padding: 16px !important; }
}

@media (max-width: 390px) {
  .ospgc-shell { width: min(calc(100% - 24px), var(--osp-shell)); }
  .ospgc-brand-copy small { display: none; }
  .woocommerce ul.products { gap-inline: 8px; }
  .woocommerce ul.products li.product .button { font-size: 0.61rem; }
  .ospgc-faq details p { padding-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
