:root {
    --ink: #142028;
    --muted: #66757f;
    --paper: #fffdf8;
    --shell: #f5fbfa;
    --line: #d9e4df;
    --teal: #007c86;
    --teal-dark: #005f66;
    --coral: #e65f42;
    --saffron: #f2b84b;
    --leaf: #4d8a61;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(20, 32, 40, 0.1);
    background: rgba(255, 253, 248, 0.97);
    backdrop-filter: blur(16px);
}

.notice-bar {
    display: grid;
    min-height: 34px;
    place-items: center;
    background: var(--teal-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    min-height: 72px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(230px, 320px) auto;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 900;
}

.brand span:last-child {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 8px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    color: #26343a;
    font-size: 14px;
    font-weight: 800;
}

.main-nav a:hover,
.admin-link:hover {
    color: var(--teal);
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    min-height: 42px;
    padding: 0 44px 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

.search-box input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 124, 134, 0.12);
}

.search-box button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: var(--teal);
    cursor: pointer;
}

.search-box button::before {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    content: "";
}

.search-box button::after {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transform: rotate(45deg);
    content: "";
}

.admin-link {
    padding: 10px 0;
    color: #33434b;
    font-size: 14px;
    font-weight: 800;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #33434b;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.nav-actions a:hover {
    color: var(--teal);
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-menu-toggle,
.mobile-search-toggle,
.mobile-cart-link {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.mobile-cart-link {
    position: relative;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 900;
}

.mobile-cart-icon {
    width: 16px;
    height: 13px;
    display: block;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 2px;
}

.mobile-cart-icon::before {
    position: absolute;
    top: 9px;
    left: 14px;
    width: 12px;
    height: 7px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    content: "";
}

.mobile-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid var(--paper);
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    line-height: 1;
}

.mobile-menu-toggle {
    position: relative;
}

.mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    margin-left: -9px;
    transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 13px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 20px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 27px;
}

.mobile-search-toggle {
    position: relative;
}

.mobile-search-toggle::before {
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
}

.mobile-search-toggle::after {
    position: absolute;
    right: 11px;
    bottom: 12px;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
    content: "";
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-app-bar {
    display: none;
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #c9eef0;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, 0.93) 0%, rgba(255, 253, 248, 0.72) 36%, rgba(255, 253, 248, 0.12) 72%);
    content: "";
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 118px;
}

.hero-copy span,
.section-heading p,
.promo-band span,
.recipe-grid span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 620px;
    margin: 12px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 700;
}

.hero-copy p {
    max-width: 520px;
    margin: 0;
    color: #42515a;
    font-size: 18px;
    line-height: 1.7;
}

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

.primary-action,
.secondary-action,
.card-actions button,
.card-actions a,
.newsletter button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
}

.primary-action,
.newsletter button {
    padding: 0 22px;
    border: 1px solid var(--teal);
    background: var(--teal);
    color: var(--white);
}

.secondary-action {
    padding: 0 22px;
    border: 1px solid rgba(20, 32, 40, 0.22);
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
}

.category-strip {
    width: min(1180px, calc(100% - 32px));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -54px auto 54px;
    position: relative;
    z-index: 4;
}

.category-strip a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid rgba(20, 32, 40, 0.12);
    border-radius: 8px;
    background: var(--white);
    color: #26343a;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(22, 58, 62, 0.12);
}

.section-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 22px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-tile {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border-radius: 8px;
    background: #d8eef0;
    color: var(--white);
}

.feature-tile img,
.promo-band img,
.recipe-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-tile img {
    transition: transform 260ms ease;
}

.feature-tile:hover img {
    transform: scale(1.04);
}

.feature-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 40, 0.02) 20%, rgba(20, 32, 40, 0.78) 100%);
    content: "";
}

.feature-tile span,
.feature-tile h3,
.feature-tile p {
    position: relative;
    z-index: 2;
}

.feature-tile span {
    color: #ffe3a6;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-tile h3 {
    margin: 8px 0;
    font-size: 24px;
}

.feature-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
}

.tile-2 img {
    object-position: 65% center;
}

.tile-3 img {
    object-position: 36% center;
}

.tile-4 img {
    object-position: right center;
}

