:root {
    --green-900: #063f2f;
    --green-800: #07583d;
    --green-700: #087a4d;
    --green-600: #10a66a;
    --green-100: #e9f8f1;
    --green-50: #f4fcf8;
    --ink: #12221b;
    --muted: #607168;
    --line: #dfeae4;
    --soft: #f6f8f7;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(7, 88, 61, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

svg {
    width: 22px;
    height: 22px;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(223, 234, 228, .8);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--green-900);
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(16, 166, 106, .25);
}

.brand-text {
    display: grid;
    line-height: 1.05;
    font-size: 17px;
}

.brand-text span {
    color: var(--green-600);
    font-size: 13px;
    font-weight: 700;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: #31453b;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
}

.primary-nav a:hover {
    color: var(--green-800);
    background: var(--green-50);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-link {
    font-size: 14px;
    font-weight: 800;
    color: var(--green-800);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 16px 28px rgba(8, 122, 77, .24);
}

.btn-primary:hover {
    background: var(--green-800);
}

.btn-secondary {
    color: var(--green-800);
    background: var(--white);
    border-color: var(--line);
    box-shadow: 0 12px 28px rgba(18, 34, 27, .06);
}

.btn-sm {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    place-items: center;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: var(--green-900);
    border-radius: 999px;
}

.hero {
    padding-top: 48px;
    background:
        radial-gradient(circle at 14% 15%, rgba(16, 166, 106, .11), transparent 28%),
        linear-gradient(180deg, #f8fcfa 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--green-900);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 620px;
    font-size: clamp(46px, 7vw, 76px);
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
}

h3 {
    font-size: 19px;
}

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

.hero-copy p {
    max-width: 550px;
    margin-top: 22px;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.trust-row span {
    padding: 8px 12px;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 560px;
    box-shadow: var(--shadow);
    background: var(--green-50);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.section-head {
    margin-bottom: 34px;
}

.section-head p {
    max-width: 660px;
    margin-top: 12px;
    font-size: 17px;
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.categories,
.services {
    background: var(--soft);
}

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

.category-card {
    min-height: 142px;
    display: grid;
    align-content: space-between;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(18, 34, 27, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover,
.product-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.icon-chip {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: 8px;
}

.category-card strong {
    font-size: 15px;
    line-height: 1.25;
}

.category-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.woo-category-card .icon-chip {
    overflow: hidden;
}

.woo-category-card .icon-chip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-all-category-card {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    border-color: transparent;
}

.view-all-category-card .icon-chip {
    color: var(--green-800);
    background: var(--white);
}

.view-all-category-card small {
    color: rgba(255, 255, 255, .84);
}

.tone-rose .icon-chip,
.tone-pink .icon-chip {
    color: #b82260;
    background: #fff0f6;
}

.tone-sky .icon-chip,
.tone-aqua .icon-chip {
    color: #086f9f;
    background: #edf8ff;
}

.tone-sun .icon-chip {
    color: #8a6500;
    background: #fff8dd;
}

.tone-red .icon-chip {
    color: #b42e2e;
    background: #fff0f0;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.filter-tab.active {
    color: var(--white);
    background: var(--green-700);
    border-color: var(--green-700);
}

.shop-category-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(16, 166, 106, .08), transparent 28%),
        var(--white);
}

.shop-category-panel {
    overflow: hidden;
    padding: 32px 34px 36px;
    border: 1px solid rgba(223, 234, 228, .9);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 52px rgba(18, 34, 27, .10);
}

.shop-category-head {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.shop-category-head .eyebrow {
    display: none;
}

.shop-category-head h2 {
    position: relative;
    display: inline-flex;
    color: #111b16;
    font-size: clamp(30px, 4vw, 38px);
}

.shop-category-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--green-600);
}

.shop-category-head p {
    margin-top: 16px;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(18, 34, 27, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card.is-hidden {
    display: none;
}

.category-product-list {
    display: grid;
    gap: 32px;
}

.category-product-block {
    position: relative;
    overflow: hidden;
    padding: 0 0 28px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.category-product-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.category-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.category-row-head > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.category-row-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: 999px;
}

.category-row-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-row-icon svg {
    width: 25px;
    height: 25px;
}

.category-row-head h3 {
    color: #111b16;
    font-size: clamp(20px, 3vw, 26px);
}

.category-row-head .eyebrow {
    margin-bottom: 6px;
}

.category-row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--green-700);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(18, 34, 27, .06);
}

.category-row-actions [data-carousel-prev] {
    left: 8px;
}

.category-row-actions [data-carousel-next] {
    right: 8px;
}

.carousel-btn:hover {
    color: var(--white);
    background: var(--green-700);
    border-color: var(--green-700);
}

.carousel-btn:disabled {
    opacity: .38;
    cursor: default;
    transform: none;
}

.carousel-btn:disabled:hover {
    color: var(--green-700);
    background: var(--white);
    border-color: var(--line);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.category-row-head a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: var(--green-700);
    background: transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.category-row-head a svg {
    width: 18px;
    height: 18px;
}

.category-product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 252px);
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--green-600) var(--green-100);
}

.category-product-carousel .product-card {
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
}

.woo-product-card {
    position: relative;
    aspect-ratio: 0.78 / 1;
    overflow: hidden;
    display: grid;
    grid-template-rows: 56% 44%;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(18, 34, 27, .08);
    background: var(--white);
    isolation: isolate;
}

.product-card-open {
    min-height: 0;
    display: grid;
    grid-template-rows: 56% 44%;
    color: inherit;
}

.woo-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    min-height: 180px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green-50), #eef7f3);
}

