:root {
    --bg: #fffaf0;
    --paper: #ffffff;
    --ink: #1d211c;
    --muted: #6e6656;
    --green: #1f4d33;
    --green-soft: #dce9dc;
    --brand-brown: #563f36;
    --brand-brown-dark: #3e2c27;
    --brand-orange: #ffad18;
    --brand-coral: #f15a24;
    --gold: #d89b1d;
    --gold-dark: #9b620b;
    --line: #e7dcc7;
    --shadow: 0 18px 60px rgba(44, 34, 15, 0.14);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: #fff;
    border-radius: 8px;
    background: var(--brand-brown-dark);
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 10px clamp(18px, 4vw, 56px);
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(255, 250, 240, 0.76)),
        url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center top, center top;
    background-size: auto, 112px 98px;
    border-bottom: 1px solid rgba(216, 155, 29, 0.28);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
}

.logo-frame {
    position: relative;
    display: block;
    overflow: hidden;
    flex: 0 0 auto;
}

.site-logo {
    position: absolute;
    display: block;
    width: 282px;
    height: 282px;
    max-width: none;
    transform: translate(-11px, -106px);
}

.header-logo-frame {
    width: 260px;
    height: 68px;
}

.footer-logo-frame {
    width: 220px;
    height: 58px;
}

.footer-logo-frame .site-logo {
    width: 240px;
    height: 240px;
    transform: translate(-10px, -90px);
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    color: var(--brand-brown-dark);
    list-style: none;
    font-size: 1.04rem;
    font-weight: 700;
}

.menu a:hover {
    color: var(--gold-dark);
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    color: var(--brand-brown-dark);
    border: 1px solid rgba(86, 63, 54, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle::before {
    content: "☰";
    font-size: 1.08rem;
    line-height: 1;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-action,
.header-cart,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--green);
    border-radius: 999px;
    font-weight: 750;
}

.header-action,
.header-cart,
.button-primary {
    color: #fff;
    background: var(--green);
}

.header-action,
.header-cart {
    color: var(--brand-brown-dark);
    border-color: var(--brand-orange);
    background: var(--brand-orange);
}

.header-cart span {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    margin-left: 8px;
    padding: 0 7px;
    color: #fff;
    border-radius: 999px;
    background: var(--green);
    font-size: 0.78rem;
    line-height: 1;
}

.header-action:hover,
.header-cart:hover {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
}

.header-cart:hover span {
    color: var(--brand-brown-dark);
    background: #ffcf57;
}

.button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.13);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 76px);
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(16, 25, 15, 0.72) 0%, rgba(20, 31, 18, 0.48) 44%, rgba(20, 31, 18, 0.14) 100%),
        url("../images/hero-promed-custom.png") center / cover;
}

.hero-copy {
    width: 500px;
    max-width: 500px;
    padding: 26px;
    color: #fffaf0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.18), transparent 32%),
        rgba(21, 40, 26, 0.72);
    box-shadow: 0 24px 70px rgba(10, 16, 9, 0.32);
    backdrop-filter: blur(9px);
}

.hero h1 {
    max-width: 11.6ch;
    font-size: 3.35rem;
    line-height: 1.02;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f2d391;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 12.5ch;
    font-size: clamp(3rem, 6.2vw, 5.4rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.hero-lead {
    max-width: 430px;
    margin: 16px 0 0;
    color: rgba(255, 250, 240, 0.86);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-media {
    display: none;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 clamp(18px, 4vw, 56px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.trust-strip div {
    display: grid;
    gap: 4px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.trust-strip strong {
    color: var(--green);
    font-size: 1.06rem;
}

.trust-strip span {
    color: var(--muted);
}

.section,
.split-section,
.content {
    padding: clamp(62px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading p,
.about-copy p,
.page-content p {
    color: var(--muted);
    font-size: 1.05rem;
}

.honeycomb-bg,
.product-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center top;
    background-size: 112px 98px;
}

.honeycomb-bg::before,
.product-section::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(255, 250, 240, 0.76));
    pointer-events: none;
}

.honeycomb-bg > *,
.product-section > * {
    position: relative;
    z-index: 1;
}

.category-grid,
.product-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card,
.product-card,
.article-grid article,
.post-card,
.page-content {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 330px));
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.84);
}

.product-image {
    margin: 0;
    padding: 16px 16px 0;
}

.product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 7px;
    background: #fff7e8;
}

.product-content {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 260px;
    padding: 20px 22px 24px;
}

.product-content span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 10px;
    color: var(--brand-brown-dark);
    border-radius: 999px;
    background: rgba(255, 173, 24, 0.22);
    font-size: 0.78rem;
    font-weight: 850;
}

