:root {
    --smoke: #171311;
    --smoke-soft: #29201d;
    --cream: #fff8eb;
    --cream-deep: #f3e4cc;
    --paper: #fffdf8;
    --salmon: #dc6d4b;
    --salmon-dark: #a5452f;
    --maple: #b77b33;
    --muted: #74665d;
    --line: rgba(41, 32, 29, 0.14);
    --shadow: 0 24px 70px rgba(23, 19, 17, 0.16);
    --radius: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--smoke);
    background: var(--paper);
    line-height: 1.55;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    line-height: 1.08;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    font-size: clamp(1.85rem, 3.7vw, 3.05rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.18rem, 2.2vw, 1.8rem);
    letter-spacing: -0.025em;
}

.container {
    width: min(var(--max), calc(100% - 36px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--salmon);
    color: white;
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-strip {
    background: var(--smoke);
    color: var(--cream);
    font-size: 0.9rem;
}

.top-strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-strip a {
    color: var(--cream);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    min-height: 82px;
    padding-block: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(135deg, var(--smoke), var(--smoke-soft));
    color: var(--cream);
    border: 2px solid var(--maple);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.08rem;
    letter-spacing: -0.04em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.primary-nav a {
    padding: 0.55rem 0.72rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.88rem;
}


.primary-nav a:hover,
.primary-nav a.active,
.primary-nav a[aria-current="page"] {
    background: var(--cream);
    color: var(--smoke);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--smoke);
    border-radius: 999px;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(220, 109, 75, 0.22), transparent 34rem),
        linear-gradient(135deg, var(--cream), #fffdf8 52%, #f8ead5);
}

.hero {
    padding: clamp(2.6rem, 5vw, 4.5rem) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    color: var(--salmon-dark);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.hero-lede,
.page-hero p {
    font-size: clamp(0.96rem, 1.35vw, 1.06rem);
    color: var(--muted);
    max-width: 740px;
}

.button-row,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--salmon);
    color: white;
    box-shadow: 0 14px 32px rgba(220, 109, 75, 0.24);
}

.btn-secondary {
    background: var(--paper);
    color: var(--smoke);
    border-color: var(--line);
}

.text-link {
    color: var(--salmon-dark);
    font-weight: 800;
    border-bottom: 2px solid rgba(220, 109, 75, 0.35);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.hero-proof span {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-card,
.gift-card-preview {
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid rgba(41, 32, 29, 0.12);
    box-shadow: var(--shadow);
    border-radius: 36px;
    overflow: hidden;
}

.hero-image-panel {
    min-height: 380px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.2), transparent 12rem),
        linear-gradient(135deg, #2a201d, #4e3027);
}

.salmon-plate {
    width: min(78%, 380px);
    aspect-ratio: 1.35;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(255,255,255,0.85) 0 20%, transparent 21%),
        repeating-linear-gradient(100deg, #e8936f 0 18px, #d96548 19px 28px, #f1b18f 29px 36px),
        linear-gradient(135deg, #f08a65, #b94d36);
    box-shadow: inset 0 0 0 24px rgba(255, 253, 248, 0.82), 0 34px 70px rgba(0,0,0,0.24);
    transform: rotate(-8deg);
}

.hero-card-footer {
    padding: 1.25rem;
    display: grid;
    gap: 0.25rem;
}

.hero-card-footer span {
    color: var(--muted);
}

.section {
    padding: clamp(2.25rem, 4.2vw, 3.8rem) 0;
}

.section-light {
    background: var(--cream);
}

.section-accent {
    background: var(--smoke);
    color: var(--cream);
}

.three-card-grid,
.product-grid,
.order-grid,
.process-grid,
.content-grid,
.contact-grid {
    display: grid;
    gap: 1.2rem;
}

.three-card-grid,
.order-grid,
.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.content-grid,
.contact-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    align-items: start;
}

.feature-card,
.product-card,
.content-card,
.info-card,
.contact-panel,
.contact-form,
.notice-box,
.process-grid article {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.05rem, 2.4vw, 1.55rem);
    box-shadow: 0 10px 35px rgba(23, 19, 17, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--cream);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.cta-panel p,
.section-accent .eyebrow {
    color: rgba(255, 248, 235, 0.72);
}

.compact-hero {
    padding: clamp(2.25rem, 4.2vw, 3.8rem) 0;
}

.compact-hero h1 {
    max-width: 850px;
}

.large-card p:last-child,
.info-card p:last-child,
.product-card p:last-child {
    margin-bottom: 0;
}

.check-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--salmon-dark);
    font-weight: 900;
}

.help-steps {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.75rem;
    color: var(--muted);
}

.help-steps li::marker {
    color: var(--salmon-dark);
    font-weight: 900;
}

.help-card-grid .admin-panel {
    padding: 0;
    overflow: hidden;
}