.woo-product-card .product-thumb {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: var(--white);
    border: 0;
    border-bottom: 1px solid #edf1ee;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
}

.woo-product-card .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

.product-fallback {
    color: var(--green-700);
    background:
        radial-gradient(circle at 50% 42%, rgba(16, 166, 106, .10), transparent 34%),
        linear-gradient(180deg, #ffffff, #fbfefd);
}

.product-fallback .fallback-shape {
    position: relative;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 14px 18px rgba(18, 34, 27, .12));
}

.product-fallback .fallback-shape::before,
.product-fallback .fallback-shape::after,
.product-fallback .fallback-shape span {
    content: "";
    display: block;
}

.product-fallback-bottle .fallback-shape::before {
    width: 54px;
    height: 94px;
    border-radius: 14px 14px 18px 18px;
    background: linear-gradient(180deg, #f9fffc 0 26%, #d8f4e8 26% 58%, #ffffff 58%);
    border: 1px solid #cfe9dd;
}

.product-fallback-bottle .fallback-shape::after {
    position: absolute;
    top: -14px;
    width: 30px;
    height: 18px;
    border-radius: 6px 6px 2px 2px;
    background: var(--green-600);
}

.product-fallback-tube .fallback-shape::before {
    width: 108px;
    height: 46px;
    border-radius: 8px 20px 20px 8px;
    background: linear-gradient(90deg, #ffffff 0 36%, #dff7ee 36% 70%, #ffffff 70%);
    border: 1px solid #cfe9dd;
}

.product-fallback-tube .fallback-shape::after {
    position: absolute;
    right: -9px;
    width: 12px;
    height: 30px;
    border-radius: 3px;
    background: var(--green-600);
}

.product-fallback-jar .fallback-shape::before {
    width: 96px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #dff7ee);
    border: 1px solid #cfe9dd;
}

.product-fallback-jar .fallback-shape::after {
    position: absolute;
    top: -8px;
    width: 76px;
    height: 18px;
    border-radius: 50%;
    background: #f8fffb;
    border: 1px solid #cfe9dd;
}

.product-fallback-box .fallback-shape::before {
    width: 100px;
    height: 72px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0 48%, #dcf6ec 48%);
    border: 1px solid #cfe9dd;
}

.product-fallback-blister .fallback-shape::before {
    width: 108px;
    height: 62px;
    border-radius: 8px;
    background:
        radial-gradient(circle, #ffffff 0 5px, #bdebd7 6px 10px, transparent 11px) 0 0 / 27px 31px,
        linear-gradient(180deg, #f5fffa, #dff7ee);
    border: 1px solid #cfe9dd;
}

.pack {
    width: 82px;
    height: 112px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--white), #dcefe7);
    border: 1px solid rgba(8, 122, 77, .18);
    box-shadow: 0 20px 30px rgba(8, 122, 77, .14);
}

.pack::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 18px auto 0;
    border-radius: 8px;
    background: currentColor;
    opacity: .16;
}

.pill {
    position: absolute;
    width: 48px;
    height: 20px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(8, 122, 77, .14);
    box-shadow: 0 10px 18px rgba(18, 34, 27, .08);
}

.pill-one {
    right: 24%;
    bottom: 34px;
    transform: rotate(-22deg);
}

.pill-two {
    left: 22%;
    top: 44px;
    transform: rotate(18deg);
}

.product-green,
.product-mint {
    color: var(--green-700);
}

.product-lime {
    color: #7aa509;
}

.product-sky,
.product-aqua {
    color: #0c83a8;
}

.product-red {
    color: #bf3e3e;
}

.product-pink {
    color: #be3a78;
}

.product-teal {
    color: #0d8f82;
}

.product-body {
    padding: 18px;
}

.woo-product-card .product-body {
    position: relative;
    z-index: 1;
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 12px 12px 14px;
    background: var(--white);
}

.woo-product-card .product-category,
.woo-product-card .product-body p {
    display: none;
}

.woo-product-card .product-body h3 {
    margin: 0;
    color: var(--green-900);
    min-height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.18;
}

.woo-product-card .product-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.woo-product-card .product-meta strong {
    color: var(--green-700);
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woo-product-card .category-order-link {
    position: absolute;
    right: 10px;
    bottom: 12px;
    z-index: 3;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(16, 166, 106, .24);
}

.woo-product-card .category-order-link svg {
    width: 15px;
    height: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.carousel-dots span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d8ddd9;
}

.carousel-dots .active {
    background: var(--green-600);
}

.product-category {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.product-body h3 {
    margin-top: 6px;
}

.product-body p {
    min-height: 72px;
    margin-top: 8px;
    font-size: 14px;
}

.product-meta {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.product-meta strong {
    color: var(--green-900);
}

.order-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    color: var(--white);
    background: var(--green-700);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.order-link svg,
.hok-woo-whatsapp svg {
    width: 17px;
    height: 17px;
}

.hok-woo-whatsapp {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    padding: 0 16px;
    color: var(--white);
    background: var(--green-700);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.woo-catalog {
    background: var(--white);
}

.woo-shell {
    max-width: 1180px;
}

.woo-shell .woocommerce-products-header {
    margin-bottom: 28px;
}

.woo-shell .woocommerce-products-header__title,
.woo-shell .page-title {
    color: var(--green-900);
    font-size: clamp(34px, 5vw, 54px);
}

.woo-shell .term-description {
    max-width: 760px;
    margin-top: 12px;
}

.woo-shell .woocommerce-result-count,
.woo-shell .woocommerce-ordering {
    margin-bottom: 24px;
}

.woo-shell .woocommerce-ordering select {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.woo-shell ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 24px;
    margin: 0;
    padding: 0;
}

.woo-shell ul.products::before,
.woo-shell ul.products::after {
    display: none;
}

.woo-shell ul.products li.product {
    float: none;
    width: auto !important;
    margin: 0 !important;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(18, 34, 27, .05);
    overflow: hidden;
}

.woo-shell ul.products li.product {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    min-height: 100%;
}

.woocommerce .woo-shell ul.products[class*="columns-"] li.product,
.woocommerce-page .woo-shell ul.products[class*="columns-"] li.product {
    width: auto !important;
    margin-right: 0 !important;
}

.woo-shell ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0;
    padding: 14px;
    object-fit: contain;
    border-bottom: 1px solid #eef2ef;
}

.woo-shell ul.products li.product .woocommerce-loop-product__title {
    min-height: 46px;
    padding: 14px 14px 0;
    color: var(--green-900);
    font-size: 16px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.woo-shell ul.products li.product .price {
    display: block;
    padding: 8px 14px 0;
    color: #a78900;
    font-size: 15px;
    font-weight: 700;
}

.woo-shell ul.products li.product .button,
.woo-shell ul.products li.product .hok-woo-whatsapp {
    width: calc(100% - 28px);
    margin: 10px 14px 0;
}

.woo-shell ul.products li.product .hok-woo-whatsapp {
    margin-bottom: 14px;
}

.woo-shell ul.products li.product .button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.woo-shell div.product {
    display: grid !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: start;
    max-width: 1120px;
    margin-inline: auto;
}

.woo-shell div.product::before,
.woo-shell div.product::after {
    display: none !important;
}

.woo-shell div.product div.images,
.woocommerce-page .woo-shell div.product div.images,
.woocommerce .woo-shell div.product div.images {
    float: none;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
}

.woo-shell div.product div.images .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.woo-shell div.product div.images img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(18, 34, 27, .08);
}

.woo-shell div.product div.summary,
.woocommerce-page .woo-shell div.product div.summary,
.woocommerce .woo-shell div.product div.summary {
    float: none;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(18, 34, 27, .08);
}

.woo-shell div.product .product_title {
    color: var(--green-900);
    font-size: clamp(30px, 4vw, 46px);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.woo-shell div.product p.price,
.woo-shell div.product span.price {
    margin: 18px 0;
    color: var(--green-700);
    font-size: 24px;
    font-weight: 800;
}

.woo-shell div.product .woocommerce-product-details__short-description {
    margin: 18px 0;
    color: var(--muted);
}

.woo-shell div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 22px 0;
}

.woo-shell div.product form.cart .qty {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.woo-shell div.product form.cart .button,
.woo-shell div.product .hok-woo-whatsapp {
    min-height: 46px;
    padding-inline: 20px;
    border-radius: 999px;
}

.woo-shell div.product .woocommerce-tabs,
.woo-shell div.product .related,
.woo-shell div.product .upsells {
    grid-column: 1 / -1;
    margin-top: 28px;
}

.woo-shell div.product .woocommerce-tabs {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.woo-shell div.product .woocommerce-tabs ul.tabs {
    padding: 0;
}

.woo-shell div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--green-50);
}

.woo-shell div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--green-700);
}

.woo-shell div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--white);
}

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

.service-card {
    padding: 22px;
    min-height: 190px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(18, 34, 27, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-dot {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 8px var(--green-100);
}

.service-card p {
    margin-top: 10px;
    font-size: 14px;
}

.delivery-panel {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 36px;
    align-items: center;
    padding: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.delivery-panel h2,
.delivery-panel p,
.delivery-panel .eyebrow {
    color: var(--white);
}

.delivery-panel p {
    margin: 14px 0 26px;
    opacity: .9;
}

.steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-weight: 800;
}

.steps span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--green-900);
    background: var(--white);
    border-radius: 8px;
    font-size: 13px;
}

.contact {
    background: var(--green-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: stretch;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.contact-list a,
.contact-list span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 700;
}

.map-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(8, 122, 77, .08) 1px, transparent 1px),
        linear-gradient(rgba(8, 122, 77, .08) 1px, transparent 1px),
        var(--white);
    background-size: 28px 28px;
    box-shadow: var(--shadow);
}