.product-content p {
    margin: 0;
    color: var(--muted);
}

.product-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: fit-content;
    margin-top: 24px;
    align-self: end;
    padding: 0 16px;
    color: #fff;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
}

.product-open:hover {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
}

.product-modal[hidden] {
    display: none;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 22px;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 33, 28, 0.58);
    backdrop-filter: blur(6px);
}

.product-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
    width: min(940px, 100%);
    max-height: min(760px, 92vh);
    overflow: auto;
    border: 1px solid rgba(231, 220, 199, 0.96);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 28px 90px rgba(20, 12, 5, 0.34);
}

.order-modal-panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(760px, 92vh);
    overflow: auto;
    border: 1px solid rgba(231, 220, 199, 0.96);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 28px 90px rgba(20, 12, 5, 0.34);
}

.product-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--brand-brown-dark);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    font-size: 1.45rem;
    font-weight: 700;
    cursor: pointer;
}

.product-modal-image {
    display: grid;
    place-items: center;
    min-height: 420px;
    margin: 0;
    padding: 34px;
    background: #fff7e8;
}

.product-modal-image img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.product-modal-content {
    padding: clamp(30px, 5vw, 58px);
}

.product-modal-content span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 0 11px;
    color: var(--brand-brown-dark);
    border-radius: 999px;
    background: rgba(255, 173, 24, 0.22);
    font-size: 0.82rem;
    font-weight: 850;
}

.product-modal-content h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-modal-content p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-order-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.product-order-form h3,
.product-order-form .order-form-note,
.product-order-form .order-note-field {
    grid-column: 1 / -1;
}

.product-order-form h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.15rem;
}

.product-order-form label {
    display: grid;
    gap: 6px;
    color: var(--brand-brown-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.product-order-form input,
.product-order-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font: inherit;
}

.product-order-form textarea {
    resize: vertical;
}

.product-order-form button {
    width: fit-content;
}

.product-order-form .order-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-modal-actions .button-secondary {
    color: var(--green);
    border-color: var(--green);
    background: transparent;
}

body.product-modal-open {
    overflow: hidden;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--green-soft);
}

.category-card p,
.article-grid p {
    margin: 0;
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 84px);
    background: var(--green);
    color: white;
}

.split-section .eyebrow,
.split-section .about-copy p {
    color: #f2d391;
}

.split-section .about-copy strong {
    color: #fffaf0;
}

.about-copy p:first-child {
    margin-top: 0;
}

.events-section {
    background: #fff;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.event-card {
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.78);
}

.event-date {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 22px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--brand-brown-dark);
    background: rgba(255, 173, 24, 0.24);
    font-size: 0.82rem;
    font-weight: 800;
}

.event-archive-panel {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 28px));
    max-height: min(90vh, 860px);
    overflow: auto;
    border: 1px solid rgba(89, 65, 48, 0.16);
    border-radius: 8px;
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(255, 250, 240, 0.76)),
        url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center top, center top;
    background-size: auto, 112px 98px;
    box-shadow: 0 28px 80px rgba(20, 24, 18, 0.26);
}

.event-archive-content {
    padding: clamp(26px, 4vw, 46px);
}

.event-archive-content > span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--brand-brown-dark);
    background: rgba(255, 173, 24, 0.22);
    font-size: 0.82rem;
    font-weight: 800;
}

.event-archive-content h2 {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--ink);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1;
}

.event-archive-content > p {
    max-width: 680px;
    margin-top: 14px;
    color: var(--muted);
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.event-gallery article {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 36px rgba(44, 34, 15, 0.09);
}

.event-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #fff7e8;
}

.event-gallery div {
    padding: 18px;
}

.event-gallery h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.22;
}

.event-gallery p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    margin-top: 28px;
}

.photo-gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
    background: #fff7e8;
    box-shadow: 0 14px 36px rgba(44, 34, 15, 0.10);
}

.photo-gallery-grid img:first-child {
    grid-row: span 2;
    min-height: 700px;
}

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

.article-grid article {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 430px;
    overflow: hidden;
    padding: 28px;
    color: #fff;
    cursor: pointer;
    background-color: var(--green);
    box-shadow: 0 18px 48px rgba(44, 34, 15, 0.12);
}