.help-card-grid .admin-panel h2 {
    margin: 0;
    padding: 0.95rem 1.1rem;
    background: linear-gradient(90deg, rgba(220, 109, 75, 0.14), rgba(183, 123, 51, 0.11));
    border-bottom: 1px solid var(--line);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

.help-card-grid .check-list,
.help-card-grid .help-steps {
    margin: 0;
    padding: 1rem;
    gap: 0;
}

.help-card-grid .help-steps {
    padding-left: 2.6rem;
}

.help-card-grid .check-list li,
.help-card-grid .help-steps li {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    border-bottom: 1px solid rgba(41, 32, 29, 0.08);
}

.help-card-grid .check-list li {
    padding-right: 0.75rem;
}

.help-card-grid .check-list li:nth-child(even),
.help-card-grid .help-steps li:nth-child(even) {
    background: rgba(243, 228, 204, 0.34);
}

.help-card-grid .check-list li:last-child,
.help-card-grid .help-steps li:last-child {
    border-bottom: 0;
}

.step-number {
    display: inline-block;
    margin-bottom: 1.4rem;
    font-weight: 900;
    color: var(--salmon-dark);
    letter-spacing: 0.16em;
}

.notice-box {
    background: #fff2df;
    border-color: rgba(220, 109, 75, 0.28);
    color: #5b392d;
}

.product-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
}

.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.product-topline span {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.product-card h2 {
    font-size: 1.05rem;
}

.product-card p {
    color: var(--muted);
}

.price {
    display: block;
    margin-top: auto;
    padding-top: 1.4rem;
    font-size: 1.05rem;
    color: var(--salmon-dark);
}

.product-action {
    width: 100%;
    margin-top: 1rem;
}

.cart-add-form {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: end;
    margin-top: 1rem;
}

.cart-add-form input,
.cart-qty,
.order-form input,
.order-form select,
.order-form textarea,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    background: #fff;
    color: var(--smoke);
    font: inherit;
}

.cart-add-form .product-action {
    margin-top: 0;
}

.cart-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
}

.cart-message {
    margin-bottom: 1rem;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

.cart-table .cart-qty {
    max-width: 110px;
}

.cart-summary-row,
.invoice-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 1.1rem;
}

.cart-clear-form {
    margin-top: 0.9rem;
}

.link-button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.order-form {
    display: grid;
    gap: 0.85rem;
}