.map-placeholder span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--green-700);
    border-radius: 8px;
}

.map-placeholder strong {
    font-size: 22px;
}

.inner-hero {
    background: linear-gradient(180deg, var(--green-50), var(--white));
    text-align: center;
}

.inner-hero p {
    margin: 16px auto 26px;
    max-width: 720px;
}

.page-content {
    padding-top: 30px;
}

.content-card {
    min-height: 260px;
}

.post-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.post-card h2 {
    font-size: 26px;
}

.site-footer {
    padding: 58px 0 118px;
    color: #dbeee6;
    background: var(--green-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 36px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 18px;
}

.site-footer p {
    max-width: 440px;
    color: #c7ded4;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 16px;
}

.site-footer a,
.site-footer span {
    display: block;
    color: #dbeee6;
    margin: 8px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.quick-floats {
    position: fixed;
    right: 22px;
    bottom: 104px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-float,
.whatsapp-float {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.phone-float {
    background: var(--green-700);
    box-shadow: 0 16px 32px rgba(8, 122, 77, .28);
}

.whatsapp-float {
    background: var(--green-600);
    box-shadow: 0 16px 32px rgba(32, 177, 90, .35);
}

.phone-float:hover,
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--green-800);
    box-shadow: 0 18px 38px rgba(8, 122, 77, .32);
}

.phone-float svg,
.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

.whatsapp-float span,
.phone-float span,
.joinchat__button__text,
.joinchat__tooltip,
.wa__btn_popup_txt,
.wa__btn_popup_icon + span,
.ht-ctc-chat .ctc_cta,
.ht-ctc-chat span,
.ctc-analytics span {
    display: none !important;
}

.category-product-carousel {
    grid-auto-columns: minmax(250px, 252px);
    grid-template-columns: none;
    grid-auto-flow: column;
    scroll-padding-inline: 2px;
    scroll-behavior: smooth;
}

.category-product-carousel::-webkit-scrollbar {
    height: 8px;
}

.category-product-carousel::-webkit-scrollbar-track {
    background: var(--green-100);
    border-radius: 999px;
}

.category-product-carousel::-webkit-scrollbar-thumb {
    background: rgba(8, 122, 77, .42);
    border-radius: 999px;
}

.category-product-carousel .product-card,
.category-product-carousel .view-all-product-card {
    height: 342px;
}

.woo-product-card {
    aspect-ratio: auto;
    grid-template-rows: 214px 128px;
    border-color: #dce9e2;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(18, 34, 27, .07);
}

.product-card-open {
    grid-template-rows: 214px 128px;
}

.woo-product-card .product-thumb,
.woo-shell .product-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    min-height: 0;
    background:
        radial-gradient(circle at 50% 36%, rgba(16, 166, 106, .10), transparent 38%),
        linear-gradient(180deg, #f6fffb 0%, #e4f7ee 100%);
}

.woo-product-card .product-thumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-fallback .fallback-text {
    display: block;
    max-width: 130px;
    color: var(--green-800);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.22;
    text-align: center;
}

.woo-product-card .product-body {
    align-content: end;
    grid-template-rows: minmax(48px, auto) 42px;
    gap: 10px;
    padding: 16px 16px 14px;
}

.woo-product-card .product-body h3 {
    font-size: 18px;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.woo-product-card .product-meta {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 0;
    padding-right: 48px;
}

.woo-product-card .product-meta strong {
    max-width: 100%;
    color: var(--green-700);
    font-size: 17px;
    font-weight: 800;
}

.woo-product-card .category-order-link {
    right: 16px;
    bottom: 14px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    background: var(--green-700);
}

.qlwapp__container,
.qlwapp,
.qlwapp__button,
.qlwapp-toggle,
.qlwapp__container--bottom-right,
.qlwapp__button--button {
    display: none !important;
}

.view-all-product-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(145deg, var(--green-900), var(--green-700));
    border-color: transparent;
}

.view-all-product-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--green-800);
    background: var(--white);
    border-radius: 999px;
}