.article-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(20, 28, 20, 0.10) 0%, rgba(18, 31, 23, 0.44) 42%, rgba(18, 31, 23, 0.90) 100%);
    pointer-events: none;
    transition: background 180ms ease;
}

.article-grid article:hover::before {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 46%),
        linear-gradient(180deg, rgba(20, 28, 20, 0.04) 0%, rgba(18, 31, 23, 0.38) 42%, rgba(18, 31, 23, 0.88) 100%);
}

.blog-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 220ms ease;
}

.article-grid article:hover .blog-card-image {
    transform: scale(1.045);
}

.article-grid article > *:not(.blog-card-image) {
    position: relative;
    z-index: 2;
}

.article-grid article span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 10px;
    color: #fff4d0;
    border-radius: 999px;
    background: rgba(26, 32, 25, 0.48);
    font-size: 0.82rem;
    font-weight: 800;
}

.article-grid article h3 {
    max-width: 13ch;
    color: #fff;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.12;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.article-grid article p {
    max-width: 34ch;
    margin-top: 14px;
    color: rgba(255, 250, 240, 0.84);
    font-size: 0.94rem;
    line-height: 1.55;
}

.article-grid .read-more {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    opacity: 0;
}

.article-grid .read-more:hover {
    background: transparent;
}

.read-more {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: left;
}

.read-more:hover {
    color: var(--gold-dark);
}

.blog-modal-panel {
    position: relative;
    z-index: 1;
    width: min(880px, calc(100vw - 28px));
    max-height: min(88vh, 820px);
    overflow: auto;
    border: 1px solid rgba(89, 65, 48, 0.16);
    border-radius: 8px;
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(255, 250, 240, 0.76)),
        url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center top, center top;
    background-size: auto, 112px 98px;
    box-shadow: 0 28px 80px rgba(20, 24, 18, 0.26);
}

.blog-modal-content {
    padding: clamp(28px, 5vw, 54px);
}

.blog-modal-content span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--brand-brown-dark);
    background: rgba(255, 173, 24, 0.22);
    font-size: 0.82rem;
    font-weight: 800;
}

.blog-modal-content h2 {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--ink);
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 0.98;
}

.blog-modal-image {
    display: block;
    width: min(360px, 100%);
    aspect-ratio: 16 / 10;
    margin-top: 22px;
    border: 1px solid rgba(89, 65, 48, 0.14);
    border-radius: 8px;
    object-fit: cover;
    background: #fff7e8;
    box-shadow: 0 14px 34px rgba(44, 34, 15, 0.10);
}

.blog-modal-body {
    display: grid;
    gap: 15px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-modal-body h3 {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.18;
}

.blog-modal-body p {
    margin: 0;
}

.site-footer {
    padding: 54px clamp(18px, 4vw, 56px) 28px;
    color: #f8f0dd;
    background: #1a2019;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
}

.footer-grid h2 {
    font-size: 1rem;
}

.footer-grid p,
.footer-bottom {
    color: #cfc5ad;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(242, 211, 145, 0.38);
    border-radius: 999px;
    color: #f2d391;
    font-size: 0.9rem;
    font-weight: 700;
}

.social-links a:hover {
    border-color: #f2d391;
    background: rgba(242, 211, 145, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #f2d391;
    font-weight: 800;
}

.footer-bottom a:hover {
    color: #fff;
}

.page-content {
    max-width: 880px;
    min-height: auto;
    margin: 0 auto;
    background: #fff;
}

.shop-content {
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(255, 250, 240, 0.76)),
        url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center top, center top;
    background-size: auto, 112px 98px;
}

.shop-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce .woocommerce-products-header,
.woocommerce div.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 42px rgba(44, 34, 15, 0.08);
}

.woocommerce .woocommerce-products-header {
    margin-bottom: 24px;
    padding: 28px;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    display: flex;
    flex-direction: column;
    float: none;
    width: auto;
    margin: 0;
    min-height: 100%;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: grid;
    gap: 12px;
    color: inherit;
}

.woocommerce ul.products li.product a img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 7px;
    background: #fff7e8;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.25;
}

.woocommerce ul.products li.product .price {
    margin-top: auto;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--gold-dark);
    font-weight: 850;
}

.promed-price-note {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--brand-brown-dark);
    border-radius: 999px;
    background: rgba(255, 173, 24, 0.22);
    font-size: 0.88rem;
    font-weight: 850;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart,
