@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --ink: #012f23;
    --muted: #56625e;
    --soft: #eef8f6;
    --soft-strong: #e8f5f2;
    --line: #dbe8e5;
    --green: #003d2b;
    --green-mid: #2f7f45;
    --mint: #bdeccc;
    --gold: #080704;
    --white: #ffffff;
    --font-main: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--ink);
    background: #f6fbfb;
}

button,
input {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    min-height: 78px;
    padding: 0 42px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: rgba(247, 252, 250, 0.96);
    border-bottom: 1px solid #dce8e5;
    box-shadow: 0 8px 24px rgba(0, 61, 43, 0.05);
}

.brand {
    width: 105px;
    height: 46px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fffce6;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .18));
}

.brand::before,
.brand::after {
    content: "";
    position: absolute;
    inset: 5px 2px;
    border-radius: 999px 18px 999px 18px;
    background: linear-gradient(135deg, #58aa26, #0d651c 50%, #0a421b);
    border: 3px solid #e2d23a;
}

.brand::after {
    inset: 11px 10px 7px;
    border-radius: 12px;
    background: #d22329;
    border: 2px solid #f3e95a;
    z-index: 1;
}

.brand-leaf {
    z-index: 2;
    width: 19px;
    height: 19px;
    margin-right: 3px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1c7e26;
    border: 2px solid #cfe34a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.brand-copy {
    z-index: 2;
    display: grid;
    gap: 0;
    text-align: center;
    line-height: 1;
}

.brand-copy strong {
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
}

.brand-copy small {
    margin-top: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .4px;
}

.image-brand {
    width: 118px;
    height: 52px;
    filter: none;
}

.image-brand::before,
.image-brand::after {
    display: none;
}

.image-brand img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 auto;
    padding: 6px;
    background: #eef7f5;
    border: 1px solid #dce8e5;
    border-radius: 999px;
    font-size: 14px;
    color: #3f4d49;
}

.main-nav a {
    position: relative;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 650;
    line-height: 1;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green);
    background: rgba(0, 61, 43, 0.07);
}

.main-nav a.active {
    color: #fff;
    background: var(--green);
    font-weight: 750;
}

.main-nav a.active::after {
    display: none;
}

.mobile-menu-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: none;
    place-items: center;
    color: var(--ink);
    background: #eaf2f2;
    border: 1px solid #d8e6e2;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.search-box {
    width: 245px;
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7774;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 61, 43, 0.04);
}

.search-box svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.3;
}

.search-box input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 500 13px/1 var(--font-main);
}

.search-box input::placeholder {
    color: #7c8b88;
}

.icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 61, 43, 0.04);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
    color: var(--green);
    border-color: #b8d2ca;
    transform: translateY(-1px);
}

.icon-btn svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.3;
}

.cart-count,
.wishlist-count {
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    position: absolute;
    top: 1px;
    right: -2px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #c69300;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.wishlist-count {
    background: #d92d3a;
}

.toast-stack {
    width: min(340px, calc(100vw - 28px));
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 3000;
    display: grid;
    gap: 10px;
}

.toast-message {
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: var(--green);
    border-radius: 7px;
    box-shadow: 0 12px 26px rgba(7, 36, 29, .2);
    font-size: 13px;
    font-weight: 800;
    transform: translateY(12px);
    opacity: 0;
    animation: toast-in .22s ease forwards;
}

.toast-message.error {
    background: #d92d3a;
}

.toast-message svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.toast-message.is-hiding {
    animation: toast-out .2s ease forwards;
}

@keyframes toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateY(12px);
    }
}

.user-menu {
    position: relative;
    padding-bottom: 8px;
}

.user-menu-trigger {
    min-width: 104px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 61, 43, 0.04);
    font: 700 12px/1 var(--font-main);
    cursor: pointer;
}

.user-menu-trigger svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.3;
}

.user-menu-trigger span {
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-logout-link,
.user-menu-dropdown {
    min-width: 108px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2000;
    display: none;
}

.user-logout-link {
    height: 36px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(7, 36, 29, .16);
    font-size: 12px;
    font-weight: 800;
}

.user-menu-dropdown {
    min-width: 134px;
    padding: 6px;
    background: #fff;
    border: 1px solid #d8e6e2;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(7, 36, 29, .16);
}

.user-menu-dropdown a {
    height: 34px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #0e2b22;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
}

.user-menu-dropdown a:hover {
    color: #fff;
    background: var(--green);
}

.user-menu:hover .user-logout-link,
.user-menu:focus-within .user-logout-link {
    display: inline-flex;
}

.user-menu:hover .user-menu-dropdown,
.user-menu:focus-within .user-menu-dropdown {
    display: grid;
}

.hero {
    min-height: 454px;
    padding: 60px 31px 52px;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
    align-items: center;
    gap: 70px;
    background: linear-gradient(90deg, #edf9f8 0%, #eff9f7 47%, #f4fbfa 100%);
}

.hero-content {
    max-width: 585px;
}

.eyebrow {
    width: max-content;
    max-width: 100%;
    margin: 0 0 24px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4c806a;
    background: var(--mint);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.eyebrow svg {
    width: 12px;
    height: 12px;
}

h1 {
    max-width: 590px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(40px, 4.8vw, 48px);
    line-height: 1.11;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-title span {
    display: block;
}

.hero-title span:not(:first-child) {
    color: #d2aa23;
}

.hero-text {
    max-width: 440px;
    margin: 23px 0 33px;
    color: #4f5e5a;
    font-size: 14px;
    line-height: 1.45;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-width: 181px;
    height: 38px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.btn.primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 5px 12px rgba(0, 61, 43, .17);
}

.btn.secondary {
    color: #102d26;
    background: transparent;
    border: 1px solid #9caaa7;
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 520px);
    margin-top: 2px;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 520 / 360;
    display: block;
    object-fit: cover;
    object-position: 50% 54%;
}

.rating-card {
    min-width: 136px;
    height: 70px;
    padding: 12px 16px;
    position: absolute;
    left: -29px;
    bottom: -29px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    border-radius: 8px;
    box-shadow: 0 9px 23px rgba(22, 46, 39, .14);
    backdrop-filter: blur(10px);
}

.rating-card svg {
    width: 23px;
    height: 23px;
    fill: var(--gold);
    color: var(--gold);
}

.rating-card strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.rating-card span {
    display: block;
    margin-top: 2px;
    color: #69716f;
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.trust-strip {
    min-height: 63px;
    padding: 0 13px;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 36px;
    color: #71817e;
    background: #f2faf9;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip p {
    margin: 0;
    color: #8c9895;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.trust-strip div {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    align-items: center;
    gap: 34px;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.trust-strip svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
}

.categories-section {
    padding: 45px 38px 50px;
    background: #f4fbfb;
}

.section-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.section-heading h2 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.section-heading p {
    margin: 0;
    color: #3f4d49;
    font-size: 14px;
    line-height: 1.45;
}

.see-all-btn {
    min-width: 121px;
    height: 43px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    border: 1px solid #9ba9a6;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.see-all-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr .485fr .485fr;
    grid-template-rows: 229px 229px;
    gap: 13px;
}

.category-card {
    min-height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 7px;
    background: #dfe8e5;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .2);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 47, 35, 0) 38%, rgba(4, 47, 35, .62) 100%);
}

.category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .35s ease;
}

.category-card:hover img {
    transform: scale(1.035);
}

.category-card span {
    position: relative;
    z-index: 1;
    padding: 0 18px 22px;
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .28);
}

.category-large {
    grid-row: 1 / span 2;
}

.category-large span {
    padding: 0 19px 84px;
}

.category-large em {
    width: 152px;
    height: 38px;
    position: absolute;
    left: 19px;
    bottom: 19px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .12);
}

.category-wide {
    grid-column: 2 / span 2;
}

.category-wide img {
    object-position: 50% 42%;
}

.category-wide span {
    padding-bottom: 22px;
}

.standard-section {
    padding: 45px 38px 72px;
    text-align: center;
    background: #eaf4f6;
    border-top: 1px solid #dceaea;
}

.standard-section h2 {
    margin: 0 0 54px;
    color: var(--ink);
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.standard-item {
    display: grid;
    justify-items: center;
}

.standard-icon {
    width: 63px;
    height: 63px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    color: #32634e;
    background: #baf0d2;
    border-radius: 8px;
}

.standard-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.standard-item h3 {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.standard-item p {
    max-width: 330px;
    margin: 0;
    color: #4c5654;
    font-size: 14px;
    line-height: 1.38;
}

.best-sellers-section {
    padding: 24px 40px 32px;
    background: #f1f9fb;
}

.best-sellers-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.best-sellers-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-controls button {
    width: 22px;
    height: 22px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: #f7fcfc;
    border: 1px solid #c5d3d0;
    border-radius: 50%;
    cursor: pointer;
}

.slider-controls button:disabled {
    opacity: .45;
    cursor: default;
}

.slider-controls svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
}

.product-viewport {
    overflow: hidden;
}

.product-grid {
    display: flex;
    gap: 18px;
    transition: transform .32s ease;
    will-change: transform;
}

.product-card {
    flex: 0 0 calc((100% - 54px) / 4);
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e1ebe8;
    box-shadow: 0 10px 24px rgba(13, 53, 41, .12);
    transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(13, 53, 41, .16);
}

.product-image {
    height: 252px;
    position: relative;
    overflow: hidden;
    background: #dbe9e4;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform .35s ease;
}

.product-image-link {
    width: 100%;
    height: 100%;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-card:nth-child(1) .product-image img,
.product-card:nth-child(3) .product-image img,
.product-card:nth-child(4) .product-image img {
    object-position: 50% 54%;
}

.product-card:nth-child(2) .product-image img {
    object-position: 48% 48%;
}

.product-image span {
    height: 19px;
    padding: 0 12px;
    position: absolute;
    top: 11px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
}

.wishlist-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    position: absolute;
    top: 11px;
    right: 11px;
    display: grid;
    place-items: center;
    color: #d92d3a;
    background: #fff;
    border: 1px solid #e8d8d8;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(12, 42, 34, .12);
    cursor: pointer;
}

.wishlist-btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.4;
}

.wishlist-btn.is-wishlisted {
    color: #fff;
    background: #f02f40;
    border-color: #f02f40;
}

.wishlist-btn.is-wishlisted svg {
    fill: currentColor;
}

.quick-view-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    position: absolute;
    top: 42px;
    right: 11px;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #fff;
    border: 1px solid #d8e5e1;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(12, 42, 34, .12);
}

.quick-view-btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.4;
}

.product-info {
    padding: 17px 17px 17px;
}

.product-detail-area {
    display: block;
}

.product-detail-area:hover h3,
.product-detail-area:hover .product-price,
.product-detail-area:hover strong {
    color: var(--green-mid);
}

.product-info p {
    margin: 7px 0 12px;
    color: #14912d;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
}

.product-info h3 {
    min-height: 19px;
    margin: 6px 0 9px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
}