.order-form label,
.admin-form-grid label {
    display: grid;
    gap: 0.35rem;
    font-weight: 800;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-small {
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    font-size: 0.86rem;
}

.invoice-sheet {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow: 0 14px 42px rgba(23, 19, 17, 0.08);
}

.invoice-header,
.invoice-meta {
    display: grid;
    gap: 1rem;
}

.invoice-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.site-notice {
    position: relative;
    z-index: 40;
    background:
        linear-gradient(90deg, rgba(165, 69, 47, 0.98), rgba(183, 123, 51, 0.98)),
        var(--salmon-dark);
    color: #fffdf8;
    box-shadow: 0 12px 34px rgba(90, 48, 29, 0.22);
}

.site-notice-general {
    background: linear-gradient(90deg, rgba(165, 69, 47, 0.98), rgba(183, 123, 51, 0.98));
}

.site-notice-christmas {
    background: linear-gradient(90deg, #145c3b, #b71f2d);
}

.site-notice-new-year {
    background: linear-gradient(90deg, #19142f, #9a7737);
}

.site-notice-easter {
    background: linear-gradient(90deg, #6f70b8, #d88ab8);
}

.site-notice-canada-day {
    background: linear-gradient(90deg, #9f1d22, #e34343);
}

.site-notice-thanksgiving {
    background: linear-gradient(90deg, #8a4d20, #c8792b);
}

.site-notice-halloween {
    background: linear-gradient(90deg, #25142f, #d8761f);
}

.site-notice-mothers-day {
    background: linear-gradient(90deg, #8f2f62, #d987aa);
}

.site-notice-fathers-day {
    background: linear-gradient(90deg, #214b5f, #7a8b50);
}

.site-notice-remembrance {
    background: linear-gradient(90deg, #6b1419, #2f302b);
}

.site-notice-valentine {
    background: linear-gradient(90deg, #9c1c4d, #dc6d8c);
}

.site-notice-summer {
    background: linear-gradient(90deg, #1d7b71, #d89b28);
}

.site-notice-urgent {
    background: linear-gradient(90deg, #9f261f, #dc6d4b);
}

.site-notice-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.8rem;
    font-size: 0.96rem;
}

.site-notice-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 253, 248, 0.78);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.16);
    color: #fffdf8;
    font-weight: 900;
    font-size: 1.08rem;
    line-height: 1;
}

.site-notice-copy {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    flex: 1 1 auto;
}

.site-notice strong {
    color: #fffdf8;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-notice span {
    font-weight: 650;
}

.site-notice a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: #fffdf8;
    color: var(--salmon-dark);
    font-weight: 900;
    border: 1px solid rgba(255, 253, 248, 0.62);
    box-shadow: 0 8px 20px rgba(23, 19, 17, 0.16);
    white-space: nowrap;
}

.site-notice a:hover {
    background: var(--cream);
    color: var(--smoke);
}

.admin-notice-preview {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.invoice-callout {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--cream);
    text-align: right;
}

.invoice-callout a {
    color: var(--salmon-dark);
    font-weight: 900;
}

.invoice-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 1rem 0;
}

.invoice-note,
.shop-checklist {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--cream);
}

.shop-checklist {
    display: grid;
    gap: 0.6rem;
}

.shop-checklist label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.order-finalize-form {
    margin-bottom: 1rem;
}

.highlighted-card {
    background:
        radial-gradient(circle at top right, rgba(220, 109, 75, 0.20), transparent 14rem),
        var(--paper);
    border-color: rgba(220, 109, 75, 0.22);
}

.video-feature,
.video-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1rem, 2.5vw, 1.45rem);
    box-shadow: 0 10px 35px rgba(23, 19, 17, 0.06);
}

.video-feature {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.video-card h2 {
    margin-top: 1rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: var(--smoke);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.big-phone a {
    display: inline-block;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--salmon-dark);
}

.gift-hero {
    padding: clamp(3rem, 6vw, 5.2rem) 0;
}

.gift-card-preview {
    min-height: 360px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 248, 235, 0.92)),
        radial-gradient(circle at top right, rgba(220, 109, 75, 0.24), transparent 14rem);
}

.gift-card-preview span,
.gift-card-preview small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.gift-card-preview strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-list p {
    margin: 0;
    color: var(--muted);
}

.contact-list strong {
    color: var(--smoke);
}

.muted {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--smoke);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: #fff;
    font: inherit;
    color: var(--smoke);
}

textarea {
    resize: vertical;
}

.checkbox-label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    font-weight: 700;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

.success-box {
    background: #e8f6e8;
    border-color: rgba(36, 107, 47, 0.22);
    color: #246b2f;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(23, 19, 17, 0.58);
}

.site-modal {
    width: min(520px, 100%);
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: clamp(1.1rem, 3vw, 1.6rem);
    box-shadow: var(--shadow);
}

.site-modal p {
    color: var(--muted);
}

.site-footer {
    background: var(--smoke);
    color: var(--cream);
    padding: 3rem 0 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
    gap: 2rem;
}

.footer-brand .brand-mark {
    background: var(--cream);
    color: var(--smoke);
}

.footer-brand .brand-text small,
.footer-copy,
.site-footer p,
.site-footer small {
    color: rgba(255, 248, 235, 0.72);
}

.site-footer h2 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 248, 235, 0.16);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        inset: 124px 18px auto;
        display: none;
        padding: 0.8rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .primary-nav.open {
        display: grid;
    }

    .primary-nav a {
        width: 100%;
    }

    .hero-grid,
    .split-section,
    .cta-panel,
    .content-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .video-grid,
    .three-card-grid,
    .order-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .top-strip-inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 0.55rem 0;
        gap: 0.25rem;
    }

    .nav-shell {
        min-height: 78px;
    }

    .site-notice-inner {
        align-items: flex-start;
        gap: 0.65rem;
    }

    .site-notice-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.12rem;
    }

    .site-notice a {
        width: 100%;
    }

    .primary-nav {
        top: 112px;
    }


    .hero,
    .page-hero {
        padding-top: 2.5rem;
    }

    .product-grid,
    .video-grid,
    .three-card-grid,
    .order-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .button-row,
    .btn {
        width: 100%;
    }

    .hero-image-panel {
        min-height: 270px;
    }
}

/* Local cleaned Oven Head logo assets */
.brand-logo-wrap {
    width: 132px;
    height: 92px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: #fffdf8;
    box-shadow: 0 8px 22px rgba(23, 19, 17, 0.08);
    border: 1px solid rgba(41, 32, 29, 0.08);
    padding: 0.3rem;
    flex-shrink: 0;
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-brand .brand-logo-wrap {
    width: 144px;
    height: 100px;
}

.storefront-photo {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    place-items: end start;
    padding: 1.25rem;
}

.photo-label {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 253, 248, 0.9);
    color: var(--smoke);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .nav-shell {
        min-height: 88px;
    }

    .brand-logo-wrap {
        width: 112px;
        height: 76px;
        border-radius: 12px;
    }
}

@media (max-width: 680px) {
    .nav-shell {
        min-height: 78px;
    }

    .brand-logo-wrap {
        width: 92px;
        height: 62px;
        border-radius: 11px;
    }

    .brand {
        gap: 0.55rem;
    }

    .storefront-photo {
        min-height: 300px;
    }
}