.promo-band {
    width: min(1240px, calc(100% - 32px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 76px auto;
}

.promo-band article {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 8px;
    background: var(--teal);
}

.promo-band article::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 49, 53, 0.86), rgba(4, 49, 53, 0.18));
    content: "";
}

.promo-band div {
    position: relative;
    z-index: 2;
    max-width: 430px;
    padding: 28px;
    color: var(--white);
}

.promo-band h2,
.newsletter h2 {
    margin: 8px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.12;
}

.promo-band p,
.newsletter p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
}

.products-section {
    padding: 4px 0 72px;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e2f3f1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 6px;
    background: var(--saffron);
    color: #34280d;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-info {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.product-info h3 {
    min-height: 44px;
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.product-info h3 a:hover {
    color: var(--teal);
}

.product-info p {
    min-height: 42px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-row strong {
    color: var(--teal-dark);
    font-size: 18px;
}

.price-row del {
    color: #87949b;
    font-size: 13px;
}

.version-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 28px;
}

.version-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 0 8px;
    border: 1px solid #d7e5e0;
    border-radius: 6px;
    background: #f7fbfa;
    color: #3b4a51;
    font-size: 11px;
    font-weight: 800;
}

.version-row b {
    color: var(--teal-dark);
    font-weight: 900;
}

.card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
    gap: 10px;
}

.card-actions form {
    min-width: 0;
}

.card-actions button {
    width: 100%;
    border: 1px solid var(--teal);
    background: var(--teal);
    color: var(--white);
    cursor: pointer;
}

.card-actions a,
.card-actions .wish-button {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
}

.store-alerts {
    position: fixed;
    top: 116px;
    right: 18px;
    z-index: 60;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 36px));
}

.store-alert {
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(19, 49, 55, 0.16);
    font-weight: 800;
}

.alert-success {
    border-color: #b9ddc7;
    color: #1f6e3e;
}

.alert-error {
    border-color: #f0b4a7;
    color: #b63d28;
}

.alert-info {
    border-color: #badce2;
    color: var(--teal-dark);
}

.collection-band {
    padding: 62px 16px;
    background: #f7eee2;
}

.collection-grid {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto;
}

.collection-grid a {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(88, 65, 33, 0.14);
    border-radius: 8px;
    background: var(--white);
}

.collection-grid strong {
    font-size: 17px;
}

.collection-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.recipe-section {
    padding: 72px 0;
}

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

.recipe-grid article,
.recipe-card {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 8px;
    background: #dfeeed;
}

.recipe-grid article::after,
.recipe-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 40, 0.04) 35%, rgba(20, 32, 40, 0.82) 100%);
    content: "";
}

.recipe-grid div,
.recipe-card div {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: var(--white);
}

.recipe-grid h3 {
    margin: 8px 0;
    font-size: 22px;
}

.recipe-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.5;
}

.recipe-card img {
    transition: transform 240ms ease;
}

.recipe-card:hover img {
    transform: scale(1.04);
}

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

.latest-blog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(19, 49, 55, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.latest-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 124, 134, 0.36);
    box-shadow: 0 20px 48px rgba(19, 49, 55, 0.14);
}

.latest-blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eef7f6;
}

.latest-blog-card div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.latest-blog-card span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.latest-blog-card h3 {
    min-height: 58px;
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.28;
}

.newsletter {
    width: min(1120px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    align-items: center;
    gap: 28px;
    margin: 0 auto 72px;
    padding: 34px;
    border-radius: 8px;
    background: var(--teal-dark);
    color: var(--white);
}

.newsletter form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.newsletter input {
    min-height: 46px;
    min-width: 0;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    outline: none;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.newsletter button {
    border-color: var(--saffron);
    background: var(--saffron);
    color: #33270d;
    cursor: pointer;
}

.site-footer {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 max(16px, calc((100vw - 1240px) / 2));
    border-top: 1px solid var(--line);
    color: #314149;
}

.site-footer span {
    font-weight: 900;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.page-shell,
.product-detail {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 72px;
}

.page-hero {
    position: relative;
    min-height: 320px;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 44px max(16px, calc((100vw - 1240px) / 2));
    background: var(--teal-dark);
    color: var(--white);
}

.compact-hero {
    background: linear-gradient(135deg, var(--teal-dark), var(--leaf));
}

.image-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 54, 59, 0.85), rgba(5, 54, 59, 0.18));
    content: "";
}