.product-price {
    display: block;
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.product-rating {
    min-height: 14px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #d0a21a;
    font-size: 10px;
    font-weight: 800;
}

.product-rating small {
    color: #687572;
    font-size: 9px;
    font-weight: 600;
}

.add-cart-btn {
    width: 100%;
    height: 31px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
}

.add-cart-btn.added {
    background: #2f7f45;
    border-color: #2f7f45;
}

.shop-page {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: 232px 1fr;
    background: #fff;
}

.shop-sidebar {
    padding: 61px 24px 32px 38px;
    border-right: 1px solid #e2e8e6;
}

.shop-sidebar h2 {
    margin: 0 0 17px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
}

.shop-sidebar a {
    height: 32px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #203b34;
    font-size: 12px;
    font-weight: 500;
}

.shop-sidebar a.active {
    color: #fff;
    background: var(--green);
}

.shop-products {
    padding: 57px 38px 56px 29px;
}

.shop-toolbar {
    margin-bottom: 56px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.shop-toolbar h1 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 29px;
    line-height: 1.05;
    font-weight: 800;
}

.shop-toolbar p {
    margin: 0;
    color: #41504c;
    font-size: 12px;
    line-height: 1.4;
}

.sort-select {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a8582;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.sort-select select,
.pack-select {
    height: 33px;
    padding: 0 36px 0 13px;
    color: #172c26;
    background: #fff;
    border: 1px solid #8c9996;
    border-radius: 4px;
    outline: 0;
    font: 600 12px/1 var(--font-main);
}

.sort-select select {
    min-width: 128px;
}

.shop-grid {
    max-width: 887px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px 29px;
}

.shop-product-card {
    flex: initial;
    min-width: 0;
    border: 1px solid #dce3e1;
    box-shadow: 0 12px 28px rgba(15, 48, 39, .13);
}

.shop-product-card .product-image {
    height: 275px;
}

.shop-product-card .product-image img {
    object-fit: cover;
    object-position: 50% 50%;
}

.shop-product-card .product-info {
    padding: 19px 20px 18px;
}

.shop-product-card .product-price {
    font-size: 21px;
}

.shop-product-card .product-info h3 {
    min-height: 0;
    margin: 8px 0 12px;
    font-size: 14px;
}

.shop-product-card .product-info p {
    margin: 3px 0 13px;
}

.shop-product-card .product-rating {
    min-height: 13px;
}

.pack-select {
    width: 100%;
    margin-bottom: 10px;
}

.shop-product-card .add-cart-btn {
    height: 30px;
    position: relative;
}

.shop-empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 34px;
    color: #40534e;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.cart-page {
    min-height: calc(100vh - 74px);
    background: #f6fbfb;
}

.cart-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 28px 70px;
}

.cart-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.cart-heading h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.cart-heading p {
    margin: 0;
    color: #53625d;
    font-size: 13px;
}

.cart-heading > a,
.cart-empty a {
    height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.guest-checkout-note {
    margin: -8px 0 22px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #24453a;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.guest-checkout-note svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex: 0 0 auto;
}

.guest-checkout-note span {
    flex: 1;
}

.guest-checkout-note button {
    min-width: 84px;
    min-height: 34px;
    padding: 0 14px;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    padding: 16px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 124px 110px 38px;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(11, 42, 34, .08);
}

.cart-item-image {
    width: 96px;
    height: 96px;
    display: block;
    overflow: hidden;
    background: #eef5f3;
    border-radius: 6px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.cart-item-info h2 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.cart-item-info span,
.cart-item-info strong {
    display: block;
}

.cart-item-info span {
    margin-bottom: 8px;
    color: #53625d;
    font-size: 12px;
    font-weight: 700;
}

.cart-item-info strong,
.cart-line-total {
    color: var(--ink);
    font-size: 17px;
}

.cart-quantity {
    height: 36px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    overflow: hidden;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
}

.cart-quantity button,
.cart-quantity input {
    border: 0;
    background: #fff;
    text-align: center;
}

.cart-quantity button {
    cursor: pointer;
}

.cart-quantity input {
    width: 56px;
    outline: 0;
    font-weight: 800;
}

.cart-remove-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #d92d3a;
    background: #fff1f2;
    border: 1px solid #f2c6cb;
    border-radius: 50%;
    cursor: pointer;
}

.cart-remove-btn svg {
    width: 17px;
    height: 17px;
}

.cart-summary,
.cart-empty {
    padding: 24px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(11, 42, 34, .08);
}

.cart-summary h2,
.cart-empty h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.15;
}

.cart-summary div {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #53625d;
    font-size: 13px;
}

.cart-summary strong {
    color: var(--ink);
}

.cart-shipping-state {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.cart-shipping-state span {
    color: #53625d;
    font-size: 13px;
}

.cart-shipping-state select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
    font: 600 13px/1 var(--font-main);
    outline: 0;
}

.cart-shipping-note {
    display: block;
    margin: -6px 0 12px;
    color: #6b7774;
    font-size: 11px;
    line-height: 1.4;
}

.cart-summary hr {
    margin: 18px 0;
    border: 0;
    border-top: 1px solid #dce8e5;
}

.cart-summary .cart-total strong {
    font-size: 21px;
}

.cart-summary button,
.checkout-link-btn {
    width: 100%;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.checkout-page {
    min-height: calc(100vh - 74px);
    padding: 42px 22px 70px;
    background: #f6fbfb;
}

.search-page {
    min-height: calc(100vh - 74px);
    padding: 44px 28px 70px;
    background: #f6fbfb;
}

.search-results-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.search-heading {
    margin-bottom: 28px;
}

.search-heading h1 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.1;
}

.search-heading p {
    margin: 0;
    color: #53625d;
    font-size: 14px;
}

.profile-page {
    min-height: calc(100vh - 74px);
    background: #f6fbfb;
}

.profile-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 28px 70px;
}

.profile-form-card {
    display: grid;
    gap: 20px;
}

.profile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.profile-actions a,
.profile-actions button {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.profile-actions a {
    color: var(--green);
    background: #fff;
    border: 1px solid #bdd0ca;
}

.profile-actions button {
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    cursor: pointer;
}

.profile-actions svg {
    width: 16px;
    height: 16px;
}

.checkout-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.checkout-heading {
    margin-bottom: 24px;
}

.checkout-heading h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.checkout-heading p {
    margin: 0;
    color: #53625d;
    font-size: 13px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.checkout-card,
.checkout-summary {
    padding: 24px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(11, 42, 34, .08);
}

.checkout-card h2,
.checkout-summary h2 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.15;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checkout-grid label {
    display: grid;
    gap: 8px;
}

.checkout-grid span {
    color: #0d3027;
    font-size: 12px;
    font-weight: 800;
}

.checkout-grid input,
.checkout-grid select,
.checkout-grid textarea {
    width: 100%;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
    outline: 0;
    color: #061f18;
    background: #fff;
    font: 500 13px/1.45 var(--font-main);
}

.checkout-grid input {
    height: 48px;
    padding: 0 14px;
}

.checkout-grid select {
    height: 48px;
    padding: 0 14px;
}

.checkout-grid textarea {
    padding: 13px 14px;
    resize: vertical;
}

.checkout-product-row,
.checkout-total-row {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #53625d;
    font-size: 13px;
}

.checkout-product-row strong,
.checkout-total-row strong {
    color: var(--ink);
}

.checkout-summary hr {
    margin: 18px 0;
    border: 0;
    border-top: 1px solid #dce8e5;
}

.checkout-total-row strong {
    font-size: 21px;
}

.checkout-shipping-row strong {
    font-size: 15px;
}

.checkout-shipping-note {
    display: block;
    margin: -4px 0 14px;
    color: #6b7774;
    font-size: 11px;
    line-height: 1.4;
}

.checkout-grand-total-row {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #dce8e5;
    color: var(--ink);
    font-weight: 800;
}

.shipping-admin-help {
    margin: -8px 0 20px;
    color: #53625d;
    font-size: 13px;
    line-height: 1.45;
}

.shipping-rate-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.shipping-rate-table input {
    width: 116px;
    height: 38px;
    padding: 0 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
    font: 700 13px/1 var(--font-main);
}

.shipping-base-rate-list {
    display: grid;
    margin: 8px -24px -24px;
    border-top: 1px solid #dce8e5;
}

.shipping-base-rate-list label {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(220px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 30px 24px;
    border-bottom: 1px solid #dce8e5;
}

.shipping-base-rate-list span {
    color: var(--green);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.shipping-base-rate-list input {
    width: min(100%, 440px);
    height: 44px;
    padding: 0 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #8e9895;
    border-radius: 4px;
    font: 500 22px/1 var(--font-main);
}

.settings-editor {
    max-width: 920px;
}

.settings-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.settings-form-grid label,
.settings-logo-row label {
    display: grid;
    gap: 8px;
}

.settings-form-grid span,
.settings-logo-row span {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.settings-form-grid b {
    color: #c5292f;
}

.settings-form-grid input,
.settings-form-grid textarea,
.settings-logo-row input {
    width: 100%;
    border: 1px solid #cfded8;
    border-radius: 6px;
    padding: 12px 13px;
    color: #13231f;
    font: inherit;
    background: #fff;
}

.settings-form-grid textarea {
    resize: vertical;
    min-height: 104px;
}

.settings-full-field {
    grid-column: 1 / -1;
}

.settings-logo-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.settings-logo-preview {
    min-height: 112px;
    border: 1px solid #d9e6e0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #f7fbfa;
}

.settings-logo-preview img {
    max-width: 118px;
    max-height: 84px;
    object-fit: contain;
}

.settings-logo-row small {
    color: #64736e;
    font-size: 12px;
}

@media (max-width: 760px) {
    .shipping-base-rate-list label {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
    }

    .shipping-base-rate-list span {
        font-size: 20px;
    }

    .settings-form-grid,
    .settings-logo-row {
        grid-template-columns: 1fr;
    }
}

.payment-method-box {
    margin: 22px 0;
    padding: 14px;
    display: grid;
    gap: 5px;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 6px;
}

.payment-method-box strong {
    color: var(--ink);
    font-size: 13px;
}

.payment-method-box span {
    color: #53625d;
    font-size: 12px;
    font-weight: 700;
}

.payment-method-box small {
    color: #6b7774;
    font-size: 11px;
    line-height: 1.4;
}

.checkout-notice {
    margin: -8px 0 18px;
    padding: 13px 15px;
    color: #24453a;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.checkout-summary button {
    width: 100%;
    height: 44px;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.order-success-card {
    text-align: center;
}

.order-success-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
}

.order-number-box {
    margin: 20px 0;
    padding: 13px;
    color: var(--ink);
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 6px;
    font-size: 13px;
}

.order-email-note {
    margin: 0 0 18px;
    color: #53625d;
    font-size: 13px;
    line-height: 1.4;
}

.order-track-note {
    max-width: 420px;
    margin: -6px auto 22px;
    padding: 12px 14px;
    color: #24453a;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.order-success-btn {
    height: 42px;
    margin: 4px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.order-success-btn.secondary {
    color: var(--green);
    background: #eaf4f1;
    border: 1px solid #cddfda;
}

.cart-empty {
    text-align: center;
}

.cart-empty p {
    margin: 0 0 20px;
    color: #53625d;
}

.auth-page {
    min-height: 100vh;
    padding: 42px 20px;
    display: grid;
    place-items: center;
    background: #eef7f9;
}

.auth-card {
    width: min(100%, 430px);
    padding: 34px;
    background: #fff;
    border: 1px solid #d8e6e2;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(10, 44, 35, .12);
}

.auth-logo {
    width: 104px;
    height: 48px;
    margin-bottom: 24px;
    display: block;
}

.auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-card h1 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
}

.auth-card > p {
    margin: 0 0 24px;
    color: #53625d;
    font-size: 13px;
    line-height: 1.45;
}

.auth-card form {
    display: grid;
    gap: 16px;
}

.auth-card label {
    display: grid;
    gap: 8px;
}

.auth-card label > span {
    color: #0d3027;
    font-size: 12px;
    font-weight: 800;
}

.auth-card label strong {
    color: #cf2636;
}

.auth-card input[type="email"],
.auth-card input[type="text"],
.auth-card input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    color: #061f18;
    background: #fff;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
    outline: 0;
    font: 500 13px/1.45 var(--font-main);
}

.auth-card input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 61, 43, .08);
}

.auth-card button[type="submit"] {
    height: 46px;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #53625d;
    font-size: 12px;
}

.auth-check {
    display: inline-flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 8px !important;
}

.auth-check input {
    accent-color: var(--green);
}

.auth-row a,
.auth-switch a {
    color: var(--green);
    font-weight: 800;
}

.auth-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #8d1b26;
    background: #fff1f2;
    border: 1px solid #f2c6cb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.auth-alert-success,
.auth-alert[data-type="success"] {
    color: #15583e;
    background: #dff6e8;
    border-color: #bfe8c9;
}

.auth-switch {
    margin: 22px 0 0 !important;
    color: #53625d;
    text-align: center;
}

.modal-open {
    overflow: hidden;
}

.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .22);
}

.auth-modal-backdrop[hidden] {
    display: none;
}

.auth-modal {
    width: min(100%, 468px);
    max-height: min(88vh, 620px);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px 34px 30px;
    background: #fff;
    border: 0;
    border-radius: 7px;
    box-shadow: 0 18px 45px rgba(9, 31, 25, .18);
}