/* =========================================================
   Master site + admin styles
   Keep shared typography, colors, buttons, cards, tables, and layout here.
   Older per-page CSS should be removed over time so this remains the single source.
   ========================================================= */

body {
    font-size: 15.5px;
}

.small-text,
.help-text,
.table-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.master-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(23, 19, 17, 0.05);
}

.master-table th,
.master-table td {
    padding: 0.85rem 0.95rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.master-table th {
    background: var(--cream);
    color: var(--smoke);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.master-table tr:last-child td {
    border-bottom: 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-weight: 800;
    font-size: 0.78rem;
    background: var(--cream);
    color: var(--smoke);
}

.status-pill.good {
    background: #e8f6e8;
    color: #246b2f;
}

.status-pill.warn {
    background: #fff2df;
    color: #8b4b17;
}

.admin-body {
    background: #f6efe3;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: var(--smoke);
    color: var(--cream);
    padding: 1.2rem;
}

.admin-brand {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.admin-brand img {
    width: 126px;
    height: auto;
    border-radius: 14px;
    background: var(--paper);
    padding: 0.3rem;
}

.admin-brand strong {
    font-size: 1rem;
    line-height: 1.15;
}

.admin-nav {
    display: grid;
    gap: 0.35rem;
}

.admin-nav a {
    color: rgba(255, 248, 235, 0.78);
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.92rem;
}

.admin-nav a:hover,
.admin-nav a.active,
.admin-nav a[aria-current="page"] {
    background: rgba(255, 248, 235, 0.12);
    color: #fff;
}

.admin-main {
    padding: clamp(1rem, 3vw, 2rem);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.admin-topbar h1 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    letter-spacing: -0.03em;
}

.admin-card,
.admin-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(1rem, 2.5vw, 1.55rem);
    box-shadow: 0 12px 34px rgba(23, 19, 17, 0.07);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-two-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 1rem;
    align-items: start;
}

.admin-card .metric {
    display: block;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--salmon-dark);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-form-grid > label {
    min-height: 100%;
    padding: 0.95rem;
    border: 1px solid rgba(41, 32, 29, 0.12);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.78);
}

.admin-form-grid > label:nth-of-type(even) {
    background: rgba(243, 228, 204, 0.28);
}

.admin-form-grid > label:focus-within {
    border-color: rgba(220, 109, 75, 0.5);
    box-shadow: 0 0 0 3px rgba(220, 109, 75, 0.12);
}

.admin-form-grid > label[style*="grid-column"] {
    background: linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(243, 228, 204, 0.35));
}

.notice-form-grid {
    align-items: start;
}

.notice-field-status,
.notice-field-type,
.notice-field-custom,
.notice-field-theme {
    align-self: start;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.admin-account {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 248, 235, 0.16);
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 248, 235, 0.78);
    font-size: 0.9rem;
}

.admin-account span {
    color: #fff;
    font-weight: 800;
}

.admin-login-form {
    max-width: 520px;
    display: grid;
    gap: 1rem;
}

.permission-list {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
}

.permission-list legend {
    padding: 0 0.4rem;
    color: var(--salmon-dark);
    font-weight: 900;
}

.disabled-action {
    opacity: 0.55;
    pointer-events: none;
}

.settings-message {
    margin-bottom: 1rem;
}

.settings-message.good {
    border-color: rgba(36, 107, 47, 0.22);
    background: #e8f6e8;
}

.settings-message.warn {
    border-color: rgba(139, 75, 23, 0.22);
    background: #fff2df;
}

.readiness-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.readiness-list li {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
}

.readiness-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.readiness-list small {
    color: var(--muted);
}

.video-admin-list {
    display: grid;
    gap: 1rem;
}

.video-admin-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(240px, 1fr);
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
}

.video-admin-row legend {
    padding: 0 0.4rem;
    color: var(--salmon-dark);
    font-weight: 900;
}

@media (max-width: 980px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-grid,
    .admin-two-grid,
    .admin-form-grid,
    .cart-layout,
    .invoice-header,
    .invoice-meta,
    .video-admin-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .master-table {
        display: block;
        overflow-x: auto;
    }

    .cart-add-form {
        grid-template-columns: 1fr;
    }
}

@media print {
    .site-header,
    .site-footer,
    .admin-sidebar,
    .top-strip,
    .no-print,
    .button-row,
    .skip-link {
        display: none !important;
    }

    body,
    .admin-body {
        background: #fff;
        color: #000;
    }

    .admin-shell {
        display: block;
    }

    .admin-main,
    .section {
        padding: 0;
    }

    .container {
        width: 100%;
    }

    .invoice-sheet {
        border: 0;
        box-shadow: none;
        padding: 0;
    }
}