.page-hero div {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.page-hero span,
.page-title-row span,
.account-head span,
.contact-layout > div > span {
    color: var(--saffron);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.page-hero h1,
.page-title-row h1,
.account-head h1,
.contact-layout h1 {
    margin: 8px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.1;
}

.page-hero p,
.page-title-row p,
.account-head p,
.contact-layout p,
.muted-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
}

.page-title-row,
.account-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 42px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.product-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #eef7f6;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 160ms ease;
}

.product-stage:hover .main-product-image {
    transform: scale(1.45);
    cursor: zoom-in;
}

.zoom-pane {
    position: absolute;
    inset: 16px 16px auto auto;
    width: min(310px, 44%);
    aspect-ratio: 1 / 1;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-size: 220%;
    box-shadow: 0 20px 48px rgba(19, 49, 55, 0.18);
    pointer-events: none;
}

.zoom-pane.is-visible {
    display: block;
}

.product-video-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #101820;
}

.product-video-frame iframe,
.product-video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
}

.thumb-grid {
    display: grid;
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 124, 134, 0.15);
}

.gallery-thumb:hover {
    transform: translateY(-1px);
}

.thumb-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb {
    display: grid;
    place-items: center;
    gap: 4px;
    color: var(--teal-dark);
    font-weight: 900;
}

.video-thumb span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
}

.video-thumb small {
    font-size: 12px;
}

.product-buy-box {
    align-self: start;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.breadcrumb-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.product-buy-box h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.18;
}

.product-buy-box p,
.detail-tabs p {
    color: var(--muted);
    line-height: 1.65;
}

.detail-price {
    color: var(--teal-dark);
    font-size: 24px;
    font-weight: 900;
}

.buy-form,
.auth-store-card,
.form-panel {
    display: grid;
    gap: 14px;
}

.buy-form label,
.auth-store-card label,
.form-panel label {
    display: grid;
    gap: 7px;
}

.buy-form label span,
.auth-store-card label span,
.form-panel label span {
    color: #34434a;
    font-size: 12px;
    font-weight: 900;
}

.buy-form input,
.buy-form select,
.auth-store-card input,
.form-panel input,
.form-panel textarea,
.track-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

.form-panel textarea {
    padding-top: 12px;
}

.buy-form button,
.auth-store-card button,
.form-panel button,
.summary-panel button,
.track-form button,
.secondary-wide,
.remove-wide {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--teal);
    border-radius: 8px;
    background: var(--teal);
    color: var(--white);
    cursor: pointer;
    font-weight: 900;
    text-decoration: none;
}

.secondary-wide,
.remove-wide {
    width: 100%;
    margin-top: 10px;
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
}

.detail-tabs {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 24px;
    padding-bottom: 72px;
}

.detail-tabs article,
.summary-panel,
.table-panel,
.timeline-panel,
.panel-list,
.form-panel,
.auth-store-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.detail-tabs article,
.timeline-panel,
.panel-list,
.form-panel,
.auth-store-card {
    padding: 22px;
}

.cart-layout,
.checkout-layout,
.dashboard-panels,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.line-list {
    display: grid;
    gap: 12px;
}