.woocommerce div.product form.cart .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    color: #fff;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover {
    color: #fff;
    border-color: var(--gold-dark);
    background: var(--gold-dark);
}

.promed-woo-products {
    margin-top: 8px;
}

.promed-woo-products .woocommerce {
    margin: 0;
}

.woo-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.woocommerce a.added_to_cart {
    margin-left: 8px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
    width: fit-content;
    margin-top: 12px;
}

.woocommerce div.product {
    padding: clamp(22px, 4vw, 38px);
}

.woocommerce div.product div.images img {
    border-radius: 8px;
    background: #fff7e8;
}

.woocommerce div.product .summary {
    color: var(--muted);
}

.woocommerce .quantity .qty,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font: inherit;
}

.woocommerce table.shop_table {
    border-color: var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-top-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.9);
}

.woocommerce-checkout #payment {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.72);
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(255, 173, 24, 0.14);
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(255, 173, 24, 0.14);
}

@media (max-width: 980px) {
    .site-header {
        flex-wrap: nowrap;
        gap: 14px;
        min-height: 78px;
    }

    .primary-nav {
        width: auto;
        overflow-x: visible;
    }

    .menu {
        width: auto;
        gap: 14px;
        font-size: 0.94rem;
    }

    .header-logo-frame {
        width: 226px;
        height: 60px;
    }

    .header-logo-frame .site-logo {
        width: 246px;
        height: 246px;
        transform: translate(-10px, -93px);
    }

    .hero,
    .split-section {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(3rem, 14vw, 5.5rem);
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-grid img,
    .photo-gallery-grid img:first-child {
        grid-row: auto;
        min-height: 360px;
    }

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

    .product-modal-panel {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 86px;
    }

    .site-header {
        min-height: 76px;
        padding: 8px 16px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background:
            linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(255, 250, 240, 0.88)),
            url("data:image/svg+xml,%3Csvg width='112' height='98' viewBox='0 0 112 98' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d89b1d' stroke-opacity='0.30' stroke-width='1.6'%3E%3Cpath d='M28 1 L56 17 L56 49 L28 65 L0 49 L0 17 Z'/%3E%3Cpath d='M84 1 L112 17 L112 49 L84 65 L56 49 L56 17 Z'/%3E%3Cpath d='M56 49 L84 65 L84 97 L56 113 L28 97 L28 65 Z'/%3E%3C/g%3E%3C/svg%3E");
        background-position: center top, center top;
        background-size: auto, 112px 98px;
        box-shadow: 0 18px 48px rgba(44, 34, 15, 0.14);
    }

    .site-header.is-menu-open .primary-nav {
        display: block;
    }

    .menu {
        display: grid;
        gap: 4px;
        font-size: 0.98rem;
    }

    .menu a {
        min-height: 44px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .menu a:hover {
        background: rgba(255, 173, 24, 0.16);
    }

    .header-action {
        display: none;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 86px;
    }

    .site-header {
        padding: 8px 14px;
    }

    .header-logo-frame {
        width: 210px;
        height: 56px;
    }

    .header-logo-frame .site-logo {
        width: 228px;
        height: 228px;
        transform: translate(-9px, -86px);
    }

    .hero {
        gap: 18px;
        min-height: calc(100svh - 120px);
        padding-top: 22px;
        padding-bottom: 22px;
        background-position: 58% center;
    }

    h1 {
        max-width: 13ch;
        font-size: clamp(2.45rem, 10vw, 3.3rem);
        line-height: 1.02;
    }

    .hero-copy {
        width: min(100%, 390px);
        max-width: 390px;
        padding: 20px;
    }

    .hero h1 {
        max-width: 13ch;
        font-size: 2.15rem;
        line-height: 1.04;
    }

    .hero-lead {
        max-width: 330px;
        margin-top: 14px;
        font-size: 0.95rem;
    }

    .hero-actions {
        margin-top: 18px;
    }

    .trust-strip,
    .event-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery {
        grid-template-columns: 1fr;
    }

    .photo-gallery-grid img,
    .photo-gallery-grid img:first-child {
        min-height: 280px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .product-modal {
        padding: 14px;
    }

    .product-modal-panel {
        max-height: 90vh;
    }

    .product-modal-image {
        min-height: 260px;
        padding: 22px;
    }

    .product-modal-content {
        padding: 24px;
    }

    .product-modal-actions .button {
        width: 100%;
    }

    .product-order-form {
        grid-template-columns: 1fr;
    }

    .product-order-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
