:root {
    --ink: #11110f;
    --muted: #68645d;
    --paper: #f6f2ea;
    --panel: #ebe4d8;
    --line: rgba(17, 17, 15, 0.14);
    --accent: #9c8460;
    --white: #fffdfa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-y: auto;
}

html {
    overflow-y: auto;
    scroll-behavior: smooth;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(246, 242, 234, 0.9);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--ink);
    font-size: 12px;
    letter-spacing: 0;
}

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

.site-nav ul {
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.header-cta,
.button,
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    min-height: calc(100vh - 76px);
    padding: clamp(56px, 7vw, 110px) clamp(20px, 6vw, 88px) 56px;
    align-items: end;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 1.04;
    font-weight: 500;
}

.lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 19px;
}

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

.button.primary,
.footer-cta {
    background: var(--ink);
    color: var(--white);
}

.button.secondary {
    background: transparent;
    color: var(--ink);
}

.hero-panel {
    min-height: 360px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(160deg, rgba(17, 17, 15, 0.08), rgba(156, 132, 96, 0.18)),
        var(--panel);
    border: 1px solid var(--line);
}

.hero-panel span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel strong {
    display: block;
    margin: 10px 0 18px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}

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

.proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof article {
    padding: 30px clamp(20px, 4vw, 52px);
    border-right: 1px solid var(--line);
}

.proof article:last-child {
    border-right: 0;
}

.proof span,
.process span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.proof h2 {
    margin: 10px 0 8px;
    font-size: 22px;
    font-weight: 500;
}

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

.section {
    padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 88px);
}

.section > h2 {
    max-width: 760px;
    margin-bottom: 40px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 500;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-grid article {
    min-height: 250px;
    padding: 28px;
    background: var(--paper);
}

.service-grid h3 {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 500;
}

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

.process {
    background: var(--ink);
    color: var(--white);
}

.process .eyebrow,
.process span {
    color: #c5ad87;
}

.process ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 253, 250, 0.18);
}

.process li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 253, 250, 0.18);
    font-size: 20px;
}

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

.case-strip article {
    min-height: 180px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    font-size: 20px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: clamp(44px, 6vw, 80px) clamp(20px, 6vw, 88px);
    background: var(--ink);
    color: var(--white);
}

.site-footer h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 500;
}

.footer-note {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 253, 250, 0.62);
    font-size: 13px;
}

.aqara-products-page {
    background: var(--paper);
}

.aqara-hero {
    padding: clamp(58px, 8vw, 118px) clamp(20px, 6vw, 88px) clamp(38px, 6vw, 76px);
    border-bottom: 1px solid var(--line);
}

.aqara-hero h1 {
    max-width: 980px;
    margin-bottom: 22px;
}

.aqara-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.aqara-meta span,
.aqara-meta a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 8px 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.aqara-catalog {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    padding: 34px clamp(20px, 6vw, 88px) clamp(70px, 8vw, 120px);
    min-width: 0;
    overflow-x: hidden;
}

.aqara-sidebar {
    position: sticky;
    top: 86px;
    z-index: 10;
    align-self: start;
    max-height: calc(100vh - 108px);
    overflow: auto;
    border: 1px solid var(--line);
    background: rgba(255, 253, 250, 0.42);
    backdrop-filter: blur(14px);
    max-width: 100%;
    overflow: hidden;
}

.aqara-sidebar p {
    margin: 0;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.aqara-sidebar nav {
    display: grid;
}

.aqara-sidebar a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
}

.aqara-sidebar a.active {
    background: var(--ink);
    color: var(--white);
}

.aqara-sidebar a.active small {
    color: rgba(255, 253, 250, 0.7);
}

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

.aqara-sidebar small {
    color: var(--muted);
    font-size: 12px;
}

.aqara-product-groups {
    display: grid;
    gap: 64px;
    min-width: 0;
}

.aqara-category {
    scroll-margin-top: 96px;
}

.aqara-category[hidden] {
    display: none;
}

.aqara-category-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.aqara-category-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 500;
}

.aqara-section {
    margin-top: 30px;
}

.aqara-section > h3 {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 600;
}