.auth-modal-close {
    width: 24px;
    height: 24px;
    padding: 0;
    position: absolute;
    top: 28px;
    right: 28px;
    display: grid;
    place-items: center;
    color: #526660;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.auth-modal-close svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
}

.auth-modal-top {
    min-height: 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.auth-switch-pill {
    min-width: 112px;
    height: 42px;
    margin-right: 30px;
    color: #1f2d2a;
    background: transparent;
    border: 1px solid #23312d;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.auth-modal-form {
    display: none;
    gap: 16px;
}

.auth-modal-form.active {
    display: grid;
}

.auth-modal-form h2 {
    margin: 0 36px 8px 0;
    color: var(--green);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.auth-modal-form[data-auth-form="forgot"] h2 {
    margin-right: 36px;
}

.auth-modal-form[data-auth-form="register"] h2 {
    margin-right: 36px;
}

.auth-helper-text {
    margin: -3px 0 18px;
    color: #8a9693;
    font-size: 11px;
    line-height: 1.4;
}

.auth-modal-form label {
    position: relative;
    display: grid;
    gap: 8px;
}

.auth-modal-form span {
    color: #20322d;
    font-size: 11px;
    font-weight: 800;
}

.auth-modal-form strong {
    color: #cf2636;
}

.auth-modal-form input {
    width: 100%;
    height: 39px;
    padding: 0 13px;
    color: #17352d;
    background: #eef7f8;
    border: 1px solid #c7d8d8;
    border-radius: 5px;
    outline: 0;
    font: 600 12px/1.45 var(--font-main);
}

.auth-modal-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 61, 43, .08);
}