.view-all-product-copy {
    display: grid;
    gap: 4px;
}

.view-all-product-copy strong {
    color: var(--white);
    font-size: 17px;
}

.view-all-product-copy small {
    max-width: 140px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.carousel-dots {
    min-height: 10px;
}

.carousel-dots:empty {
    display: none;
}

.carousel-dots span {
    width: 7px;
    height: 7px;
    transition: width .2s ease, background .2s ease;
}

.carousel-dots .active {
    width: 20px;
}

.woo-shell ul.products li.product {
    min-height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.woo-shell ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.woo-shell ul.products li.product a.woocommerce-LoopProduct-link {
    display: grid;
}

.woo-shell ul.products li.product a img,
.woo-shell ul.products li.product .product-fallback {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin: 0;
    padding: 16px;
    object-fit: contain;
    border-bottom: 1px solid #eef2ef;
}

.woo-shell ul.products li.product .woocommerce-loop-product__title {
    display: -webkit-box;
    min-height: 52px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.woo-shell ul.products li.product .price {
    color: var(--green-700);
    font-weight: 800;
}

.woo-shell div.product {
    gap: 34px;
}

.woo-shell div.product {
    display: grid !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    gap: clamp(28px, 5vw, 62px);
    max-width: 1120px;
    margin-inline: auto;
}

.woo-shell div.product div.images,
.woocommerce-page .woo-shell div.product div.images,
.woocommerce .woo-shell div.product div.images {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(18, 34, 27, .08);
}

.woo-shell div.product div.images img,
.woo-shell div.product div.images .product-fallback {
    width: 100%;
    min-height: 0;
    max-height: 540px;
    padding: 22px;
    border: 0;
    box-shadow: none;
    object-fit: contain;
}

.woo-shell div.product div.summary,
.woocommerce-page .woo-shell div.product div.summary,
.woocommerce .woo-shell div.product div.summary {
    display: grid;
    gap: 16px;
    padding: 30px;
}

.woo-shell div.product .product_title {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.16;
}

.woo-shell div.product p.price,
.woo-shell div.product span.price {
    margin: -4px 0 0;
    color: var(--green-700);
    font-size: 25px;
}

.single-product-category-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    color: var(--green-800);
    background: var(--green-100);
    border: 1px solid #cfe9dd;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.woo-shell div.product form.cart {
    margin: 4px 0 0;
}

.quantity.hok-qty-control {
    display: inline-grid;
    grid-template-columns: 42px 56px 42px;
    align-items: center;
    min-height: 46px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--green-50);
}

.quantity.hok-qty-control .qty {
    width: 56px;
    min-height: 44px;
    padding: 0;
    text-align: center;
    border: 0;
    border-inline: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    font-weight: 800;
}

.hok-qty-btn {
    width: 42px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--green-800);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
}