.aqara-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.aqara-product-card {
    position: relative;
    display: grid;
    min-height: 360px;
    grid-template-rows: minmax(210px, 1fr) auto;
    overflow: visible;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.aqara-product-card:hover,
.aqara-product-card:focus-visible {
    border-color: rgba(17, 17, 15, 0.42);
    box-shadow: 0 14px 34px rgba(17, 17, 15, 0.08);
    transform: translateY(-2px);
    outline: 0;
}

.aqara-product-image {
    display: grid;
    min-height: 230px;
    place-items: center;
    padding: 28px;
    background: linear-gradient(180deg, #f8f6f0, #eee7dc);
}

.aqara-product-image img {
    display: block;
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    transition: transform 180ms ease;
}

.aqara-product-card:hover img {
    transform: translateY(-4px);
}

.aqara-product-copy {
    padding: 20px;
    border-top: 1px solid var(--line);
}

.aqara-product-copy p {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.aqara-product-copy h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.24;
    font-weight: 500;
}

.aqara-product-copy span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.aqara-category-source {
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.aqara-category-source a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.aqara-product-detail {
    display: grid;
    gap: 16px;
}

.aqara-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.aqara-detail-head button,
.aqara-detail-head a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.aqara-detail-head button {
    background: var(--ink);
    color: var(--white);
}

.aqara-detail-product {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    border: 1px solid var(--line);
    background: var(--white);
}

.aqara-detail-product-image {
    display: grid;
    place-items: center;
    min-height: 380px;
    padding: 36px;
    background: linear-gradient(180deg, #f8f6f0, #eee7dc);
}

.aqara-detail-product-image img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.aqara-detail-product-copy {
    display: grid;
    align-content: center;
    padding: clamp(28px, 5vw, 70px);
}

.aqara-detail-product-copy p {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.aqara-detail-product-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 500;
}

.aqara-detail-product-copy span {
    color: var(--muted);
    font-size: 20px;
}

.aqara-detail-full {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.aqara-detail-full h3 {
    margin: 0;
    padding: 24px clamp(20px, 4vw, 46px);
    border-bottom: 1px solid var(--line);
    color: var(--accent);
    font-size: 18px;
}

.aqara-detail-full img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.aqara-source-note {
    padding: 24px clamp(20px, 6vw, 88px) 40px;
    border-top: 1px solid var(--line);
}

.aqara-source-note p {
    max-width: 980px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.shop-section {
    padding: clamp(52px, 7vw, 96px) clamp(20px, 6vw, 88px);
}

.shop-section.compact {
    padding-top: 0;
}

.shop-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.shop-section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.12;
    font-weight: 500;
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: clamp(22px, 4vw, 48px);
    align-items: start;
}

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

.shop-product-card {
    display: grid;
    min-height: 480px;
    grid-template-rows: minmax(230px, 1fr) auto;
    border: 1px solid var(--line);
    background: var(--white);
}

.shop-product-image {
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(180deg, #f8f6f0, #eee7dc);
}

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

.shop-product-copy {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-top: 1px solid var(--line);
}

.shop-product-copy p {
    margin: 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.shop-product-copy h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.shop-product-copy span {
    color: var(--muted);
    font-size: 14px;
}

.shop-product-copy strong {
    font-size: 19px;
}

.shop-add-button,
.shop-checkout-button,
.woocommerce-shop-frame .button,
.woocommerce-shop-frame button.button,
.woocommerce-shop-frame input.button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    padding: 10px 16px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.shop-cart-panel {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 22px;
}

.shop-cart-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.shop-cart-head .eyebrow {
    margin: 0;
}

.shop-cart-items {
    display: grid;
    gap: 12px;
    min-height: 92px;
}

.shop-empty-cart,
.shop-cart-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.shop-cart-item strong,
.shop-cart-item span {
    display: block;
}

.shop-cart-item span {
    color: var(--muted);
    font-size: 13px;
}

.shop-qty {
    display: grid;
    grid-template-columns: 34px 34px 34px;
    align-items: center;
    border: 1px solid var(--line);
}

.shop-qty button {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
}

.shop-qty span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
}

.shop-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    font-size: 18px;
}

.shop-checkout-button {
    width: 100%;
}

.shop-setup-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.shop-setup-grid article {
    min-height: 230px;
    padding: 26px;
    background: var(--paper);
}

.shop-setup-grid span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.shop-setup-grid h3 {
    margin: 14px 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.shop-setup-grid p {
    margin: 0;
    color: var(--muted);
}

.woocommerce-shop-frame ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
}

.woocommerce-shop-frame ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 18px;
}

.woocommerce-shop-frame ul.products li.product a img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f8f6f0;
}

.woocommerce-shop-frame ul.products li.product .woocommerce-loop-product__title {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
}

.woocommerce-shop-frame .price {
    color: var(--ink);
    font-weight: 700;
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

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

    .proof,
    .service-grid,
    .case-strip,
    .aqara-catalog,
    .aqara-category-head,
    .shop-layout,
    .shop-section-head,
    .shop-setup-grid,
    .woocommerce-shop-frame ul.products {
        grid-template-columns: 1fr;
    }

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

    .shop-cart-panel {
        position: static;
    }

    .aqara-sidebar {
        position: sticky;
        top: 66px;
        max-height: none;
        overflow: hidden;
    }

    .aqara-sidebar nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .aqara-sidebar a {
        min-width: 132px;
        flex: 0 0 auto;
    }

    .proof article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand-text {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-cta {
        padding: 8px 12px;
    }

    .hero {
        padding: 42px 16px 36px;
    }

    h1 {
        font-size: 42px;
    }

    .lead {
        font-size: 17px;
    }

    .hero-panel {
        min-height: 260px;
    }

    .section,
    .site-footer,
    .aqara-hero,
    .aqara-catalog,
    .aqara-source-note,
    .shop-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aqara-product-card {
        min-height: 320px;
    }

    .process li {
        grid-template-columns: 48px 1fr;
        font-size: 17px;
    }

}

.woocommerce-main {
    min-height: 70vh;
    padding: clamp(44px, 6vw, 86px) clamp(20px, 6vw, 88px);
}

.woocommerce-main .woocommerce-breadcrumb {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 13px;
}

.woocommerce-main h1,
.woocommerce-main .page-title {
    margin-bottom: 22px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 500;
}

.woocommerce-main .woocommerce-result-count {
    color: var(--muted);
}

.woocommerce-main .woocommerce-ordering select {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
}

.woocommerce-main ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    padding: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

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

.woocommerce-main ul.products li.product {
    width: auto;
    margin: 0;
    padding: 22px;
    float: none;
    background: var(--paper);
}

.woocommerce-main ul.products li.product a img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    background: var(--panel);
}

.woocommerce-main ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    padding: 0;
    margin: 18px 0 8px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
}

.woocommerce-main ul.products li.product .price {
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.woocommerce-main .button,
.woocommerce-main button.button,
.woocommerce-main a.button,
.woocommerce-main input.button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.woocommerce-main .quantity .qty {
    min-height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
}

.woocommerce-main table.shop_table {
    border-color: var(--line);
    border-radius: 0;
    background: var(--white);
}

.woocommerce-main table.shop_table th,
.woocommerce-main table.shop_table td {
    border-color: var(--line);
}

.woocommerce-main .woocommerce-message,
.woocommerce-main .woocommerce-info,
.woocommerce-main .woocommerce-error {
    border-top-color: var(--accent);
    background: var(--white);
    color: var(--ink);
}

@media (max-width: 900px) {
    .woocommerce-main ul.products {
        grid-template-columns: 1fr;
    }
}
/* mobile-nav-row-fix */
@media(max-width:900px){.site-header{flex-wrap:wrap;align-items:center;gap:12px 16px}.site-nav{display:block!important;order:3;flex:1 0 100%;width:100%;overflow-x:auto;padding-top:2px}.site-nav ul{gap:18px;min-width:max-content;font-size:14px;white-space:nowrap}.site-nav a{display:inline-flex;min-height:34px;align-items:center}}
/* woocommerce-mobile-single-column */
@media(max-width:900px){body .woocommerce-main ul.products{display:grid!important;grid-template-columns:1fr!important;gap:1px!important;width:100%!important}body .woocommerce-main ul.products li.product,body.woocommerce .woocommerce-main ul.products li.product,body.woocommerce-page .woocommerce-main ul.products li.product{float:none!important;clear:none!important;width:100%!important;max-width:none!important;margin:0!important;box-sizing:border-box!important}body .woocommerce-main ul.products li.product a img{width:100%!important}}
@media(max-width:560px){body .woocommerce-main{padding-left:16px;padding-right:16px}body .woocommerce-main ul.products li.product{padding:20px!important}}
/* site-footer-home-only-fix */
body:not(.home) .site-footer{display:none!important}
.footer-note{display:none!important}
/* line-modal-confirm-fix */
#line-modal-confirm[hidden]{display:none}#line-modal-confirm{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:20px;background:rgba(17,17,15,.48)}.line-modal-confirm-panel{position:relative;width:min(460px,100%);padding:30px;border:1px solid var(--line);background:var(--white);box-shadow:0 24px 60px rgba(17,17,15,.22)}.line-modal-confirm-panel h2{margin-bottom:12px;font-size:28px;line-height:1.2}.line-modal-confirm-panel p{color:var(--muted)}.line-modal-confirm-close{position:absolute;top:12px;right:12px;width:36px;height:36px;border:1px solid var(--line);background:transparent;color:var(--ink);font-size:18px}.line-modal-confirm-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.line-modal-open{overflow:hidden}