.auth-modal-form button[type="submit"] {
    height: 46px;
    margin-top: 7px;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.password-field input {
    padding-right: 50px;
}

.password-field button {
    width: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 8px;
    bottom: 4px;
    display: grid;
    place-items: center;
    color: #22342f;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.password-field svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
}

.auth-row {
    margin-top: -5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.auth-check {
    display: inline-flex !important;
    align-items: center;
    gap: 6px !important;
}

.auth-check input {
    width: 13px;
    height: 13px;
    accent-color: var(--green);
}

.auth-check span,
.auth-inline-link,
.auth-form-switch {
    color: #63726f;
    font-size: 12px;
    font-weight: 600;
}

.auth-inline-link,
.auth-form-switch button {
    padding: 0;
    color: #3d5550;
    background: transparent;
    border: 0;
    font: 700 12px/1 var(--font-main);
    cursor: pointer;
}

.auth-form-switch {
    margin: 3px 0 0;
    text-align: center;
}

.auth-form-switch button {
    color: #006bff;
}

.auth-divider {
    margin: 20px 0 2px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 19px;
    color: #6d666b;
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    background: #ddd6d2;
}

.auth-reset-block {
    display: grid;
    gap: 12px;
}

.auth-reset-block h3 {
    margin: 0;
    color: #342d39;
    font-size: 16px;
    line-height: 1.2;
}

.auth-reset-btn {
    height: 46px;
    color: #342d39;
    background: #fff;
    border: 1px solid #342d39;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.auth-text-btn {
    width: max-content;
    padding: 0;
    color: var(--green);
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.auth-reset-link {
    margin-top: 8px;
    display: inline-flex;
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
}

.auth-modal-message {
    margin: 0 0 14px;
    padding: 11px 12px;
    color: #8d1b26;
    background: #fff1f2;
    border: 1px solid #f2c6cb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.auth-modal-message[data-type="success"] {
    color: #0f6b2a;
    background: #eefaf1;
    border-color: #bfe8c9;
}

@media (max-width: 760px) {
    .auth-modal-backdrop {
        padding: 14px;
        align-items: start;
    }

    .auth-modal {
        width: 100%;
        max-height: calc(100vh - 28px);
        margin-top: 28px;
        padding: 30px 20px 26px;
        border-radius: 8px;
    }

    .auth-modal-close {
        top: 12px;
        right: 12px;
    }

    .auth-modal-form h2 {
        margin-top: 0;
        margin-right: 32px;
        font-size: 22px;
    }

    .auth-modal-form span {
        font-size: 11px;
    }

    .auth-modal-form input {
        height: 41px;
        font-size: 12px;
    }

    .auth-modal-form button[type="submit"],
    .auth-reset-btn {
        height: 46px;
        font-size: 13px;
    }

    .password-field button {
        bottom: 5px;
    }

    .auth-divider {
        margin-top: 24px;
        font-size: 14px;
    }

    .auth-reset-block h3 {
        font-size: 17px;
    }
}

.detail-page {
    min-height: calc(100vh - 74px);
    background: #eef7f9;
}

.detail-hero {
    padding: 47px 38px 78px;
    display: grid;
    grid-template-columns: minmax(360px, 572px) minmax(360px, 1fr);
    gap: 38px;
    background: #fff;
    overflow-x: hidden;
}

.detail-gallery {
    display: grid;
    gap: 18px;
    min-width: 0;
    max-width: 100%;
}

.detail-main-image {
    width: 100%;
    max-width: 100%;
    min-height: 526px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid #9baaa6;
    border-radius: 8px;
}

.detail-main-image > span {
    height: 19px;
    padding: 0 12px;
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    color: #2f7f45;
    background: #d9f4e7;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.detail-main-image img {
    width: min(75%, 370px);
    max-width: 88%;
    height: auto;
    max-height: 430px;
    display: block;
    object-fit: contain;
}

.detail-thumbnails {
    padding-left: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.detail-thumbnails button {
    width: 64px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #c7d3d0;
    border-radius: 7px;
    cursor: pointer;
}

.detail-thumbnails button.active {
    border-color: #9ac63d;
    box-shadow: 0 0 0 2px #c9f24c inset;
}

.detail-thumbnails img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.detail-info {
    padding-top: 2px;
    min-width: 0;
}

.breadcrumb {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #59645f;
    font-size: 10px;
    font-weight: 700;
}

.breadcrumb strong {
    color: var(--ink);
}

.detail-info h1 {
    margin: 0 0 15px;
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
}

.detail-price {
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.detail-price strong {
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
}

.detail-price s {
    color: #626f6b;
    font-size: 13px;
    font-weight: 700;
}

.detail-price span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.quality-pill {
    width: min(330px, 100%);
    min-height: 54px;
    margin-bottom: 18px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 10px;
}

.quality-marks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.veg-mark-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.fssai-mark-img {
    width: 62px;
    height: 26px;
    object-fit: contain;
}

.quality-pill strong,
.quality-pill span {
    display: block;
}

.quality-pill strong {
    margin-bottom: 5px;
    color: #27513c;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
}

.quality-pill span {
    color: #424f4a;
    font-size: 12px;
    line-height: 1.2;
}

.detail-copy {
    max-width: 570px;
    margin: 0 0 19px;
    color: #44534f;
    font-size: 13px;
    line-height: 1.75;
}

.detail-tags {
    margin-bottom: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-tags span {
    min-height: 28px;
    height: auto;
    max-width: 100%;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    color: #2d7a45;
    background: #c7f0d9;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;
}

.purchase-row {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.quantity-control,
.detail-pack-select {
    display: grid;
    gap: 8px;
}

.quantity-control > span,
.detail-pack-select > span {
    color: #263b35;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.quantity-control div {
    height: 34px;
    display: grid;
    grid-template-columns: 36px 42px 36px;
    overflow: hidden;
    border: 1px solid #c0cbc8;
    border-radius: 5px;
}

.quantity-control button,
.quantity-control input {
    border: 0;
    background: #fff;
    text-align: center;
}

.quantity-control button {
    cursor: pointer;
}

.quantity-control input {
    width: 42px;
    outline: 0;
    font-size: 12px;
    font-weight: 700;
}

.detail-pack-select select {
    width: 148px;
    height: 34px;
    padding: 0 36px 0 14px;
    border: 1px solid #c0cbc8;
    border-radius: 5px;
    background: #fff;
    font: 700 12px/1 var(--font-main);
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.detail-add-btn,
.detail-buy-btn {
    height: 54px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.detail-add-btn {
    width: min(260px, 100%);
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
}

.detail-add-btn.added {
    color: #fff;
    background: #2f7f45;
    border-color: #2f7f45;
}

.detail-buy-btn {
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
}

.detail-benefits {
    margin-top: 55px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dce7e4;
}

.detail-benefits div {
    display: grid;
    justify-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
}

.detail-benefits svg {
    width: 17px;
    height: 17px;
}

.detail-tabs-section {
    padding: 46px 38px 60px;
}

.detail-tabs {
    margin-bottom: 24px;
    display: flex;
    gap: 28px;
    border-bottom: 1px solid #cfdeda;
}

.detail-tabs button {
    padding: 0 0 14px;
    color: #53625d;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.detail-tabs button.active {
    color: var(--ink);
    border-bottom-color: var(--green);
    font-weight: 800;
}

.detail-tab-panel {
    display: none;
}

.detail-tab-panel.active {
    display: block;
}

.detail-tabs-section h2 {
    margin: 0 0 28px;
    font-size: 30px;
    line-height: 1.1;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 66px;
}

.component-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
}

.component-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #2f7f45;
    background: #bdeccc;
    border-radius: 9px;
}

.component-icon svg {
    width: 18px;
    height: 18px;
}

.component-item h3 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.component-item p {
    max-width: 410px;
    margin: 0;
    color: #4f5d59;
    font-size: 11px;
    line-height: 1.35;
}

.nutrition-content-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nutrition-panel {
    padding: 22px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #d5e5e1;
    border-radius: 8px;
}

.nutrition-panel-wide {
    grid-column: 1 / -1;
}

.nutrition-panel h3 {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.nutrition-panel p {
    max-width: 850px;
    margin: 0 0 10px;
    color: #43514d;
    font-size: 13px;
    line-height: 1.65;
}

.nutrition-panel p:last-child {
    margin-bottom: 0;
}

.ingredient-list,
.benefit-list,
.audience-list,
.value-list,
.prepare-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ingredient-list,
.audience-list,
.value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
}

.ingredient-list li,
.audience-list li,
.value-list li,
.prepare-steps li {
    color: #354640;
    font-size: 12px;
    line-height: 1.35;
}

.ingredient-list li,
.audience-list li,
.value-list li {
    padding-left: 18px;
    position: relative;
}

.ingredient-list li::before,
.audience-list li::before,
.value-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    top: .45em;
    border-radius: 50%;
    background: #2f7f45;
}

.benefit-list {
    display: grid;
    gap: 10px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #354640;
    font-size: 12px;
    line-height: 1.35;
}

.benefit-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #2f7f45;
}

.prepare-steps {
    counter-reset: prepare-step;
    display: grid;
    gap: 10px;
}

.prepare-steps li {
    min-height: 28px;
    padding-left: 37px;
    position: relative;
    display: flex;
    align-items: center;
}

.prepare-steps li::before {
    counter-increment: prepare-step;
    content: counter(prepare-step);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.admin-auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #eef7f9;
}

.admin-login-card {
    width: min(420px, calc(100% - 32px));
    padding: 34px;
    background: #fff;
    border: 1px solid #d8e6e2;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(13, 57, 43, .12);
}

.admin-login-card img {
    width: 110px;
    height: 48px;
    display: block;
    object-fit: contain;
}

.admin-login-card h1,
.admin-topbar h1,
.admin-form h2,
.admin-table-card h2 {
    margin: 18px 0;
    color: var(--green);
    line-height: 1.1;
}

.admin-login-card form,
.admin-form {
    display: grid;
    gap: 15px;
}

.admin-login-card label,
.admin-form label {
    display: grid;
    gap: 7px;
    color: #31443e;
    font-size: 12px;
    font-weight: 800;
}

.admin-login-card input,
.admin-form input,
.admin-form select {
    height: 42px;
    padding: 0 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #b9c8c4;
    border-radius: 5px;
    outline: 0;
}

.admin-login-card button,
.admin-form button {
    height: 42px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 5px;
    font-weight: 800;
    cursor: pointer;
}

.admin-alert,
.admin-success {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.admin-alert {
    color: #8a1d2b;
    background: #ffe9ed;
}

.admin-success {
    color: #15583e;
    background: #dff6e8;
}

.admin-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #f6f8f8;
}

.admin-sidebar {
    min-height: 100vh;
    padding: 27px 17px;
    display: flex;
    flex-direction: column;
    background: #f8faf9;
    border-right: 1px solid #dce8e5;
}

.admin-brand-block {
    margin: 0 8px 44px;
    display: grid;
    gap: 4px;
    color: var(--green);
}

.admin-brand-block strong {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.admin-brand-block span {
    color: #111d19;
    font-size: 11px;
    letter-spacing: .4px;
}

.admin-sidebar nav {
    display: grid;
    gap: 4px;
}

.admin-sidebar a {
    min-height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #001f17;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    color: var(--green);
    background: #e8f4f0;
}

.admin-sidebar a.active {
    border-left: 4px solid var(--green);
    border-radius: 0;
}

.admin-sidebar svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
}

.admin-nav-group {
    display: grid;
}

.admin-subnav {
    margin: 4px 0 6px 34px;
    display: none;
    gap: 4px;
}

.admin-nav-group.open .admin-subnav,
.admin-nav-group:hover .admin-subnav {
    display: grid;
}

.admin-subnav a {
    min-height: 30px;
    padding: 0 12px;
    color: #3d514b;
    font-size: 11px;
}

.admin-subnav a.active,
.admin-subnav a:hover {
    color: var(--green);
    background: #edf7f4;
    border-left: 2px solid var(--green);
    border-radius: 0;
}

.admin-sidebar > img {
    width: 120px;
    height: 54px;
    margin-bottom: 28px;
    display: block;
    object-fit: contain;
}

.admin-logout-link {
    margin-top: auto;
    border-top: 1px solid #e1e9e6;
}

.admin-main {
    min-width: 0;
    padding: 0;
}

.admin-header {
    min-height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #f7faf9;
    border-bottom: 1px solid #dce8e5;
}

.admin-menu-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    display: none;
    place-items: center;
    color: var(--green);
    background: #edf5f2;
    border: 1px solid #d4e4df;
    border-radius: 9px;
    cursor: pointer;
}

.admin-menu-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
}

.admin-drawer-overlay {
    display: none;
}

.admin-search {
    width: min(450px, 100%);
    height: 35px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #60706b;
    background: #edf2f1;
    border-radius: 12px;
}

.admin-search svg {
    width: 16px;
    height: 16px;
}

.admin-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.admin-header-actions > button {
    width: 24px;
    height: 24px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--green);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.admin-header-actions svg {
    width: 18px;
    height: 18px;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-profile div {
    display: grid;
    gap: 2px;
    text-align: right;
}

.admin-profile strong {
    color: var(--green);
    font-size: 12px;
    line-height: 1;
}

.admin-profile span {
    color: #53625d;
    font-size: 10px;
}

.admin-profile img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 2px solid var(--green);
    border-radius: 50%;
}

.admin-topbar {
    margin: 0;
    padding: 30px 27px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-topbar h1 {
    margin: 0 0 6px;
    font-size: 29px;
}

.admin-topbar p {
    margin: 0;
    color: #53625d;
    font-size: 12px;
}

.admin-topbar > a,
.admin-topbar > button,
.admin-cancel {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: #fff;
    border: 1px solid #a9bcb6;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.admin-primary-action {
    min-width: 224px;
    color: #fff !important;
    background: var(--green) !important;
    border-color: var(--green) !important;
    gap: 10px;
}

.admin-primary-action svg {
    width: 18px;
    height: 18px;
}

body.modal-open {
    overflow: hidden;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-modal.open {
    display: flex;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 23, .42);
}

.admin-modal-panel {
    width: min(520px, 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 31, 23, .22);
}

.admin-modal-header {
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #dde9e5;
}

.admin-modal-header h2 {
    margin: 0 0 6px;
    color: var(--green);
    font-size: 22px;
    line-height: 1.1;
}

.admin-modal-header p {
    margin: 0;
    color: #53625d;
    font-size: 12px;
    line-height: 1.4;
}

.admin-modal-header button {
    width: 32px;
    height: 32px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #eef7f4;
    border: 1px solid #d2e2dd;
    border-radius: 50%;
    cursor: pointer;
}

.admin-modal-header svg {
    width: 17px;
    height: 17px;
}

.modal-form {
    padding: 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.admin-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-modal-actions button {
    flex: 1;
}

.admin-stats,
.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.admin-grid {
    grid-template-columns: 1fr;
}

.category-stats {
    padding: 0 27px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-stats article {
    min-height: 121px;
    padding: 24px 25px;
    background: #fff;
    border: 1px solid #cfdcda;
    border-radius: 8px;
}

.category-stats article:last-child {
    background: #eef3f1;
}

.category-stats span {
    display: block;
    margin-bottom: 13px;
    color: #213a33;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.category-stats strong {
    display: block;
    margin-bottom: 18px;
    color: #001f17;
    font-size: 31px;
    line-height: 1;
}

.category-stats small {
    color: #3b5f55;
    font-size: 12px;
}

.admin-stats article,
.admin-form,
.admin-table-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(13, 57, 43, .06);
}

.admin-stats span {
    display: block;
    margin-bottom: 12px;
    color: #53625d;
    font-size: 13px;
    font-weight: 700;
}

.admin-stats strong {
    color: var(--green);
    font-size: 36px;
    line-height: 1;
}

.admin-stats small {
    display: block;
    margin-top: 10px;
    color: #6b7774;
    font-size: 12px;
    line-height: 1.35;
}

.dashboard-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 27px 24px;
}

.dashboard-stats article {
    min-height: 126px;
}

.dashboard-stats strong {
    font-size: clamp(24px, 2.4vw, 34px);
}

.dashboard-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 24px;
    margin: 0 27px;
}

.dashboard-panels-single {
    grid-template-columns: 1fr;
}

.dashboard-table th,
.dashboard-table td {
    padding: 15px 18px;
}

.admin-form h2,
.admin-table-card h2 {
    margin-top: 0;
    font-size: 22px;
}

.category-list-panel {
    margin: 0 27px;
    display: grid;
    gap: 24px;
}

.category-filters {
    padding: 21px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border: 1px solid #d7e2df;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.category-filters div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-filters label {
    width: 142px;
    height: 34px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #d7e2df;
    border-radius: 4px;
}

.category-filters label:nth-child(2) {
    width: 190px;
}

.category-filters svg {
    width: 13px;
    height: 13px;
}

.category-filters select {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #001f17;
    font-size: 12px;
    font-weight: 600;
}

.category-filters p {
    margin: 0;
    color: #3a534c;
    font-size: 11px;
}

.admin-table-card {
    overflow-x: auto;
    padding: 0;
}

.admin-table-card h2 {
    padding: 18px 25px 0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th,
.admin-table td {
    padding: 19px 25px;
    text-align: left;
    border-bottom: 1px solid #e3eeeb;
}

.admin-table th {
    color: var(--green);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.category-name-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-name-cell > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e4eeee;
    border-radius: 4px;
}

.category-name-cell svg {
    width: 17px;
    height: 17px;
}

.category-name-cell strong {
    display: block;
    margin-bottom: 3px;
    color: #09251e;
    font-size: 14px;
}

.category-name-cell small {
    color: #66736f;
    font-size: 11px;
}

.product-name-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-name-cell img {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    object-fit: cover;
    background: #edf2f1;
    border: 1px solid #d7e4e0;
    border-radius: 6px;
}

.product-name-cell strong,
.product-name-cell small {
    display: block;
}

.product-name-cell strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 14px;
}

.product-name-cell small {
    color: #66736f;
    font-size: 11px;
}

.products-admin-table th:first-child,
.products-admin-table td:first-child {
    min-width: 240px;
}

.sort-pill {
    min-width: 34px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    background: #edf1f0;
    border-radius: 999px;
    color: #122b24;
    font-size: 11px;
    font-weight: 800;
}

.status-toggle {
    width: 43px;
    height: 24px;
    margin-right: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: #c8d5d1;
    border-radius: 999px;
}

.status-toggle::after {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: #fff;
    border-radius: 50%;
}

.status-toggle.active {
    background: var(--green);
}

.status-toggle.active::after {
    left: 22px;
}

.status-label {
    color: #0e2b22;
    font-size: 12px;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-actions form {
    margin: 0;
}

.admin-edit-btn,
.admin-delete-btn {
    min-width: 34px;
    width: 34px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.admin-edit-btn {
    color: var(--green);
    background: #eaf4f1;
    border: 1px solid #cddfda;
}

.admin-delete-btn {
    color: #fff;
    background: #c93737;
    border: 1px solid #c93737;
}

.admin-actions svg {
    width: 15px;
    height: 15px;
}

.inventory-product-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.inventory-product-cell img {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: cover;
    background: #edf2f1;
    border: 1px solid #d7e4e0;
    border-radius: 6px;
}

.inventory-product-cell strong,
.inventory-product-cell small {
    display: block;
}

.inventory-product-cell strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 14px;
}

.inventory-product-cell small {
    color: #66736f;
    font-size: 11px;
}

.inventory-category-pill {
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    color: #53625d;
    background: #edf1f0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.inventory-stock-meter {
    width: min(240px, 100%);
    display: grid;
    gap: 8px;
}

.inventory-stock-meter div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.inventory-stock-meter strong {
    color: #09251e;
    font-size: 13px;
}

.inventory-stock-meter span {
    color: #08744f;
    font-size: 11px;
    font-weight: 800;
}

.inventory-stock-meter.pending span {
    color: #8a5200;
}

.inventory-stock-meter.failed span {
    color: #8d1b26;
}

.inventory-stock-meter em {
    height: 6px;
    overflow: hidden;
    display: block;
    background: #eef1f0;
    border-radius: 999px;
}

.inventory-stock-meter i {
    height: 100%;
    display: block;
    background: #18b577;
    border-radius: inherit;
}

.inventory-stock-meter.pending i {
    background: #f4a60b;
}

.inventory-stock-meter.failed strong {
    color: #d53939;
}

.inventory-stock-meter.failed i {
    background: #d53939;
}

.inventory-status-badge {
    min-width: 94px;
    min-height: 36px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8a5200;
    background: #fff4d8;
    border: 1px solid #f2cc80;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
}

.inventory-status-badge.paid {
    color: #08744f;
    background: #d8f6e9;
    border-color: #abe9cd;
}

.inventory-status-badge.failed {
    color: #8d1b26;
    background: #f1f3f3;
    border-color: #e2e8e6;
}

.inventory-status-badge.new {
    color: #8d5a00;
    background: #fff5d7;
    border-color: #f3d986;
}

.inventory-status-badge.read {
    color: #31506f;
    background: #e7f0fb;
    border-color: #c7d9f0;
}

.inventory-status-badge.replied {
    color: #08744f;
    background: #d8f6e9;
    border-color: #abe9cd;
}

.orders-admin-layout {
    margin: 0 27px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.orders-admin-layout:has(.order-detail-panel) {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    align-items: start;
}

.orders-list-panel {
    margin: 0;
}

.orders-admin-table th:first-child,
.orders-admin-table td:first-child {
    min-width: 175px;
}

.order-number-cell strong,
.order-number-cell small,
.order-customer-cell strong,
.order-customer-cell small {
    display: block;
}

.order-number-cell strong,
.order-customer-cell strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 13px;
}

.order-number-cell small,
.order-customer-cell small {
    color: #66736f;
    font-size: 11px;
}

.customers-admin-table th:first-child,
.customers-admin-table td:first-child {
    min-width: 245px;
}

.customer-name-cell {
    display: flex;
    align-items: center;
    gap: 13px;
}

.customer-name-cell > span,
.customer-profile-card > span {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
}

.customer-name-cell strong,
.customer-name-cell small {
    display: block;
}

.customer-name-cell strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 14px;
}

.customer-name-cell small {
    color: #66736f;
    font-size: 11px;
}

.admin-status-pill {
    min-width: 72px;
    height: 25px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5a4a00;
    background: #fff3c4;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.admin-status-pill.paid,
.admin-status-pill.processing,
.admin-status-pill.delivered {
    color: #063d2d;
    background: #c7f1d8;
}

.admin-status-pill.pending,
.admin-status-pill.packed {
    color: #7a4b00;
    background: #fff2c6;
}

.admin-status-pill.failed,
.admin-status-pill.cancelled {
    color: #a01725;
    background: #ffe2e5;
}

.admin-status-pill.shipped {
    color: #1d3d72;
    background: #ddeafe;
}

.order-detail-panel {
    padding: 22px;
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(13, 57, 43, .08);
}

.order-detail-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.order-detail-heading span,
.order-detail-grid span,
.order-address-box span,
.order-status-form span {
    color: #53625d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.order-detail-heading h2 {
    margin: 5px 0 0;
    color: var(--green);
    font-size: 22px;
    line-height: 1.1;
}

.order-detail-heading a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #eaf4f1;
    border-radius: 50%;
}

.order-detail-heading svg {
    width: 16px;
    height: 16px;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.order-detail-grid > div,
.order-address-box,
.order-total-box,
.order-status-form {
    padding: 14px;
    background: #f7fbfa;
    border: 1px solid #dce8e5;
    border-radius: 6px;
}

.order-detail-grid strong,
.order-detail-grid small {
    display: block;
}

.order-detail-grid strong {
    margin: 7px 0 5px;
    color: #09251e;
    font-size: 14px;
}

.order-detail-grid small {
    margin-top: 3px;
    color: #66736f;
    font-size: 11px;
    line-height: 1.35;
}

.order-address-box {
    margin-top: 12px;
}

.order-address-box p {
    margin: 8px 0 0;
    color: #233d36;
    font-size: 12px;
    line-height: 1.5;
}

.order-items-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.order-items-list h3 {
    margin: 0 0 3px;
    color: var(--green);
    font-size: 16px;
}

.order-items-list article {
    padding: 10px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3eeeb;
    border-radius: 6px;
}

.order-items-list img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #eef5f3;
    border-radius: 5px;
}

.order-items-list strong,
.order-items-list span {
    display: block;
}

.order-items-list strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 13px;
}

.order-items-list span {
    color: #66736f;
    font-size: 11px;
}

.order-items-list b {
    color: var(--green);
    font-size: 13px;
}

.order-total-box {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.order-total-box div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #53625d;
    font-size: 12px;
}

.order-total-box div:last-child {
    padding-top: 10px;
    border-top: 1px solid #dce8e5;
}

.order-total-box strong {
    color: var(--green);
}

.invoice-print-link {
    height: 40px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: #fff;
    background: var(--green);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
}

.invoice-print-link svg {
    width: 15px;
    height: 15px;
}

.order-status-form {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.order-status-form label {
    display: grid;
    gap: 8px;
}

.order-status-form select,
.order-status-form input {
    height: 38px;
    padding: 0 12px;
    color: #09251e;
    background: #fff;
    border: 1px solid #bfd0ca;
    border-radius: 5px;
    font: 700 12px/1 var(--font-main);
}

.order-status-form button {
    height: 38px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.my-orders-page {
    min-height: calc(100vh - 74px);
}

.my-orders-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.my-orders-layout.has-detail {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: start;
}

.my-orders-list {
    display: grid;
    gap: 13px;
}

.my-order-card {
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(11, 42, 34, .08);
}

.my-order-card.active,
.my-order-card:hover {
    border-color: #8fcf9d;
}

.my-order-card strong,
.my-order-card span {
    display: block;
}

.my-order-card strong {
    margin-bottom: 5px;
    color: var(--green);
    font-size: 16px;
}

.my-order-card > div:first-child span {
    color: #66736f;
    font-size: 12px;
}

.my-order-card > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.my-order-card b {
    color: var(--green);
    font-size: 17px;
}

.my-order-detail {
    padding: 22px;
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(13, 57, 43, .08);
}

.customer-profile-card {
    margin-bottom: 14px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #eef8f6;
    border: 1px solid #dce8e5;
    border-radius: 7px;
}

.customer-profile-card > span {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.customer-profile-card strong,
.customer-profile-card small {
    display: block;
}

.customer-profile-card strong {
    margin-bottom: 5px;
    color: var(--green);
    font-size: 17px;
}

.customer-profile-card small {
    margin-top: 3px;
    color: #66736f;
    font-size: 11px;
    line-height: 1.35;
}

.customer-orders-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.customer-orders-list h3 {
    margin: 0 0 3px;
    color: var(--green);
    font-size: 16px;
}

.customer-orders-list > p {
    margin: 0;
    padding: 14px;
    color: #66736f;
    background: #f7fbfa;
    border: 1px solid #dce8e5;
    border-radius: 6px;
    font-size: 12px;
}

.customer-orders-list a {
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3eeeb;
    border-radius: 6px;
}

.customer-orders-list strong,
.customer-orders-list small {
    display: block;
}

.customer-orders-list strong {
    margin-bottom: 4px;
    color: #09251e;
    font-size: 12px;
}

.customer-orders-list small {
    color: #66736f;
    font-size: 10px;
}

.customer-orders-list b {
    color: var(--green);
    font-size: 12px;
}

.inventory-history-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.inventory-history-list h3 {
    margin: 0 0 3px;
    color: var(--green);
    font-size: 16px;
}

.inventory-history-list > p {
    margin: 0;
    padding: 14px;
    color: #66736f;
    background: #f7fbfa;
    border: 1px solid #dce8e5;
    border-radius: 6px;
    font-size: 12px;
}

.inventory-history-list article {
    padding: 12px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3eeeb;
    border-radius: 6px;
}

.inventory-history-list article > span {
    height: 28px;
    display: grid;
    place-items: center;
    color: #08744f;
    background: #d8f6e9;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.inventory-history-list article.out > span {
    color: #8d1b26;
    background: #ffe2e5;
}

.inventory-history-list article.adjust > span {
    color: #8a5200;
    background: #fff4d8;
}

.inventory-history-list strong,
.inventory-history-list small {
    display: block;
}

.inventory-history-list strong {
    margin-bottom: 3px;
    color: #09251e;
    font-size: 13px;
}

.inventory-history-list small {
    color: #66736f;
    font-size: 11px;
    line-height: 1.35;
}

.inventory-history-list time {
    color: #66736f;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.invoice-page {
    background: #eaf4f6;
}

.invoice-sheet {
    width: min(920px, calc(100% - 32px));
    margin: 28px auto;
    padding: 32px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(13, 57, 43, .12);
}

.invoice-actions {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.invoice-actions a,
.invoice-actions button {
    height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.invoice-actions a {
    color: var(--green);
    background: #eaf4f1;
    border: 1px solid #cddfda;
}

.invoice-actions button {
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
}

.invoice-header {
    padding-bottom: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 2px solid var(--green);
}

.invoice-header img {
    width: 116px;
    height: 54px;
    object-fit: contain;
}

.invoice-header h1 {
    margin: 10px 0 5px;
    font-size: 28px;
    line-height: 1.1;
}

.invoice-header p {
    margin: 0;
    color: #53625d;
    font-size: 13px;
}

.invoice-header > div:last-child {
    text-align: right;
}

.invoice-header span,
.invoice-meta-grid span {
    color: #53625d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.invoice-header strong {
    display: block;
    margin: 6px 0;
    color: var(--green);
    font-size: 24px;
}

.invoice-header small {
    color: #66736f;
    font-size: 12px;
}

.invoice-meta-grid {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.invoice-meta-grid article {
    min-height: 128px;
    padding: 15px;
    background: #f7fbfa;
    border: 1px solid #dce8e5;
    border-radius: 7px;
}

.invoice-meta-grid strong {
    display: block;
    margin: 8px 0 5px;
    color: var(--green);
    font-size: 15px;
}

.invoice-meta-grid p {
    margin: 8px 0 0;
    color: #233d36;
    font-size: 12px;
    line-height: 1.5;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.invoice-table th,
.invoice-table td {
    padding: 13px 12px;
    text-align: left;
    border-bottom: 1px solid #e3eeeb;
}

.invoice-table th {
    color: #fff;
    background: var(--green);
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.invoice-table th:nth-child(3),
.invoice-table td:nth-child(3) {
    text-align: center;
}

.invoice-table th:nth-child(4),
.invoice-table th:nth-child(5),
.invoice-table td:nth-child(4),
.invoice-table td:nth-child(5) {
    text-align: right;
}

.invoice-total-panel {
    width: min(320px, 100%);
    margin: 24px 0 0 auto;
    padding: 16px;
    display: grid;
    gap: 12px;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 7px;
}

.invoice-total-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #53625d;
    font-size: 13px;
}

.invoice-total-panel div:last-child {
    padding-top: 12px;
    border-top: 1px solid #bdd0ca;
}

.invoice-total-panel strong {
    color: var(--green);
}

.invoice-footer {
    margin-top: 32px;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid #dce8e5;
}

.invoice-footer p {
    margin: 0 0 5px;
    color: var(--green);
    font-weight: 800;
}

.invoice-footer span {
    color: #66736f;
    font-size: 12px;
}

.category-pagination {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-pagination button {
    min-width: 44px;
    height: 34px;
    padding: 0 15px;
    color: #001f17;
    background: #fff;
    border: 1px solid #d7e2df;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.category-pagination button.active {
    min-width: 39px;
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.category-pagination button:disabled {
    color: #9aa7a3;
    cursor: default;
}

.category-pagination div {
    display: flex;
    gap: 10px;
}

.admin-footer {
    margin-top: 27px;
    padding: 25px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #3e5550;
    border-top: 1px solid #e1e9e6;
    font-size: 11px;
}

.admin-footer div {
    display: flex;
    gap: 28px;
}

.admin-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #53625d;
    font-size: 12px;
    font-weight: 700;
}

.admin-breadcrumb strong {
    color: var(--green);
}

.product-editor {
    margin: 0 27px;
    display: grid;
    gap: 25px;
}

.product-editor-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #cfdcda;
    border-radius: 8px;
}

.product-editor-card h2 {
    margin: 0 0 25px;
    padding-bottom: 15px;
    color: var(--green);
    border-bottom: 1px solid #dce8e5;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
}

.product-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 24px;
}

.product-form-grid label,
.status-field,
.bestseller-box,
.image-field-grid label {
    display: grid;
    gap: 9px;
}

.product-form-grid label > span,
.status-field > span,
.image-field-grid label > span {
    color: #0d3027;
    font-size: 12px;
    font-weight: 800;
}

.product-form-grid input,
.product-form-grid select,
.product-form-grid textarea,
.image-field-grid input {
    width: 100%;
    border: 1px solid #bfd0ca;
    border-radius: 4px;
    outline: 0;
    color: #061f18;
    background: #fff;
    font: 500 13px/1.45 var(--font-main);
}

.product-form-grid input,
.product-form-grid select,
.image-field-grid input {
    height: 55px;
    padding: 0 16px;
}

.image-field-grid small {
    color: #53625d;
    font-size: 11px;
    line-height: 1.35;
}

.product-form-grid textarea {
    min-height: 104px;
    padding: 15px 16px;
    resize: vertical;
}

.span-2 {
    grid-column: span 2;
}

.span-4 {
    grid-column: 1 / -1;
}

.status-field {
    align-content: start;
    grid-template-columns: auto auto;
    gap: 12px 18px;
}

.status-field > span {
    grid-column: 1 / -1;
}

.status-field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #061f18;
    font-size: 13px;
    font-weight: 600;
}

.status-field input,
.bestseller-box input {
    accent-color: var(--green);
}

.bestseller-box {
    min-height: 104px;
    padding: 22px;
    grid-column: span 2;
    grid-template-columns: 18px 1fr;
    align-items: start;
    background: #f0f3f2;
    border: 1px solid #dbe5e2;
    border-radius: 5px;
}

.bestseller-box strong,
.bestseller-box small {
    display: block;
}

.bestseller-box strong {
    margin-bottom: 6px;
    color: #061f18;
    font-size: 13px;
}

.bestseller-box small {
    color: #455851;
    font-size: 11px;
    line-height: 1.45;
}

.image-field-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.image-preview-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.selected-image-previews {
    display: contents;
}

.image-upload-tile,
.image-preview-tile {
    width: 170px;
    height: 170px;
    border-radius: 4px;
}

.image-upload-tile {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 9px;
    color: #52645f;
    background: #eef1f0;
    border: 1px dashed #90a09b;
    font-size: 12px;
    font-weight: 700;
}

.image-upload-tile svg {
    width: 28px;
    height: 28px;
}

.image-preview-tile {
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px solid #d5e0dc;
    background: #fff;
}

.image-preview-tile-new {
    border-color: #8fcf9d;
    box-shadow: 0 0 0 2px rgba(47, 127, 69, .12);
}

.image-preview-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-remove-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #d92d3a;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(9, 28, 22, .2);
    cursor: pointer;
}

.image-remove-btn svg {
    width: 17px;
    height: 17px;
    stroke-width: 3;
}

.image-preview-tile small {
    min-width: 48px;
    height: 22px;
    padding: 0 9px;
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 61, 43, .88);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.product-editor-actions {
    padding-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.product-editor-actions a,
.product-editor-actions button {
    min-width: 118px;
    height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.product-editor-actions a {
    color: var(--green);
    background: #fff;
    border: 1px solid #b6c8c2;
}

.product-editor-actions button {
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    cursor: pointer;
}

.product-editor-actions svg {
    width: 16px;
    height: 16px;
}

.related-section {
    padding: 58px 40px 74px;
    background: #fff;
}

.related-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.related-heading h2 {
    margin: 0;
    color: var(--green);
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.related-viewport {
    overflow: hidden;
}

.related-track {
    display: flex;
    gap: 18px;
    transition: transform .32s ease;
    will-change: transform;
}

.related-card {
    flex: 0 0 calc((100% - 54px) / 4);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1ebe8;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(12, 47, 35, .14);
    transition: transform .22s ease, box-shadow .22s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(12, 47, 35, .18);
}

.related-image {
    height: 304px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
}

.related-image img {
    width: 88%;
    height: 88%;
    display: block;
    object-fit: contain;
}

.related-image > span {
    height: 30px;
    padding: 0 18px;
    position: absolute;
    top: 15px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.related-image .wishlist-btn {
    top: 15px;
    right: 14px;
}

.related-image .quick-view-btn {
    top: 51px;
    right: 14px;
}

.related-info {
    padding: 22px 30px 32px;
}

.related-info h3 {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.related-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2926;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.related-info p {
    margin: 0 0 14px;
    color: #14912d;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.related-info .add-cart-btn {
    height: 34px;
    font-size: 12px;
}


.endorsement-section {
    min-height: 727px;
    padding: 102px 66px 50px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(360px, 477px) minmax(360px, 1fr);
    align-items: center;
    gap: 41px;
    background: #003d2a;
}

.endorsement-section::after {
    content: "";
    width: 330px;
    position: absolute;
    top: 49px;
    right: -8px;
    bottom: -40px;
    background: rgba(255, 255, 255, .05);
    transform: skewX(-13deg);
    transform-origin: top;
}

.endorsement-image {
    position: relative;
    z-index: 1;
}

.endorsement-image img {
    width: 100%;
    height: 575px;
    display: block;
    object-fit: cover;
    object-position: 44% 50%;
    border: 1px solid rgba(225, 198, 154, .55);
    border-radius: 4px;
}

.expert-card {
    width: 176px;
    min-height: 93px;
    padding: 20px 20px 15px;
    position: absolute;
    right: -16px;
    bottom: -16px;
    display: grid;
    align-content: center;
    color: var(--ink);
    background: rgba(240, 250, 247, .88);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
    backdrop-filter: blur(8px);
}

.expert-card span {
    margin-bottom: 7px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.expert-card strong {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.expert-card small {
    color: #53625f;
    font-size: 10px;
    line-height: 1.3;
}

.endorsement-content {
    max-width: 560px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-main);
}

.endorsement-content > svg {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: #93c8b5;
    fill: currentColor;
    stroke-width: 1.6;
}

.endorsement-content blockquote {
    margin: 0 0 30px;
    color: #fff;
    font-size: 27px;
    line-height: 1.46;
    font-weight: 500;
    letter-spacing: 0;
}

.endorsement-content p {
    max-width: 520px;
    margin: 0 0 46px;
    color: rgba(221, 239, 233, .82);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.endorsement-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.endorsement-label span {
    width: 37px;
    height: 2px;
    background: #98c8b9;
}

.wellness-voices-section {
    padding: 48px 63px 74px;
    background: #f2fafc;
    border-top: 1px solid #dcebea;
}

.voices-heading {
    margin-bottom: 38px;
    text-align: center;
}

.voices-heading h2,
.newsletter-card h2,
.wellness-care-card h2 {
    margin: 0;
    max-width: 500px;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.32;
    font-weight: 600;
    letter-spacing: 0;
}

.voices-heading p {
    margin: 4px 0 0;
    color: #4a5552;
    font-size: 15px;
    line-height: 1.3;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 43px;
}

.testimonial-card {
    min-height: 190px;
    padding: 27px 25px 28px;
    display: grid;
    align-content: space-between;
    background: #fff;
    border: 1px solid #e4eeee;
    border-radius: 11px;
    box-shadow: 0 1px 3px rgba(14, 54, 44, .04);
}

.testimonial-card > p {
    margin: 0 0 26px;
    color: #34413d;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.testimonial-author span {
    display: block;
    color: #51615d;
    font-size: 9px;
    line-height: 1.35;
}

.newsletter-card {
    max-width: 701px;
    min-height: 220px;
    margin: 98px auto 0;
    padding: 36px 36px 34px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #bdf0d2;
    border-radius: 16px;
}

.newsletter-card::before,
.newsletter-card::after {
    content: "";
    position: absolute;
    bottom: -79px;
    width: 390px;
    height: 184px;
    background: rgba(35, 102, 80, .13);
    border-radius: 50% 50% 0 0;
}

.newsletter-card::before {
    left: -71px;
    transform: rotate(-14deg);
}

.newsletter-card::after {
    right: -66px;
    transform: rotate(17deg);
}

.newsletter-card h2,
.newsletter-card p,
.newsletter-form,
.newsletter-card small {
    position: relative;
    z-index: 1;
}

.newsletter-card p {
    margin: 12px 0 13px;
    color: #31564a;
    font-size: 14px;
    line-height: 1.35;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.newsletter-form label {
    width: min(255px, 100%);
}

.newsletter-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.newsletter-form input {
    width: 100%;
    height: 45px;
    padding: 0 19px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 8px;
    outline: 0;
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: #7b8684;
}

.newsletter-form button {
    height: 45px;
    padding: 0 28px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
}

.newsletter-card small {
    display: block;
    margin-top: 11px;
    color: rgba(51, 99, 82, .7);
    font-size: 11px;
    line-height: 1.3;
}

.wellness-care-card {
    max-width: 860px;
    margin: 86px auto 0;
    padding: 34px 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    gap: 34px;
    align-items: center;
    background: #fff;
    border: 1px solid #dcebea;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(9, 56, 43, .08);
}

.care-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: #0b4c36;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.wellness-care-card p {
    margin: 16px 0 0;
    max-width: 540px;
    color: #4d5d58;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.care-points {
    display: grid;
    gap: 12px;
}

.care-points span {
    min-height: 52px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #073f2e;
    font-size: 14px;
    font-weight: 700;
    background: #edf8f3;
    border: 1px solid #caeadb;
    border-radius: 8px;
}

.care-points i {
    width: 19px;
    height: 19px;
    color: #0b6d4d;
    flex: 0 0 auto;
}

.site-footer {
    padding: 70px 36px 18px;
    background: #eaf4f6;
    border-top: 1px solid #dcebea;
}

.whatsapp-float-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0, 61, 43, 0.22);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float-widget:hover {
    transform: translateY(-4px) scale(1.1);
    background: #1EBE5D;
    box-shadow: 0 14px 30px rgba(0, 61, 43, 0.28);
}

.whatsapp-float-widget i {
    color: #fff;
    font-size: 33px;
    line-height: 1;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 10px 24px rgba(0, 61, 43, 0.22);
    }

    70% {
        box-shadow: 0 0 0 13px rgba(37, 211, 102, 0), 0 10px 24px rgba(0, 61, 43, 0.22);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 24px rgba(0, 61, 43, 0.22);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.5fr) repeat(3, minmax(145px, 1fr));
    gap: 42px;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    width: 132px;
    margin-bottom: 14px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 310px;
    margin: 0 0 14px;
    color: #4f5b58;
    font-size: 13px;
    line-height: 1.45;
}

.footer-contact-details {
    display: grid;
    gap: 10px;
    max-width: 360px;
}

.footer-contact-details span,
.footer-contact-details a {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: #4e5a57;
    font-size: 13px;
    line-height: 1.45;
}

.footer-contact-details svg {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--green);
    stroke-width: 2.2;
}

.footer-contact-details a {
    width: max-content;
    max-width: 100%;
    color: var(--green);
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-social a {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    color: #376954;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-links a {
    width: max-content;
    max-width: 100%;
    color: #4e5a57;
    font-size: 14px;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--green);
    transform: translateX(2px);
}

.footer-bottom {
    max-width: 1180px;
    margin: 55px auto 0;
    padding-top: 18px;
    text-align: center;
    border-top: 1px solid #d5e2df;
}

.footer-bottom p {
    margin: 0;
    color: #4f5b58;
    font-size: 10px;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        min-height: auto;
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }

    .image-brand {
        width: 92px;
        height: 42px;
    }

    .mobile-menu-btn {
        display: grid;
        order: 4;
        margin-left: 0;
    }

    .main-nav {
        order: 5;
        width: 100%;
        display: none;
        padding: 8px 0 4px;
        justify-content: flex-start;
        gap: 0;
        flex-direction: column;
        background: #f7fcfe;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-top: 1px solid #e0ecea;
        border-radius: 0;
        margin: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 13px 2px;
        border-radius: 0;
        font-size: 14px;
    }

    .main-nav a.active {
        color: var(--ink);
        background: transparent;
    }

    .main-nav a.active::after {
        display: block;
        left: 0;
        right: auto;
        bottom: 8px;
        width: 36px;
    }

    .header-actions {
        order: 3;
        margin-left: auto;
        gap: 9px;
    }

    .search-box {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 46px 22px 58px;
    }

    .hero-visual {
        justify-self: center;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 18px 22px;
    }

    .trust-strip div {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        gap: 14px 24px;
    }

    .categories-section {
        padding: 42px 22px 48px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 220px 220px;
    }

    .category-large {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .category-wide {
        grid-column: 1 / span 2;
    }

    .standard-section {
        padding: 42px 22px 56px;
    }

    .standard-grid {
        gap: 34px;
    }

    .best-sellers-section {
        padding: 28px 22px 28px;
    }

    .product-grid {
        grid-template-columns: none;
    }

    .product-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .endorsement-section {
        min-height: auto;
        padding: 58px 22px 70px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .endorsement-image {
        max-width: 520px;
        justify-self: center;
    }

    .endorsement-image img {
        height: 480px;
    }

    .endorsement-content {
        max-width: 620px;
        justify-self: center;
    }

    .wellness-voices-section {
        padding: 44px 22px 62px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .newsletter-card {
        margin-top: 54px;
    }

    .wellness-care-card {
        margin-top: 54px;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 22px;
    }

    .site-footer {
        padding: 52px 22px 18px;
    }

    .whatsapp-float-widget {
        right: 16px;
        bottom: 16px;
        width: 56px;
        min-width: 56px;
        height: 56px;
    }

    .whatsapp-float-widget i {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact-details {
        max-width: 560px;
    }

    .shop-page {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        padding: 28px 22px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        border-right: 0;
    }

    .shop-sidebar h2 {
        width: 100%;
        margin-bottom: 2px;
    }

    .shop-sidebar a {
        width: max-content;
        max-width: 100%;
        display: inline-flex;
        margin-right: 0;
        border: 1px solid #d5e3df;
        background: #f7fbfa;
    }

    .shop-products {
        padding: 30px 22px 48px;
    }

    .shop-toolbar {
        margin-bottom: 28px;
    }

    .shop-grid {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .shop-product-card .product-image {
        height: 250px;
    }

    .detail-hero {
        padding: 34px 22px 54px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-main-image {
        width: 100%;
        max-width: 100%;
        min-height: 440px;
    }

    .detail-main-image img {
        max-width: 86%;
        max-height: 390px;
    }

    .detail-info h1 {
        font-size: 40px;
    }

    .detail-actions {
        gap: 16px;
    }

    .detail-benefits {
        margin-top: 28px;
        padding-top: 18px;
        gap: 10px;
    }

    .detail-benefits div {
        min-height: 72px;
        padding: 12px 8px;
        background: #f3faf7;
        border: 1px solid #d9ebe5;
        border-radius: 8px;
        line-height: 1.25;
    }

    .component-grid {
        gap: 28px;
    }

    .nutrition-content-grid {
        grid-template-columns: 1fr;
    }

    .nutrition-panel-wide {
        grid-column: auto;
    }

    .related-section {
        padding: 44px 22px 58px;
    }

    .related-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .admin-page {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid #dce8e5;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-grid,
    .admin-stats,
    .dashboard-stats,
    .dashboard-panels,
    .category-stats,
    .orders-admin-layout:has(.order-detail-panel),
    .my-orders-layout.has-detail {
        grid-template-columns: 1fr;
    }

    .dashboard-stats,
    .dashboard-panels {
        margin-right: 0;
        margin-left: 0;
    }

    .order-detail-panel,
    .my-order-detail {
        position: static;
    }

    .admin-header,
    .category-filters,
    .admin-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-filters div {
        flex-wrap: wrap;
    }

    .category-filters label,
    .category-filters label:nth-child(2) {
        width: min(100%, 220px);
    }

    .product-form-grid,
    .image-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 82px minmax(0, 1fr) 108px;
    }

    .cart-item-image {
        width: 82px;
        height: 82px;
    }

    .cart-line-total,
    .cart-remove-btn {
        justify-self: end;
    }

    .my-order-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .my-order-card > div:nth-child(2) {
        justify-content: flex-start;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .span-4 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .site-header {
        justify-content: space-between;
    }

    .header-actions {
        width: auto;
        justify-content: flex-end;
    }

    .search-box {
        display: none;
    }

    .search-box input {
        display: none;
    }

    .main-nav {
        font-size: 13px;
    }

    .hero {
        padding-top: 36px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .5px;
    }

    h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 13px;
    }

    .btn {
        width: 100%;
    }

    .rating-card {
        left: 14px;
        bottom: -32px;
    }

    .trust-strip {
        margin-top: 16px;
    }

    .trust-strip div {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .see-all-btn {
        width: 121px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .category-card,
    .category-large,
    .category-wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .category-large {
        min-height: 320px;
    }

    .standard-section h2 {
        margin-bottom: 34px;
        font-size: 29px;
    }

    .standard-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .best-sellers-heading h2 {
        font-size: 29px;
    }

    .product-grid {
        grid-template-columns: none;
    }

    .product-card {
        flex-basis: 100%;
    }

    .product-image {
        height: 260px;
    }

    .endorsement-section {
        padding-top: 44px;
    }

    .endorsement-image img {
        height: 390px;
    }

    .expert-card {
        right: 12px;
        bottom: -18px;
    }

    .endorsement-content blockquote {
        font-size: 22px;
        line-height: 1.55;
    }

    .endorsement-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .endorsement-label {
        letter-spacing: 2px;
    }

    .voices-heading h2,
    .newsletter-card h2,
    .wellness-care-card h2 {
        font-size: 29px;
    }

    .newsletter-card {
        padding: 32px 18px 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form label,
    .newsletter-form button {
        width: 100%;
    }

    .wellness-care-card {
        padding: 26px 18px;
    }

    .wellness-care-card h2 {
        max-width: 300px;
        font-size: 24px;
        line-height: 1.28;
        font-weight: 600;
    }

    .wellness-care-card p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.62;
    }

    .care-points {
        gap: 10px;
    }

    .care-points span {
        min-height: 50px;
        width: 100%;
        justify-content: flex-start;
        font-size: 13px;
        line-height: 1.2;
    }

    .care-points i {
        width: 18px;
        height: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-bottom {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-toolbar {
        flex-direction: column;
    }

    .shop-toolbar h1 {
        font-size: 28px;
    }

    .sort-select {
        width: 100%;
        justify-content: space-between;
    }

    .sort-select select {
        flex: 1;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-card .product-image {
        height: 260px;
    }

    .detail-main-image {
        min-height: 360px;
    }

    .detail-main-image img {
        width: min(76%, 280px);
        max-width: 76%;
        max-height: 300px;
    }

    .detail-tags {
        display: grid;
        gap: 9px;
    }

    .detail-tags span {
        width: 100%;
        padding: 9px 11px;
        justify-content: flex-start;
        border-radius: 8px;
        font-size: 11px;
        line-height: 1.45;
        font-weight: 700;
    }

    .detail-thumbnails {
        padding-left: 0;
        justify-content: center;
        gap: 10px;
    }

    .purchase-row,
    .detail-actions,
    .component-grid {
        grid-template-columns: 1fr;
    }

    .detail-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ingredient-list,
    .audience-list,
    .value-list {
        grid-template-columns: 1fr;
    }

    .purchase-row {
        align-items: stretch;
    }

    .detail-pack-select select {
        width: 100%;
    }

    .detail-add-btn {
        width: min(220px, 100%);
        justify-self: start;
    }

    .detail-tabs-section {
        padding: 34px 22px 48px;
    }

    .detail-tabs {
        gap: 18px;
        overflow-x: auto;
    }

    .detail-tabs button {
        flex: 0 0 auto;
    }

    .related-heading h2 {
        font-size: 30px;
    }

    .related-card {
        flex-basis: 100%;
    }

    .related-image {
        height: 280px;
    }

    .admin-main {
        padding: 22px;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .product-editor-card {
        padding: 22px;
    }

    .product-form-grid,
    .image-field-grid {
        grid-template-columns: 1fr;
    }

    .span-2,
    .bestseller-box {
        grid-column: auto;
    }

    .product-editor-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-shell {
        padding: 34px 16px 52px;
    }

    .cart-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .guest-checkout-note {
        align-items: stretch;
        flex-direction: column;
    }

    .guest-checkout-note button {
        width: 100%;
    }

    .cart-heading h1 {
        font-size: 28px;
    }

    .cart-item {
        grid-template-columns: 74px minmax(0, 1fr) 36px;
        gap: 12px;
    }

    .cart-item-image {
        width: 74px;
        height: 74px;
    }

    .cart-quantity {
        grid-column: 2 / 3;
        width: 116px;
    }

    .cart-line-total {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .cart-remove-btn {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .checkout-page {
        padding: 28px 16px 52px;
    }

    .checkout-heading h1 {
        font-size: 28px;
    }

    .profile-shell {
        padding: 34px 16px 54px;
    }

    .profile-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

}

.about-page {
    color: #023d2d;
    background: #edf7fa;
}

.about-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 48, 33, 0.82) 0%, rgba(0, 48, 33, 0.58) 42%, rgba(0, 48, 33, 0.12) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: min(620px, 92%);
    padding: 62px 42px;
    color: #fff;
}

.about-hero-content span {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-hero-content h1 {
    margin: 0;
    max-width: 820px;
    color: #fff;
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.18;
    font-weight: 500;
}

.about-hero-content p {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.about-timeline-section {
    padding: 54px 38px 72px;
}

.about-section-heading {
    margin-bottom: 48px;
    text-align: center;
}

.about-section-heading h2 {
    margin: 0;
    color: #003d2b;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 850;
}

.about-section-heading span {
    display: block;
    width: 86px;
    height: 3px;
    margin: 15px auto 0;
    border-radius: 99px;
    background: #d2a21d;
}

.about-timeline {
    position: relative;
    max-width: 1040px;
    min-height: 370px;
    margin: 0 auto;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 50%;
    width: 1px;
    background: rgba(0, 61, 43, 0.38);
    transform: translateX(-50%);
}

.timeline-card {
    position: relative;
    width: calc(50% - 50px);
    margin-bottom: 52px;
}

.timeline-right {
    margin-left: calc(50% + 50px);
}

.timeline-left {
    margin-right: calc(50% + 50px);
}

.timeline-icon {
    position: absolute;
    top: 34px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #003d2b;
    background: #f6fbfa;
    border: 1px solid rgba(0, 61, 43, 0.55);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 61, 43, 0.08);
}

.timeline-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.timeline-right .timeline-icon {
    left: -67px;
}

.timeline-left .timeline-icon {
    right: -67px;
}

.timeline-content {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(0, 61, 43, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 39, 28, 0.08);
}

.timeline-content > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 7px;
}

.timeline-content h3 {
    margin: 0;
    color: #003d2b;
    font-size: 15px;
    font-weight: 850;
}

.timeline-content strong {
    flex: 0 0 auto;
    color: #ad8111;
    font-size: 12px;
    font-weight: 850;
}

.timeline-content p {
    margin: 0;
    color: #53635f;
    font-size: 13px;
    line-height: 1.55;
}

.about-purpose-section {
    padding: 62px 74px;
    color: #fff;
    background: #184b36;
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 110px;
    max-width: 1160px;
    margin: 0 auto;
}

.about-purpose-grid article {
    max-width: 520px;
}

.purpose-icon {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    place-items: center;
    color: #d9bd3f;
    background: rgba(210, 236, 219, 0.13);
    border-radius: 8px;
}

.purpose-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.about-purpose-grid h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 28px;
    font-weight: 850;
}

.about-purpose-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.75;
}

.about-principles-section {
    padding: 62px 42px 72px;
    background: #fff;
}

.about-principles-heading {
    max-width: 560px;
    margin: 0 auto 66px;
    text-align: center;
}

.about-principles-heading h2 {
    margin: 0 0 18px;
    color: #003d2b;
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 850;
}

.about-principles-heading p {
    margin: 0;
    color: #586965;
    font-size: 12px;
    line-height: 1.55;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.about-principles-grid article {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.principle-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    place-items: center;
    color: #477565;
    background: #c6f2d9;
    border-radius: 50%;
}

.principle-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
    stroke-width: 1.9;
}

.about-principles-grid h3 {
    margin: 0 0 18px;
    color: #003d2b;
    font-size: 24px;
    font-weight: 850;
}

.about-principles-grid p {
    max-width: 330px;
    margin: 0;
    color: #586965;
    font-size: 15px;
    line-height: 1.42;
}

.about-promise-section {
    padding: 66px 42px 76px;
    background: #fff;
}

.about-promise-heading {
    max-width: 640px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-promise-heading h2 {
    margin: 0 0 14px;
    color: #003d2b;
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.18;
}

.about-promise-heading p {
    margin: 0;
    color: #586965;
    font-size: 14px;
    line-height: 1.55;
}

.about-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.about-promise-grid article {
    min-height: 230px;
    padding: 30px 26px;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    background: #f7fbfa;
    box-shadow: 0 12px 28px rgba(0, 39, 28, 0.06);
}

.promise-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    color: #003d2b;
    background: #c7f1d8;
    border-radius: 8px;
}

.promise-icon svg {
    width: 23px;
    height: 23px;
}

.about-promise-grid h3 {
    margin: 0 0 12px;
    color: #003d2b;
    font-size: 22px;
    font-weight: 700;
}

.about-promise-grid p {
    margin: 0;
    color: #586965;
    font-size: 14px;
    line-height: 1.55;
}

.about-apart-section {
    padding: 70px 42px;
    background: #edf7fa;
}

.about-apart-grid {
    display: grid;
    grid-template-columns: minmax(320px, 540px) minmax(320px, 1fr);
    align-items: center;
    gap: 58px;
    max-width: 1120px;
    margin: 0 auto;
}

.about-apart-image {
    margin: 0;
}

.about-apart-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.06 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 36px rgba(0, 48, 33, 0.16);
}

.about-apart-content h2 {
    margin: 0 0 30px;
    color: #003d2b;
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1.12;
    font-weight: 850;
}

.apart-point {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.apart-point:last-child {
    margin-bottom: 0;
}

.apart-point span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #477565;
    background: #c6f2d9;
    border-radius: 50%;
}

.apart-point span svg {
    width: 15px;
    height: 15px;
    stroke-width: 3;
}

.apart-point h3 {
    margin: 0 0 8px;
    color: #003d2b;
    font-size: 15px;
    font-weight: 850;
}

.apart-point p {
    max-width: 520px;
    margin: 0;
    color: #586965;
    font-size: 14px;
    line-height: 1.5;
}

.about-cert-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 62px;
    padding: 26px 24px;
    color: #6e7a78;
    background: #e6f1f3;
    border-top: 1px solid rgba(0, 61, 43, 0.04);
}

.about-cert-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
}

.about-cert-strip svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.about-cta-section {
    padding: 50px 24px 56px;
    color: #fff;
    text-align: center;
    background: #003d2b;
}

.about-cta-section h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(30px, 3.3vw, 40px);
    font-weight: 850;
}

.about-cta-section p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.about-cta-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 44px;
    padding: 0 34px;
    color: #fff;
    background: #d6ae2f;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-cta-section a:hover {
    background: #c99f23;
    transform: translateY(-1px);
}

.contact-page {
    color: #003d2b;
    background: #fff;
}

.contact-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 48, 33, 0.82) 0%, rgba(0, 48, 33, 0.55) 44%, rgba(0, 48, 33, 0.08) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    width: min(620px, 92%);
    padding: 66px 40px;
    color: #fff;
}

.contact-hero-content span {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-hero-content h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.12;
    font-weight: 500;
}

.contact-hero-content p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

.contact-main-section {
    padding: 42px 38px 74px;
    background: #fff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 39, 28, 0.08);
}

.contact-form-card {
    display: grid;
    gap: 22px;
    padding: 32px 30px;
    background: #fff;
    border: 1px solid #e4eeec;
}

.contact-form-card h2,
.contact-info-card h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.contact-form-alert {
    margin: -6px 0 2px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.contact-form-alert.success {
    color: #075236;
    background: #e7f8ee;
    border: 1px solid #b9e8cb;
}

.contact-form-alert.error {
    color: #8f1d2c;
    background: #fff1f3;
    border: 1px solid #f2c6cb;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.contact-form-card label {
    display: grid;
    gap: 8px;
}

.contact-form-card label span {
    color: #233b34;
    font-size: 12px;
    font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    color: #0b3227;
    background: #edf5f6;
    border: 1px solid #c9dcda;
    border-radius: 7px;
    font: inherit;
    font-size: 13px;
    outline: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #003d2b;
    box-shadow: 0 0 0 3px rgba(0, 61, 43, 0.08);
}

.contact-form-card textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

.contact-form-card button {
    width: 170px;
    min-height: 44px;
    color: #fff;
    background: #003d2b;
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.contact-info-card {
    padding: 32px 30px;
    color: #fff;
    background: #003d2b;
}

.contact-info-card h2 {
    margin-bottom: 30px;
    color: #fff;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-item > svg {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: #a8dcc1;
    stroke-width: 2;
}

.contact-info-item span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-socials {
    display: flex;
    gap: 18px;
    padding-top: 18px;
}

.contact-socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.contact-socials svg {
    width: 18px;
    height: 18px;
}

.contact-map-card {
    max-width: 1140px;
    height: 360px;
    margin: 32px auto 0;
    overflow: hidden;
    background: #edf5f6;
    border: 1px solid #e4eeec;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 39, 28, 0.08);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.policy-page {
    min-height: calc(100vh - 74px);
    color: var(--ink);
    background: #f6fbfb;
}

.policy-hero {
    padding: 58px 28px 48px;
    color: #fff;
    text-align: center;
    background: #003d2b;
}

.policy-hero span {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.policy-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 700;
}

.policy-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.policy-content-section {
    padding: 46px 22px 72px;
}

.policy-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px;
    background: #fff;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 39, 28, 0.08);
}

.policy-block {
    padding: 24px 0;
    border-bottom: 1px solid #e2eeeb;
}

.policy-block:first-child {
    padding-top: 0;
}

.policy-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.policy-block h2 {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.policy-block p {
    margin: 0;
    color: #53625d;
    font-size: 15px;
    line-height: 1.7;
}

.policy-contact-box {
    margin-top: 28px;
    padding: 24px;
    background: #eef8f6;
    border: 1px solid #bdd0ca;
    border-radius: 8px;
}

.policy-contact-box h2 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 22px;
    font-weight: 700;
}

.policy-contact-box div {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.policy-contact-box div:last-child {
    margin-bottom: 0;
}

.policy-contact-box span {
    color: #53625d;
    font-size: 13px;
    font-weight: 600;
}

.policy-contact-box a {
    color: var(--green);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .about-hero {
        min-height: 430px;
        background-position: center right;
    }

    .about-hero::before {
        background: linear-gradient(90deg, rgba(0, 48, 33, 0.9) 0%, rgba(0, 48, 33, 0.68) 62%, rgba(0, 48, 33, 0.34) 100%);
    }

    .about-hero-content {
        width: 100%;
        padding: 46px 22px;
    }

    .about-timeline-section {
        padding: 42px 18px 54px;
    }

    .about-timeline {
        min-height: 0;
    }

    .about-timeline::before {
        left: 17px;
    }

    .timeline-card,
    .timeline-left,
    .timeline-right {
        width: auto;
        margin-right: 0;
        margin-left: 54px;
    }

    .timeline-left .timeline-icon,
    .timeline-right .timeline-icon {
        left: -54px;
        right: auto;
    }

    .timeline-content {
        padding: 20px;
    }

    .about-purpose-section,
    .about-principles-section,
    .about-promise-section {
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-purpose-grid,
    .about-principles-grid,
    .about-promise-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-purpose-grid article {
        max-width: none;
    }

    .about-principles-heading {
        margin-bottom: 44px;
    }

    .about-promise-heading {
        margin-bottom: 34px;
    }

    .about-apart-section {
        padding: 46px 20px;
    }

    .about-apart-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-cert-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 24px 28px;
    }

    .contact-hero {
        min-height: 380px;
        background-position: center right;
    }

    .contact-hero::before {
        background: linear-gradient(90deg, rgba(0, 48, 33, 0.9) 0%, rgba(0, 48, 33, 0.68) 62%, rgba(0, 48, 33, 0.32) 100%);
    }

    .contact-hero-content {
        width: 100%;
        padding: 48px 22px;
    }

    .contact-main-section {
        padding: 28px 16px 54px;
    }

    .contact-main-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px 18px;
    }

    .contact-form-card button {
        width: 100%;
    }

    .contact-map-card {
        height: 300px;
        margin-top: 22px;
    }

    .policy-hero {
        padding: 44px 20px 38px;
    }

    .policy-content-section {
        padding: 28px 16px 52px;
    }

    .policy-card {
        padding: 24px 18px;
    }
}

@media (max-width: 900px) {
    body.admin-page {
        display: block;
        min-width: 0;
        overflow-x: hidden;
        background: #f6f8f8;
    }

    .admin-sidebar {
        width: min(82vw, 292px);
        min-height: 100vh;
        max-height: 100vh;
        padding: 22px 18px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 180;
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 12px;
        background: #f8faf9;
        border-right: 1px solid #dce8e5;
        border-bottom: 0;
        box-shadow: 18px 0 40px rgba(2, 28, 21, .18);
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .28s ease;
    }

    body.admin-drawer-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-drawer-overlay {
        width: 100%;
        height: 100%;
        padding: 0;
        position: fixed;
        inset: 0;
        z-index: 170;
        display: block;
        pointer-events: none;
        opacity: 0;
        background: rgba(10, 22, 18, .45);
        border: 0;
        transition: opacity .28s ease;
    }

    body.admin-drawer-open .admin-drawer-overlay {
        pointer-events: auto;
        opacity: 1;
    }

    .admin-brand-block {
        margin-bottom: 0;
    }

    .admin-sidebar > img {
        width: 96px;
        height: 42px;
        margin-bottom: 0;
    }

    .admin-sidebar nav {
        display: grid;
        align-content: start;
        gap: 6px;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .admin-sidebar a,
    .admin-nav-group > a {
        min-height: 38px;
        padding: 0 14px;
        flex: initial;
        border-radius: 8px;
        white-space: nowrap;
    }

    .admin-sidebar a.active {
        border-left: 0;
        border-radius: 8px;
        background: #e8f4f0;
    }

    .admin-subnav {
        display: grid;
        gap: 4px;
        padding: 4px 0 4px 28px;
    }

    .admin-logout-link {
        margin-top: 0;
        justify-self: start;
    }

    .admin-main {
        width: 100%;
        padding: 0;
        overflow-x: hidden;
    }

    .admin-header {
        min-height: auto;
        padding: 14px 16px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .admin-menu-toggle {
        display: grid;
        order: 1;
    }

    .admin-search {
        order: 2;
        width: min(100%, calc(100% - 52px));
        flex: 1 1 220px;
    }

    .admin-header-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .admin-profile div {
        text-align: left;
    }

    .admin-topbar {
        padding: 22px 16px 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .admin-topbar h1 {
        font-size: 25px;
        line-height: 1.15;
    }

    .admin-topbar > a,
    .admin-topbar > button,
    .admin-cancel,
    .admin-primary-action {
        width: 100%;
    }

    .admin-stats,
    .dashboard-stats,
    .category-stats {
        margin: 0 16px 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .dashboard-panels,
    .category-list-panel,
    .orders-admin-layout,
    .product-editor {
        margin: 0 16px 22px;
    }

    .admin-form,
    .admin-table-card,
    .product-editor-card {
        padding: 18px;
        border-radius: 8px;
    }

    .admin-table-card {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 720px;
        font-size: 12px;
    }

    .admin-table th,
    .admin-table td {
        padding: 14px 16px;
    }

    .product-form-grid,
    .image-field-grid,
    .settings-form-grid,
    .settings-logo-row,
    .shipping-base-rate-list label,
    .checkout-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .span-2,
    .settings-full-field,
    .bestseller-box {
        grid-column: auto;
    }

    .orders-admin-layout:has(.order-detail-panel),
    .dashboard-panels,
    .dashboard-panels-single {
        grid-template-columns: 1fr;
    }

    .order-detail-panel {
        position: static;
    }

    .product-editor-actions {
        padding: 0 16px 28px;
        align-items: stretch;
        flex-direction: column;
    }

    .product-editor-actions a,
    .product-editor-actions button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .admin-sidebar {
        padding: 12px;
    }

    .admin-sidebar a,
    .admin-nav-group > a {
        min-height: 36px;
        padding: 0 10px;
        gap: 8px;
        font-size: 11px;
    }

    .admin-sidebar svg {
        width: 15px;
        height: 15px;
    }

    .admin-header-actions > button {
        width: 34px;
        height: 34px;
        background: #edf5f2;
        border-radius: 8px;
    }

    .admin-profile img {
        width: 32px;
        height: 32px;
    }

    .admin-profile span {
        display: none;
    }

    .admin-topbar {
        padding: 20px 14px 14px;
    }

    .admin-topbar h1 {
        font-size: 23px;
    }

    .admin-topbar p {
        line-height: 1.55;
    }

    .admin-stats,
    .dashboard-stats,
    .category-stats {
        margin: 0 14px 16px;
        grid-template-columns: 1fr;
    }

    .dashboard-panels,
    .category-list-panel,
    .orders-admin-layout,
    .product-editor {
        margin: 0 14px 20px;
    }

    .admin-form,
    .product-editor-card {
        padding: 16px;
    }

    .admin-table {
        min-width: 680px;
    }

    .admin-table-card h2 {
        padding: 16px 16px 0;
        font-size: 19px;
    }
}

@media print {
    body.invoice-page {
        background: #fff;
    }

    .invoice-sheet {
        width: 100%;
        margin: 0;
        padding: 18mm;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .invoice-actions {
        display: none;
    }

    .invoice-header,
    .invoice-meta-grid article,
    .invoice-total-panel {
        break-inside: avoid;
    }

    .invoice-table th {
        color: #fff !important;
        background: #003d2b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