.cart-line {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 86px 110px 78px;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.cart-line img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-line h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.cart-line p {
    margin: 0 0 6px;
    color: var(--muted);
}

.cart-line input {
    min-height: 38px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cart-line > span {
    color: var(--teal-dark);
    font-weight: 900;
}

.cart-line button {
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.summary-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.summary-panel h2,
.timeline-panel h2,
.panel-list h2,
.detail-tabs h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.summary-panel dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.summary-panel dl div,
.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.summary-panel dd {
    margin: 0;
    font-weight: 900;
}

.checkout-layout .form-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide-field {
    grid-column: 1 / -1;
}

.checkout-choice {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid #cae2df;
    border-radius: 8px;
    background: #f2fbfa;
}

.checkout-choice strong {
    color: var(--teal-dark);
}

.checkout-choice span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.checkout-account-toggle {
    min-height: 46px;
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.checkout-account-toggle input {
    width: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--teal);
}

.checkout-account-toggle span {
    font-size: 13px !important;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}

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

.blog-card,
.content-sidebar,
.empty-state {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.blog-card {
    overflow: hidden;
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9f5f3;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card div {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.blog-card span,
.article-head span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.blog-card h2 a:hover {
    color: var(--teal);
}

.blog-card p,
.empty-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.content-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 10px;
    padding: 18px;
}

.content-sidebar h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.content-sidebar a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: #33434b;
    font-weight: 800;
}

.content-sidebar a:last-child {
    border-bottom: 0;
}

.article-shell {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 76px;
}

.article-head {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.article-head h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1.12;
}

.article-head p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.65;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.article-tags a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: #33434b;
    font-size: 12px;
    font-weight: 900;
}

.article-image {
    width: 100%;
    max-height: 520px;
    margin-bottom: 28px;
    object-fit: cover;
    border-radius: 8px;
}

.rich-content {
    color: #26343a;
    font-size: 17px;
    line-height: 1.75;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    margin: 1.4em 0 0.45em;
    color: var(--ink);
    line-height: 1.2;
}

.rich-content p {
    margin: 0 0 1.05em;
}

.rich-content img {
    height: auto;
    margin: 22px auto;
    border-radius: 8px;
}

.empty-state {
    padding: 24px;
}

.auth-store-shell {
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: 48px 16px;
    background: #f3faf8;
}

.payu-redirect-shell {
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 48px 16px;
    background: linear-gradient(135deg, #f3faf8, #fff7e8);
}

.auth-store-card {
    width: min(420px, 100%);
}

.payu-box {
    width: min(480px, 100%);
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 22px 60px rgba(19, 49, 55, 0.12);
}

.auth-store-card h1 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
}

.payu-box h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.payu-box span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.payu-box p {
    margin: 0;
    color: var(--muted);
}

.payu-box button {
    min-height: 44px;
    width: 100%;
    border: 1px solid var(--teal);
    border-radius: 8px;
    background: var(--teal);
    color: var(--white);
    cursor: pointer;
    font-weight: 900;
}

.auth-store-card p {
    margin: 0;
    color: var(--muted);
}

.auth-store-card a,
.table-panel a,
.panel-list a {
    color: var(--teal-dark);
    font-weight: 900;
}

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

.account-grid a,
.panel-list a,
.notification-list a {
    display: grid;
    gap: 7px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.account-grid span,
.panel-list span,
.notification-list span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-grid strong {
    font-size: 20px;
}

.panel-list {
    display: grid;
    gap: 10px;
}

.panel-list em,
.notification-list p {
    color: var(--muted);
    font-style: normal;
    line-height: 1.45;
}

.table-panel {
    overflow-x: auto;
}

.table-panel table {
    width: 100%;
    border-collapse: collapse;
}

.table-panel th,
.table-panel td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.timeline-panel {
    margin-top: 24px;
}

.timeline-panel article {
    display: grid;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.timeline-panel article div {
    padding-left: 14px;
    border-left: 3px solid var(--teal);
}

.track-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.notification-list {
    display: grid;
    gap: 12px;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.empty-state {
    color: var(--muted);
}

@media (max-width: 1060px) {
    .nav-shell {
        grid-template-columns: auto minmax(0, 1fr) minmax(220px, 300px) auto;
        gap: 16px;
        padding: 12px 0;
    }

    .hero {
        min-height: 560px;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

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

    .product-detail,
    .cart-layout,
    .checkout-layout,
    .dashboard-panels,
    .contact-layout,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 78px;
    }

    .notice-bar {
        display: none;
    }

    .site-header {
        border-bottom-color: rgba(20, 32, 40, 0.08);
        background: rgba(255, 253, 248, 0.98);
        box-shadow: 0 10px 28px rgba(19, 49, 55, 0.08);
    }

    .nav-shell {
        width: min(100% - 24px, 1240px);
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 66px;
        gap: 12px;
        padding: 10px 0;
    }

    .brand {
        gap: 8px;
    }

    .brand span:last-child {
        max-width: min(48vw, 210px);
    }

    .brand-mark {
        flex: 0 0 auto;
    }

    .mobile-header-actions {
        display: flex;
        justify-self: end;
    }

    .main-nav,
    .nav-actions,
    .search-box {
        display: none;
        grid-column: 1 / -1;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 10px 14px 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 18px 44px rgba(19, 49, 55, 0.14);
    }

    .main-nav a,
    .nav-actions a {
        min-height: 42px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(20, 32, 40, 0.08);
        font-size: 15px;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: -12px;
        padding: 0 14px 12px;
        border: 1px solid var(--line);
        border-top: 0;
        border-radius: 0 0 8px 8px;
        background: var(--white);
        box-shadow: 0 18px 44px rgba(19, 49, 55, 0.14);
        white-space: normal;
    }

    .site-header.menu-open .main-nav,
    .site-header.menu-open .nav-actions {
        display: flex;
    }

    .site-header.search-open .search-box {
        display: block;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 18px 44px rgba(19, 49, 55, 0.14);
    }

    .search-box input {
        min-height: 46px;
    }

    .admin-link {
        justify-self: end;
    }

    .mobile-app-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 80;
        min-height: 62px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(20, 32, 40, 0.1);
        border-radius: 8px;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 16px 44px rgba(19, 49, 55, 0.18);
        backdrop-filter: blur(16px);
    }

    .mobile-app-bar button {
        min-width: 0;
        display: grid;
        place-items: center;
        gap: 3px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: #26343a;
        cursor: pointer;
        font: inherit;
        font-weight: 900;
    }

    .mobile-app-bar button:active,
    .mobile-app-bar button[aria-expanded="true"] {
        background: #eef7f6;
        color: var(--teal-dark);
    }

    .mobile-app-bar small {
        font-size: 11px;
        line-height: 1;
    }

    .app-icon {
        position: relative;
        width: 24px;
        height: 24px;
        display: block;
    }

    .app-back::before,
    .app-forward::before {
        position: absolute;
        top: 6px;
        width: 11px;
        height: 11px;
        border: 2px solid currentColor;
        border-top: 0;
        border-right: 0;
        content: "";
    }

    .app-back::before {
        left: 7px;
        transform: rotate(45deg);
    }

    .app-forward::before {
        right: 7px;
        transform: rotate(225deg);
    }

    .app-menu::before,
    .app-menu::after {
        position: absolute;
        left: 3px;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        content: "";
    }

    .app-menu::before {
        top: 8px;
        box-shadow: 0 5px 0 currentColor;
    }

    .app-menu::after {
        top: 18px;
    }

    .hero {
        min-height: 620px;
        align-items: end;
    }

    .hero img {
        object-position: 58% center;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(255, 253, 248, 0.1) 8%, rgba(255, 253, 248, 0.94) 62%);
    }

    .hero-copy {
        padding: 230px 0 86px;
    }

    .hero-copy h1 {
        max-width: 460px;
        font-size: 38px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .category-strip {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-bottom: 44px;
        padding-bottom: 8px;
    }

    .category-strip a {
        flex: 0 0 auto;
    }

    .tile-grid,
    .promo-band,
    .product-grid,
    .collection-grid,
    .recipe-grid,
    .latest-blog-grid,
    .newsletter,
    .detail-tabs,
    .account-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-head h1 {
        font-size: 34px;
    }

    .rich-content {
        font-size: 16px;
    }

    .page-title-row,
    .account-head {
        flex-direction: column;
    }

    .cart-line {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .cart-line input,
    .cart-line > span,
    .cart-line button {
        grid-column: 2;
    }

    .checkout-layout .form-panel,
    .track-form {
        grid-template-columns: 1fr;
    }

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

    .product-stage {
        order: 1;
    }

    .thumb-grid {
        order: 2;
        grid-template-columns: repeat(5, minmax(72px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .zoom-pane {
        display: none !important;
    }

    .product-stage:hover .main-product-image {
        transform: none;
    }

    .feature-tile {
        min-height: 310px;
    }

    .promo-band {
        margin: 56px auto;
    }

    .promo-band article,
    .recipe-grid article,
    .recipe-card {
        min-height: 280px;
    }

    .newsletter {
        padding: 24px;
    }

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

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 440px) {
    .brand span:last-child {
        max-width: 132px;
        font-size: 13px;
    }

    .brand-mark,
    .mobile-menu-toggle,
    .mobile-search-toggle,
    .mobile-cart-link {
        width: 38px;
        height: 38px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-actions a {
        width: 100%;
    }

    .section-heading h2,
    .promo-band h2,
    .newsletter h2 {
        font-size: 28px;
    }

    .card-actions {
        grid-template-columns: 1fr;
    }
}