.hok-qty-btn:hover {
    background: var(--green-100);
}

.woo-shell div.product form.cart .button,
.woo-shell div.product .hok-woo-whatsapp {
    min-height: 48px;
    padding-inline: 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
}

.woo-shell div.product form.cart .button {
    color: var(--white);
    background: var(--green-700);
}

.woo-shell div.product .hok-woo-whatsapp {
    width: fit-content;
    margin-top: 0;
    background: var(--green-800);
}

.woo-shell div.product .related ul.products,
.woo-shell div.product .upsells ul.products {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 210px);
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
}

.woo-shell div.product .related > h2,
.woo-shell div.product .upsells > h2 {
    margin-bottom: 18px;
    font-size: clamp(24px, 3vw, 34px);
}

.single-product .woo-catalog {
    padding-top: clamp(34px, 5vw, 58px);
}

.single-product .woo-shell div.product {
    grid-template-columns: minmax(360px, 1fr) minmax(420px, .92fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.single-product .woo-shell div.product div.images,
.single-product.woocommerce-page .woo-shell div.product div.images,
.single-product.woocommerce .woo-shell div.product div.images {
    display: grid;
    place-items: center;
    min-height: 460px;
    aspect-ratio: 1 / 1.04;
    padding: clamp(22px, 4vw, 42px);
}

.single-product .woo-shell div.product div.images .woocommerce-product-gallery,
.single-product .woo-shell div.product div.images .woocommerce-product-gallery__wrapper,
.single-product .woo-shell div.product div.images .woocommerce-product-gallery__image {
    width: 100%;
    height: 100%;
}

.single-product .woo-shell div.product div.images .woocommerce-product-gallery__image {
    display: grid;
    place-items: center;
}

.single-product .woo-shell div.product div.images img,
.single-product .woo-shell div.product div.images .product-fallback {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
}

.single-product .woo-shell div.product div.summary,
.single-product.woocommerce-page .woo-shell div.product div.summary,
.single-product.woocommerce .woo-shell div.product div.summary {
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
}

.single-product .woo-shell div.product .product_title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.16;
}

.woo-shell div.product .related ul.products li.product,
.woo-shell div.product .upsells ul.products li.product {
    scroll-snap-align: start;
}

.quick-fab {
    position: fixed;
    right: 22px;
    bottom: 104px;
    z-index: 80;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.quick-fab-actions {
    display: grid;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px) scale(.96);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.quick-fab.is-open .quick-fab-actions {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.quick-fab-toggle,
.quick-fab-action {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--green-700);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(8, 122, 77, .30);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.quick-fab-action {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--green-800);
}

.quick-fab-toggle:hover,
.quick-fab-action:hover {
    transform: translateY(-2px);
    background: var(--green-900);
}

.quick-fab-action::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    padding: 5px 9px;
    color: var(--white);
    background: var(--green-900);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translate(6px, -50%);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.quick-fab-action:hover::before,
.quick-fab-action:focus-visible::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.quick-fab svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 860px) {
    .joinchat__button,
    .wa__btn_popup,
    .ht-ctc-chat,
    .ctc-analytics {
        max-width: 52px !important;
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
        border-radius: 999px !important;
        overflow: hidden !important;
    }
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 70;
    width: min(520px, calc(100% - 24px));
    min-height: 66px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    transform: translateX(-50%);
    border: 1px solid rgba(223, 234, 228, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(18, 34, 27, .18);
    backdrop-filter: blur(18px);
}

.bottom-nav a {
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.bottom-nav svg {
    width: 20px;
    height: 20px;
}

.bottom-nav a:hover,
.bottom-nav a:focus {
    color: var(--green-700);
}

@media (max-width: 1040px) {
    .hero-grid,
    .delivery-panel,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 480px;
    }

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

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

    .category-product-carousel {
        grid-auto-columns: minmax(220px, 232px);
        gap: 16px;
    }

    .woo-shell ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .single-product .woo-shell div.product {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .single-product .woo-shell div.product div.images,
    .single-product.woocommerce-page .woo-shell div.product div.images,
    .single-product.woocommerce .woo-shell div.product div.images {
        min-height: 360px;
        aspect-ratio: 1 / .82;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 16px auto;
        display: none;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

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

    .primary-nav .menu {
        display: grid;
        gap: 4px;
    }

    .primary-nav a {
        min-height: 48px;
        width: 100%;
    }

    .header-actions {
        display: none;
    }

    .split-head {
        align-items: start;
        flex-direction: column;
    }

    .bottom-nav {
        display: grid;
    }

    .quick-floats {
        right: 18px;
        bottom: 104px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .single-product,
    .single-product #page,
    .single-product #content,
    .single-product .site,
    .single-product .woo-catalog,
    .single-product .woo-shell,
    .single-product .woocommerce,
    .single-product .product,
    .single-product .summary,
    .single-product .woocommerce-product-gallery {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .single-product .woo-catalog {
        padding: 22px 0 132px;
    }

    .single-product .woo-shell {
        width: 100%;
        padding: 0 16px;
        margin: 0 auto;
    }

    .single-product .woo-shell div.product {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px;
        margin: 0;
    }

    .single-product .woo-shell div.product div.images,
    .single-product.woocommerce-page .woo-shell div.product div.images,
    .single-product.woocommerce .woo-shell div.product div.images,
    .single-product .woo-shell div.product div.summary,
    .single-product.woocommerce-page .woo-shell div.product div.summary,
    .single-product.woocommerce .woo-shell div.product div.summary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .single-product .woo-shell div.product div.images,
    .single-product.woocommerce-page .woo-shell div.product div.images,
    .single-product.woocommerce .woo-shell div.product div.images {
        min-height: 0;
        aspect-ratio: auto;
        padding: 14px;
    }

    .single-product .woo-shell div.product div.images img,
    .single-product .woo-shell div.product div.images .product-fallback {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 260px;
        min-height: 190px;
        object-fit: contain;
        padding: 8px;
    }

    .single-product .woo-shell div.product div.summary,
    .single-product.woocommerce-page .woo-shell div.product div.summary,
    .single-product.woocommerce .woo-shell div.product div.summary {
        gap: 12px;
        padding: 18px;
    }

    .single-product .woo-shell div.product .product_title {
        font-size: clamp(23px, 7vw, 32px);
        line-height: 1.15;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .single-product .woo-shell div.product p.price,
    .single-product .woo-shell div.product span.price {
        font-size: 21px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .single-product .woo-shell div.product form.cart {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 4px 0 0;
        box-sizing: border-box;
    }

    .single-product .quantity.hok-qty-control,
    .single-product .woo-shell div.product form.cart .quantity {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        gap: 8px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .single-product .quantity.hok-qty-control .hok-qty-btn {
        flex: 1 1 0;
        min-width: 0;
    }

    .single-product .quantity.hok-qty-control .qty {
        flex: 0 0 64px;
        width: 64px;
        max-width: 64px;
        text-align: center;
    }

    .single-product .woo-shell div.product form.cart .button,
    .single-product .woo-shell div.product .single_add_to_cart_button,
    .single-product .woo-shell div.product .hok-woo-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 48px;
        margin: 0;
        padding: 0 16px;
        border-radius: 24px;
        box-sizing: border-box;
        white-space: normal;
    }

    .single-product .woo-shell div.product form.cart .button {
        margin-top: 2px;
    }

    .single-product .woo-shell div.product .hok-woo-whatsapp {
        display: inline-flex;
        margin-top: 0;
    }

    .quick-fab {
        right: 16px;
        bottom: 95px;
        z-index: 1000;
    }

    .quick-fab-toggle {
        width: 50px;
        height: 50px;
    }

    .quick-fab-action {
        width: 42px;
        height: 42px;
    }

    .bottom-nav {
        left: 16px;
        right: 16px;
        bottom: 10px;
        width: auto;
        max-width: 420px;
        min-height: 64px;
        margin: 0 auto;
        transform: none;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        z-index: 999;
    }

    .bottom-nav a {
        min-width: 0;
        overflow: hidden;
        padding-inline: 2px;
    }

    .bottom-nav span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .single-product #content,
    .single-product .woo-catalog,
    .single-product .woo-shell,
    .single-product .woo-shell div.product,
    .single-product .woo-shell div.product div.images,
    .single-product .woo-shell div.product div.summary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .single-product .woo-shell {
        padding-inline: 16px;
    }

    .single-product .woocommerce-product-gallery,
    .single-product .woocommerce-product-gallery__wrapper,
    .single-product .woocommerce-product-gallery__image,
    .single-product .summary,
    .single-product form.cart {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .single-product .product_title,
    .single-product .woocommerce-product-details__short-description,
    .single-product .summary,
    .single-product .price {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .container,
    .narrow {
        width: min(100% - 28px, 1120px);
    }

    .section-pad {
        padding: 58px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .primary-nav {
        inset: 72px 14px auto;
    }

    .brand-text {
        font-size: 15px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 31px;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-grid {
        gap: 30px;
    }

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

    .hero-actions .btn {
        flex: 1 1 150px;
        padding-inline: 16px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 360px;
    }

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

    .categories .section-head {
        margin-bottom: 22px;
    }

    .category-card {
        min-height: 126px;
        padding: 14px;
    }

    .category-card strong {
        font-size: 14px;
    }

    .category-card small {
        font-size: 11px;
    }

    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
    }

    .category-row-head {
        align-items: center;
        flex-direction: row;
    }

    .shop-category-panel {
        width: min(100% - 20px, 1120px);
        padding: 24px 14px 28px;
    }

    .shop-category-head {
        margin-bottom: 24px;
    }

    .category-row-icon {
        width: 42px;
        height: 42px;
    }

    .category-row-head h3 {
        font-size: 20px;
    }

    .category-row-head a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .carousel-btn {
        display: none;
    }

    .category-row-actions [data-carousel-prev] {
        left: -12px;
    }

    .category-row-actions [data-carousel-next] {
        right: -12px;
    }

    .category-product-carousel {
        grid-auto-columns: minmax(220px, 74vw);
        gap: 14px;
    }

    .category-product-carousel .product-card,
    .category-product-carousel .view-all-product-card {
        height: 322px;
    }

    .woo-product-card,
    .product-card-open {
        grid-template-rows: 194px 128px;
    }

    .woo-product-card .product-body h3 {
        font-size: 16px;
    }

    .product-fallback .fallback-shape {
        transform: scale(.84);
    }

    .product-grid .product-card {
        flex: 0 0 min(84vw, 330px);
        scroll-snap-align: start;
    }

    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .delivery-panel {
        padding: 26px;
    }

    .steps li {
        align-items: flex-start;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact-list {
        gap: 9px;
        margin: 18px 0;
    }

    .contact-list a,
    .contact-list span {
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.35;
    }

    .footer-bottom {
        display: grid;
    }

    .site-footer {
        padding-bottom: 104px;
    }

    .woo-shell ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .woo-shell ul.products li.product .woocommerce-loop-product__title {
        min-height: 44px;
        padding: 12px 12px 0;
        font-size: 14px;
    }

    .woo-shell ul.products li.product .price {
        padding: 6px 12px 0;
        font-size: 14px;
    }

    .woo-shell ul.products li.product .button,
    .woo-shell ul.products li.product .hok-woo-whatsapp {
        width: calc(100% - 24px);
        margin-inline: 12px;
    }

    .woo-shell div.product div.summary,
    .woocommerce-page .woo-shell div.product div.summary,
    .woocommerce .woo-shell div.product div.summary {
        padding: 20px;
    }

    .woo-shell div.product div.images img {
        max-height: 380px;
        padding: 18px;
    }

    .single-product .woo-shell div.product div.images,
    .single-product.woocommerce-page .woo-shell div.product div.images,
    .single-product.woocommerce .woo-shell div.product div.images {
        min-height: 0;
        aspect-ratio: auto;
        padding: 14px;
    }

    .single-product .woo-catalog {
        padding-top: 24px;
    }

    .single-product .woo-shell div.product {
        gap: 16px;
    }

    .single-product .woo-shell div.product div.images img,
    .single-product .woo-shell div.product div.images .product-fallback {
        height: auto;
        max-height: 260px;
        min-height: 220px;
        padding: 10px;
    }

    .single-product .woo-shell div.product div.summary,
    .single-product.woocommerce-page .woo-shell div.product div.summary,
    .single-product.woocommerce .woo-shell div.product div.summary {
        gap: 12px;
        padding: 18px;
    }

    .single-product .woo-shell div.product .product_title {
        font-size: 25px;
        line-height: 1.15;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    .single-product .woo-shell div.product p.price,
    .single-product .woo-shell div.product span.price {
        font-size: 21px;
    }

    .single-product-category-badge {
        min-height: 28px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .single-product .woo-shell div.product form.cart {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
    }

    .single-product .quantity.hok-qty-control {
        width: 100%;
        grid-template-columns: 1fr 64px 1fr;
    }

    .single-product .woo-shell div.product form.cart .button,
    .single-product .woo-shell div.product .hok-woo-whatsapp {
        width: 100%;
        min-height: 46px;
        padding-inline: 14px;
        font-size: 14px;
    }

    .single-product .woo-shell div.product .woocommerce-product-details__short-description {
        margin: 4px 0;
        font-size: 14px;
    }

    .order-link span,
    .hok-woo-whatsapp span {
        display: none;
    }

    .woo-shell div.product .hok-woo-whatsapp span {
        display: inline !important;
    }

    .woo-product-card .order-link,
    body:not(.single-product) .hok-woo-whatsapp,
    .woo-shell ul.products li.product .hok-woo-whatsapp {
        width: 42px;
        min-width: 42px;
        padding-inline: 0;
        border-radius: 999px;
    }

    .quick-fab {
        right: 16px;
        bottom: 94px;
    }

    .quick-fab-toggle {
        width: 52px;
        height: 52px;
    }

    .quick-fab-action {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 38px;
    }

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

    .category-card {
        min-height: 118px;
    }

    .category-product-carousel {
        grid-auto-columns: minmax(210px, 82vw);
        gap: 12px;
    }

    .category-product-carousel .product-card,
    .category-product-carousel .view-all-product-card {
        height: 312px;
    }

    .woo-product-card,
    .product-card-open {
        grid-template-rows: 186px 126px;
    }

    .woo-product-card .product-body {
        grid-template-rows: minmax(46px, auto) 40px;
        gap: 8px;
        padding: 14px;
    }

    .woo-product-card .product-meta strong {
        font-size: 15px;
        max-width: 100%;
    }

    .woo-product-card .product-meta {
        padding-right: 42px;
    }

    .woo-product-card .category-order-link {
        right: 12px;
        bottom: 14px;
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
    }

    .bottom-nav {
        min-height: 64px;
        border-radius: 24px;
    }

    .woo-shell ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .woo-shell div.product .product_title {
        font-size: 24px;
    }

    .woo-shell div.product form.cart {
        display: grid;
    }

    .woo-shell div.product form.cart .button,
    .woo-shell div.product .hok-woo-whatsapp {
        width: 100%;
    }

    .single-product .woo-shell div.product div.images img,
    .single-product .woo-shell div.product div.images .product-fallback {
        max-height: 230px;
        min-height: 190px;
    }

    .single-product .woo-shell div.product div.summary,
    .single-product.woocommerce-page .woo-shell div.product div.summary,
    .single-product.woocommerce .woo-shell div.product div.summary {
        padding: 16px;
    }

    .single-product .woo-shell div.product .product_title {
        font-size: 23px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .single-product .woo-shell div.product p.price,
    .single-product .woo-shell div.product span.price {
        font-size: 20px;
    }

    .quantity.hok-qty-control {
        width: 100%;
        grid-template-columns: 1fr 68px 1fr;
    }
}
