:root {
    --ink: #111;
    --muted: #6e6861;
    --paper: #fff;
    --cream: #f3eee7;
    --line: #e5e0da;
    --rose: #c88682;
    --shadow: 0 18px 60px rgba(45, 34, 23, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #f7f4ef;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.page-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(0,0,0,.06);
    backdrop-filter: blur(16px);
}
.header-inner {
    width: min(1260px, calc(100% - 48px));
    height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    font-family: "Songti SC", SimSun, Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .08em;
    white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: 13px; }
.desktop-nav a { padding: 34px 0 30px; border-bottom: 2px solid transparent; }
.desktop-nav a:hover { border-color: #111; }
.header-actions { display: flex; align-items: center; }
.icon-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.icon-button svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-button, .mobile-menu { display: none; }
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: start center;
    padding: 112px 24px 30px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .24s ease, visibility .24s ease;
}
.search-modal.is-open { visibility: visible; opacity: 1; }
.search-modal-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(20, 17, 14, .58);
    cursor: default;
    backdrop-filter: blur(5px);
}
.search-dialog {
    position: relative;
    width: min(720px, 100%);
    padding: 32px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 30px 90px rgba(0,0,0,.24);
    transform: translateY(-18px) scale(.985);
    transition: transform .24s ease;
}
.search-modal.is-open .search-dialog { transform: translateY(0) scale(1); }
.search-dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.search-dialog-heading span { color: #8b8177; font-size: 12px; letter-spacing: .12em; }
.search-dialog-heading h2 { margin: 5px 0 0; font-size: 30px; }
.search-close {
    width: 40px;
    height: 40px;
    padding: 0 0 4px;
    border: 1px solid #ded8d1;
    border-radius: 50%;
    background: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.modal-search-form { display: grid; gap: 20px; }
.modal-search-form label { display: grid; gap: 8px; }
.modal-search-form label > span { color: #665f58; font-size: 13px; }
.modal-search-input { position: relative; }
.modal-search-input svg {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 21px;
    fill: none;
    stroke: #5e5750;
    stroke-width: 1.8;
    transform: translateY(-50%);
}
.modal-search-form input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #d9d3cc;
    border-radius: 9px;
    outline: none;
    background: #fcfbf9;
}
.modal-search-input input { padding-left: 48px; font-size: 16px; }
.modal-search-form input:focus { border-color: #655c54; box-shadow: 0 0 0 3px rgba(80,70,60,.08); }
.modal-price-fields { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: end; }
.modal-price-fields > i { padding-bottom: 17px; color: #8b8177; font-style: normal; }
.modal-search-submit {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: white;
    border: 0;
    border-radius: 9px;
    background: #111;
    cursor: pointer;
}
.modal-search-submit svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.modal-clear-search { display: block; margin-top: 18px; color: #756c63; text-align: center; font-size: 13px; }
.search-modal-open { overflow: hidden; }

.hero {
    position: relative;
    height: 510px;
    overflow: hidden;
    background: #e4ddd3;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.hero-slide.active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.hero-slide-inner {
    width: min(1120px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 50px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.hero-content p { margin: 0 0 12px; font-size: 12px; letter-spacing: .18em; }
.hero h1 { max-width: 600px; margin: 0 0 10px; font-size: clamp(34px, 4.2vw, 55px); font-weight: 600; letter-spacing: .05em; }
.hero-price { margin-bottom: 28px; font-size: 26px; font-weight: 600; }
.hero-product-image {
    position: relative;
    height: 440px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 38px 18px 38px 18px;
    background:
        radial-gradient(circle at 65% 38%, rgba(255,255,255,.72), transparent 43%),
        linear-gradient(145deg, #d8cbbb, #eee7de);
    box-shadow: 0 24px 55px rgba(63, 48, 33, .14);
}
.hero-product-image::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 16px;
    height: 28px;
    border-radius: 50%;
    background: rgba(66,48,30,.16);
    filter: blur(16px);
}
.hero-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 26px 10px 26px 10px;
    background: #e7ddd0;
}
.hero-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
    filter: contrast(1.025) saturate(1.02);
    transition: transform .55s ease;
}
.hero-product-image:hover img { transform: scale(1.018); }
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
}
.button-dark { color: white; background: #070707; }
.button-dark:hover { background: #27221e; }
.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 22px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    cursor: pointer;
}
.hero-dots button.active { width: 25px; border-radius: 999px; background: #111; }
.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}
.hero-arrow:hover { background: white; }
.hero-arrow-prev { left: max(18px, calc((100% - 1280px) / 2)); }
.hero-arrow-next { right: max(18px, calc((100% - 1280px) / 2)); }

.catalog { padding: 54px 0 90px; }
.catalog h2, .inline-contact h2 { margin: 0 0 30px; font-size: 33px; }
.catalog-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.catalog-heading h2 { margin-bottom: 6px; }
.catalog-heading span { color: var(--muted); font-size: 14px; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.active-filters span { padding: 6px 10px; border-radius: 999px; background: #ece5dc; color: #5f574f; font-size: 12px; }
.active-filters a { padding: 6px 4px; color: #786e64; font-size: 12px; border-bottom: 1px solid #b6aca1; }
.catalog-layout { display: grid; grid-template-columns: 160px 1fr; gap: 42px; }
.category-sidebar { display: flex; flex-direction: column; gap: 8px; }
.category-sidebar a { position: relative; padding: 12px 10px 12px 20px; font-size: 18px; }
.category-sidebar a.active { font-weight: 600; }
.category-sidebar a.active::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px; background: #111; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 20px; }
.product-card { min-width: 0; }
.product-image {
    position: relative;
    display: block;
    aspect-ratio: .91;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.75), transparent 48%),
        #e8dfd3;
    box-shadow: inset 0 0 0 1px rgba(86,68,51,.06);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
    filter: contrast(1.02) saturate(1.015);
    transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.018); }
.product-badge {
    display: none;
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 7px 12px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(90deg, #cb8b89, #bd7775);
    font-size: 13px;
}
.product-copy { padding-top: 12px; font-size: 15px; line-height: 1.5; }
.product-copy a { display: block; }
.product-copy span, .product-copy strong, .product-copy b { display: block; }
.product-copy strong { font-weight: 500; }
.product-copy b { margin-top: 2px; font-size: 17px; }
.mobile-section-title, .mobile-categories { display: none; }
.empty-state { grid-column: 1 / -1; padding: 70px; text-align: center; background: white; border-radius: 12px; }
.empty-state strong { display: block; font-size: 21px; }
.empty-state p { color: var(--muted); }
.empty-state a { display: inline-block; margin-top: 8px; padding-bottom: 3px; border-bottom: 1px solid #111; }

.product-detail { padding: 70px 0 55px; }
.eyebrow { margin: 0 0 10px; color: #897f74; font-size: 12px; letter-spacing: .18em; }
.product-detail > h1, .contact-page > h1 { margin: 0 0 28px; font-size: 40px; }
.detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
    gap: 48px;
    padding: 28px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}
.gallery-main {
    position: relative;
    aspect-ratio: 1.1;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,.85), transparent 48%),
        var(--cream);
    box-shadow: inset 0 0 0 1px rgba(86,68,51,.05);
}
.gallery-main > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
    filter: contrast(1.02) saturate(1.015);
}
.gallery-dots { display: none; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.gallery-thumbs button {
    aspect-ratio: 1.15;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #eee;
    cursor: pointer;
}
.gallery-thumbs button.active { border-color: #222; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; background: #eee6dc; }
.detail-info { display: flex; flex-direction: column; padding: 22px 12px 6px 0; }
.detail-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.detail-heading h2 { margin: 0 0 5px; font-size: 33px; }
.detail-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.heart-button { border: 0; background: transparent; font-size: 36px; line-height: 1; cursor: pointer; }
.detail-price { margin: 18px 0 30px; font-size: 32px; font-weight: 600; }
.desktop-options > label { display: block; margin: 20px 0 10px; font-size: 18px; }
.swatches, .size-pills { display: flex; gap: 15px; }
.swatches span {
    width: 48px; height: 48px; border: 4px solid white; outline: 1px solid #aaa;
    border-radius: 8px; background: var(--swatch);
}
.size-pills span { min-width: 68px; padding: 10px 16px; text-align: center; border: 1px solid #ccc; border-radius: 8px; }
.detail-description { margin: 30px 0; color: #5c554f; line-height: 1.8; }
.button-wide { width: 100%; margin-top: auto; border-radius: 999px; font-size: 18px; }
.mobile-accordions { display: none; }

.inline-contact { padding: 35px 0 90px; }
.contact-mini-card {
    display: grid;
    grid-template-columns: 120px 1fr 1.3fr;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
}
.contact-mini-card > img { width: 110px; height: 110px; object-fit: cover; object-position: 52% 20%; border-radius: 50%; }
.contact-mini-copy h3 { margin: 0; font-size: 23px; }
.contact-mini-copy p { margin: 8px 0; }
.outline-button { padding: 8px 25px; border: 1px solid #b97d48; border-radius: 999px; background: white; cursor: pointer; }
.online-status { font-size: 14px; }
.online-status i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #4ac873; }
.contact-mini-card blockquote { margin: 0; color: #6c6257; line-height: 1.9; }
.contact-actions { display: none; }

.contact-page { padding: 78px 0 100px; }
.contact-stage {
    position: relative;
    min-height: 760px;
    display: grid;
    place-items: center;
    padding: 90px 60px 60px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(231,221,208,.95), rgba(244,240,235,.55)),
        url("../uploads/banner_01_model_canvas_tote.webp") center 42% / cover;
    box-shadow: var(--shadow);
}
.contact-card {
    position: relative;
    width: min(760px, 100%);
    padding: 135px 70px 55px;
    text-align: center;
    border-radius: 25px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(40,30,20,.12);
}
.contact-avatar {
    position: absolute;
    top: -90px;
    left: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: 50% 18%;
    border: 6px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
}
.contact-card h2 { margin: 0 0 16px; font-size: 39px; }
.wechat-line { margin: 0 0 24px; font-size: 25px; }
.wechat-qr-block { display:grid; justify-items:center; gap:10px; margin:0 auto 24px; }
.wechat-qr-block img { width:210px; height:210px; padding:8px; object-fit:contain; border:1px solid var(--line); border-radius:16px; background:white; box-shadow:0 10px 30px rgba(40,30,20,.08); }
.wechat-qr-block span { color:var(--muted); font-size:13px; }
.primary-contact, .secondary-contact {
    display: flex;
    width: min(360px, 100%);
    min-height: 62px;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    border: 1px solid #cbbbaa;
    border-radius: 999px;
    background: transparent;
    font-size: 23px;
    cursor: pointer;
}
.primary-contact { background: #f6f1ea; font-weight: 600; }
.contact-card blockquote { margin: 65px 0 0; color: #615a51; font-family: Georgia, "Songti SC", serif; font-size: 18px; line-height: 2; }

.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 30px max(24px, calc((100% - 1180px) / 2));
    color: #8d857d;
    border-top: 1px solid var(--line);
    background: white;
    font-size: 12px;
}

@media (max-width: 900px) {
    body { background: white; }
    .page-shell { width: min(100% - 28px, 720px); }
    .header-inner { width: calc(100% - 30px); height: 72px; }
    .brand { font-size: 22px; }
    .desktop-nav { display: none; }
    .menu-button {
        width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px;
        padding: 8px; border: 0; background: transparent; cursor: pointer;
    }
    .menu-button span { display: block; height: 2px; background: #111; transition: .2s; }
    .menu-button.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
    .menu-button.is-open span:nth-child(2) { opacity: 0; }
    .menu-button.is-open span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
        display: none;
        padding: 10px 20px 20px;
        border-top: 1px solid #eee;
        background: white;
    }
    .mobile-menu.is-open { display: grid; }
    .mobile-menu a, .mobile-menu button { padding: 13px 4px; text-align: left; border: 0; border-bottom: 1px solid #eee; background: transparent; cursor: pointer; }
    .search-modal { align-items: end; padding: 0; }
    .search-dialog {
        width: 100%;
        padding: 25px 20px max(24px, env(safe-area-inset-bottom));
        border-radius: 22px 22px 0 0;
        transform: translateY(35px);
    }
    .search-modal.is-open .search-dialog { transform: translateY(0); }
    .search-dialog-heading { margin-bottom: 20px; }
    .search-dialog-heading h2 { font-size: 26px; }
    .modal-price-fields { gap: 8px; }
    .hero { display: block; height: 470px; }
    .hero-slide-inner {
        width: 100%;
        display: block;
        position: relative;
    }
    .hero-content {
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 205px;
        padding: 70px 24px 35px;
        color: white;
        background: linear-gradient(0deg, rgba(17,14,11,.88), rgba(17,14,11,0));
    }
    .hero-content p { margin-bottom: 7px; }
    .hero h1 { margin-bottom: 5px; font-size: 29px; }
    .hero-price { margin-bottom: 14px; font-size: 20px; }
    .hero-content .button { min-height: 40px; padding: 0 17px; border: 1px solid rgba(255,255,255,.55); }
    .hero-product-image {
        width: 100%;
        height: 470px;
        padding: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }
    .hero-product-image::after { display: none; }
    .hero-image-frame { border-radius: 0; }
    .hero-product-image img { object-fit: contain; }
    .hero-arrow { display: none; }
    .hero-dots { bottom: 16px; }
    .hero-dots button { width: 7px; height: 7px; }
    .hero-dots button.active { width: 20px; background: white; }
    .catalog { padding: 22px 0 55px; }
    .catalog-heading { margin: 25px 0 15px; }
    .catalog-heading h2 { margin: 0; font-size: 28px; }
    .mobile-section-title { display: block; margin-bottom: 16px; font-size: 26px; font-weight: 700; }
    .mobile-categories {
        display: flex;
        gap: 19px;
        padding-bottom: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .mobile-categories::-webkit-scrollbar { display: none; }
    .mobile-categories a { flex: 0 0 78px; text-align: center; font-size: 14px; }
    .mobile-categories b { display: block; margin-top: 8px; font-weight: 500; white-space: nowrap; }
    .category-orb {
        width: 70px; height: 70px; display: grid; place-items: center; overflow: hidden;
        border: 2px solid transparent; border-radius: 50%; background: #f2eee8; font-size: 11px;
    }
    .mobile-categories a.active .category-orb { border-color: #111; }
    .category-orb img { width: 75%; height: 75%; object-fit: contain; mix-blend-mode: multiply; }
    .catalog-layout { display: block; }
    .category-sidebar { display: none; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
    .product-image { aspect-ratio: .88; border-radius: 10px; }
    .product-badge { display: block; }
    .product-copy { padding-top: 9px; font-size: 14px; line-height: 1.35; }
    .product-copy span, .product-copy strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .product-copy b { font-size: 17px; }

    .product-detail { width: 100%; padding: 0; }
    .product-detail > .eyebrow, .product-detail > h1 { display: none; }
    .detail-card { display: block; padding: 0; border-radius: 0; box-shadow: none; }
    .gallery-main { aspect-ratio: 1.02; border-radius: 0; }
    .gallery-dots {
        position: absolute; left: 50%; bottom: 16px; display: flex; gap: 9px; transform: translateX(-50%);
    }
    .gallery-dots i { width: 8px; height: 8px; border-radius: 50%; background: #aaa; }
    .gallery-dots i.active { background: #111; }
    .gallery-thumbs { display: none; }
    .detail-info { padding: 24px 28px 22px; }
    .detail-heading h2 { font-size: 27px; }
    .detail-heading p { margin-top: 4px; font-size: 14px; }
    .heart-button { font-size: 34px; }
    .detail-price { margin: 10px 0 15px; font-size: 24px; }
    .desktop-options, .detail-description { display: none; }
    .mobile-accordions { display: block; border-top: 1px solid var(--line); }
    .mobile-accordions details { border-bottom: 1px solid var(--line); }
    .mobile-accordions summary { padding: 16px 0; font-weight: 600; cursor: pointer; }
    .mobile-accordions p { margin: 0; padding: 0 0 16px; color: var(--muted); line-height: 1.7; }
    .button-wide { margin-top: 22px; min-height: 58px; border-radius: 10px; background: linear-gradient(90deg, #d7b45f, #c58681); }

    .inline-contact { width: 100%; padding: 24px 24px 45px; background: #f3eee8; }
    .inline-contact h2 { margin-bottom: 18px; font-size: 27px; }
    .contact-mini-card { display: grid; grid-template-columns: 90px 1fr; gap: 15px; padding: 20px 15px 12px; }
    .contact-mini-card > img { width: 86px; height: 86px; }
    .contact-mini-copy h3 { font-size: 19px; }
    .contact-mini-copy p { font-size: 13px; }
    .contact-mini-card blockquote { grid-column: 1 / -1; padding: 4px 15px; text-align: center; font-size: 13px; }
    .contact-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #ddd; }
    .contact-actions button, .contact-actions a { padding: 15px 8px 4px; text-align: center; border: 0; background: transparent; cursor: pointer; }

    .contact-page { padding: 36px 0 65px; }
    .contact-page > h1 { font-size: 32px; }
    .contact-stage { min-height: 620px; padding: 80px 14px 22px; border-radius: 18px; }
    .contact-card { padding: 100px 22px 35px; }
    .contact-avatar { top: -68px; width: 135px; height: 135px; }
    .contact-card h2 { font-size: 28px; }
    .wechat-line { font-size:18px; }
    .wechat-qr-block img { width:190px; height:190px; }
    .wechat-qr-block span { font-size:12px; }
    .primary-contact, .secondary-contact { min-height: 52px; font-size: 18px; }
    .contact-card blockquote { margin-top: 40px; font-size: 15px; }
    .site-footer { padding: 24px; }
}

@media (min-width: 901px) and (max-width: 1120px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
