:root {
    --red: #e51414;
    --red-dark: #b80b0b;
    --ink: #111111;
    --muted: #636363;
    --line: #ece8e8;
    --card: #ffffff;
    --soft: #fff5f4;
    --navy: #111a2e;
    --bg: #fffdfd;
    --shell-max: 1720px;
    --surface-max: 1640px;
    --section-gutter: clamp(14px, 2.2vw, 30px);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(
            circle at top right,
            rgba(229, 20, 20, 0.08),
            transparent 25%
        ),
        linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
    color: var(--ink);
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
}

.page-shell {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding-inline: var(--section-gutter);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #efebeb;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 4px));
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 44px;
    padding-block: 2px;
    padding-inline: 20px;
}

.brand img {
    width: 300px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #141414;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 1px;
    border-radius: 999px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--red);
    transform: translateY(-1px);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
}

.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #141414;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 1px;
    border-radius: 999px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-dropdown-toggle .fa {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
    color: var(--red);
    transform: translateY(-1px);
}

.nav-dropdown.is-active .nav-dropdown-toggle::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.nav-dropdown:hover .nav-dropdown-toggle .fa,
.nav-dropdown-toggle[aria-expanded="true"] .fa {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 180px;
    padding: 10px;
    border: 1px solid #f0e7e7;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a.active,
.nav-dropdown-menu a:hover {
    background: #fff5f5;
}

.menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border: 1px solid #ebe5e5;
    border-radius: 10px;
    background: white;
    color: #1e1e1e;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.menu-toggle .fa {
    font-size: 18px;
    line-height: 1;
}
.menu-toggle:hover {
    background: #fff6f6;
    border-color: #f3d3d3;
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    flex: 0 0 auto;
    min-width: min(100%, 320px);
    margin: 0;
    position: relative;
}

.site-search-field {
    position: relative;
}

.site-search-input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 16px 0 42px;
    border: 1px solid #ebe4e4;
    border-radius: 999px;
    background: #fff;
    color: #141414;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

.site-search-input:focus {
    border-color: rgba(229, 20, 20, 0.4);
    box-shadow: 0 0 0 4px rgba(229, 20, 20, 0.08);
}

.site-search-results {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid #efe6e6;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 16, 16, 0.1);
}

.site-search-result {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.site-search-result:hover {
    background: #fff5f5;
    transform: translateY(-1px);
}

.site-search-result img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff8f7 0%, #fff0ef 100%);
    padding: 6px;
}

.site-search-result-copy {
    min-width: 0;
}

.site-search-result-name {
    display: block;
    color: #181818;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.site-search-result-meta {
    display: block;
    margin-top: 2px;
    color: #7a7a7a;
    font-size: 11px;
    line-height: 1.35;
}

.site-search-empty {
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff8f8;
    color: #8a4a4a;
    font-size: 13px;
    text-align: left;
}
.section {
    width: 100%;
    padding: 28px 0;
}

.banner-card,
.contact-card,
.products-card,
.reviews-card {
    background: var(--card);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(20, 18, 18, 0.08);
}

.banner-card,
.contact-card,
.products-card,
.reviews-card,
.about-jollyhome-panel,
.smart-living-banner,
.products-showcase,
.reviews-showcase,
.stores-showcase,
.contact-home,
.stores-block,
.section-frame,
.visual-banner {
    width: min(100%, var(--surface-max));
    margin-inline: auto;
}

.banner-card img {
    width: 100%;
    height: auto;
}
.hero-section {
    padding-top: 10px;
    padding-bottom: 24px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #efebeb;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.95),
            rgba(255, 248, 248, 0.9)
        ),
        linear-gradient(180deg, #fffefe 0%, #fff8f8 100%);
    animation: heroLift 0.9s ease both;
}

.hero-card img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    transform: scale(1.015);
    animation: heroImageFloat 7s ease-in-out infinite alternate;
}

.hero-content {
    position: absolute;
    top: 12.5%;
    right: 3.9%;
    z-index: 2;
    display: grid;
    justify-items: center;
    width: min(36%, 370px);
}

.hero-copy {
    display: grid;
    justify-items: start;
    text-align: left;
    color: var(--red);
    width: 100%;
}

.hero-kicker {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(32px, 3.8vw, 58px);
    font-style: italic;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
}

.hero-title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(50px, 5.4vw, 82px);
    font-style: italic;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.hero-shop-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 54px;
    margin-top: 26px;
    padding: 0 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef2020 0%, #ff2d20 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 40px rgba(229, 20, 20, 0.28);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
    z-index: 2;
}

.hero-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(229, 20, 20, 0.34);
}

.hero-highlights {
    position: static;
    z-index: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 18px;
}

.hero-highlight {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 5px;
    color: #2a2a2a;
}

.hero-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    background: rgba(255, 236, 236, 0.86);
    color: var(--red);
    box-shadow: 0 10px 20px rgba(229, 20, 20, 0.08);
}
.hero-highlight-icon .fa {
    color: var(--red);
}

.hero-highlight-icon .fa {
    font-size: 18px;
    line-height: 1;
    margin-top: 13px;
}

.hero-highlight strong {
    display: block;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-highlight span {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.35;
}

.homepage-stack {
    display: grid;
    gap: 0;
    padding-bottom: 0;
    width: 100%;
}

.about-jollyhome-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr) minmax(
            220px,
            0.48fr
        );
    align-items: center;
    gap: 42px;
    padding: 18px 48px 34px;
    background: #fff;
}

.about-jollyhome-copy {
    max-width: 560px;
}

.about-jollyhome-title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.about-jollyhome-title span {
    display: block;
}

.about-jollyhome-title .accent {
    color: var(--red);
}

.about-jollyhome-text {
    margin: 24px 0 0;
    max-width: 540px;
    color: #373737;
    font-size: 17px;
    line-height: 1.28;
}

.about-jollyhome-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ef2020 0%, #ff2d20 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(229, 20, 20, 0.24);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.about-jollyhome-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(229, 20, 20, 0.3);
}

.about-jollyhome-stats {
    display: grid;
    gap: 0;
    padding-left: 22px;
    border-left: 1px solid #d9d9d9;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
}

.about-stat + .about-stat {
    border-top: 1px solid #d9d9d9;
}

.about-stat-icon {
    width: 52px;
    height: 52px;
    color: var(--red);
    flex: 0 0 auto;
}

.about-stat-icon .fa {
    font-size: 28px;
    line-height: 1;
}

.about-stat-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-stat-copy strong {
    color: #101010;
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    font-weight: 800;
}

.about-stat-copy span {
    color: #555;
    font-size: 16px;
    line-height: 1.35;
}

.about-jollyhome-media {
    border-radius: 34px;
    overflow: hidden;
    border: 1.5px solid #1a1a1a;
    box-shadow: none;
    justify-self: start;
    background: #fff6f2;
    width: 100%;
    max-width: 620px;
}

.about-jollyhome-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.smart-living-banner {
    position: relative;
    overflow: hidden;
    background: #f9f1ec;
}

.smart-living-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.smart-living-overlay {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(40%, 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 36px 36px 58px;
    color: #111;
}

.smart-living-eyebrow {
    color: var(--red);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.smart-living-title {
    margin: 16px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.smart-living-title span {
    display: block;
}

.smart-living-title strong {
    color: var(--red);
    font-weight: 800;
}

.smart-living-copy {
    margin: 22px 0 0;
    max-width: 420px;
    color: #333;
    font-size: 17px;
    line-height: 1.45;
}

.smart-living-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 28px;
    max-width: 460px;
    width: 100%;
    border-top: 1px solid rgba(229, 32, 32, 0.16);
    border-bottom: 1px solid rgba(229, 32, 32, 0.16);
}

.smart-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-height: 72px;
    padding: 14px 12px;
    color: #383838;
    font-size: 14px;
    line-height: 1.2;
}

.smart-feature + .smart-feature {
    border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.smart-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid rgba(229, 32, 32, 0.5);
    color: var(--red);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.smart-feature-icon .fa {
    font-size: 18px;
    line-height: 1;
}

.smart-living-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 26px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ef2020 0%, #ff2d20 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(229, 20, 20, 0.24);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.smart-living-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(229, 20, 20, 0.3);
}

.visual-banner,
.section-frame {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.section-frame {
    border-radius: 0;
    box-shadow: none;
}

.visual-banner img,
.section-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.eyebrow {
    color: var(--red);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.title .accent {
    color: var(--red);
}
.subtitle {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-top: 14px;
}

.outline-button,
.solid-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 800;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.outline-button {
    border: 2px solid rgba(229, 20, 20, 0.25);
    color: var(--red);
    background: white;
}
.solid-button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--red) 0%, #ff2d20 100%);
    box-shadow: 0 14px 30px rgba(229, 20, 20, 0.28);
    cursor: pointer;
}

.outline-button:hover,
.solid-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(229, 20, 20, 0.14);
}

.products-card {
    padding: 34px 32px 38px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 20px);
}

.product-tile {
    position: relative;
    background: white;
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(16, 16, 16, 0.05);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
    border-color: #f3d5d5;
}
.product-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: #7a7a7a;
    background: white;
    font-size: 12px;
    font-weight: 700;
}

.product-image {
    height: 210px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}
.product-image img {
    max-height: 190px;
    object-fit: contain;
}
.product-name {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
}
.product-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-price {
    color: var(--red);
    font-weight: 800;
    font-size: 18px;
}

.mini-icon {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: #777;
    font-size: 12px;
    font-weight: 700;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.dots span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #d8d8d8;
}
.dots span.active {
    background: var(--red);
}

.products-showcase,
.reviews-showcase,
.stores-showcase,
.contact-home {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.products-showcase {
    padding: 22px 32px 28px;
}

.products-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 12px 18px;
}

.showcase-title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 4vw, 64px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.showcase-copy {
    margin: 14px 0 0;
    max-width: 520px;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.6;
}

.showcase-link {
    min-width: 196px;
    padding-inline: 24px;
}

.category-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f8 100%);
    border-radius: 34px;
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.category-showcase__head {
    align-items: flex-start;
    padding-bottom: 20px;
}

.category-showcase__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.category-carousel {
    cursor: grab;
    user-select: none;
}

.category-carousel {
    position: relative;
    --category-gap: clamp(12px, 1.4vw, 22px);
    overflow: hidden;
    padding: 8px 0 0;
}

.category-carousel__viewport {
    display: flex;
    align-items: stretch;
    gap: var(--category-gap);
    padding: 4px 2px 14px;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card {
    position: relative;
    flex: 0 0 calc((100% - (var(--category-gap) * 2)) / 3);
    width: calc((100% - (var(--category-gap) * 2)) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(224, 224, 224, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.category-card.is-active {
    transform: translateY(-2px);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 20, 20, 0.2);
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.12);
}

.category-card__media {
    position: relative;
    min-height: clamp(180px, 19vw, 280px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #d9dce5 0%, #eff1f5 100%);
}

.category-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.35) 0%,
            rgba(10, 10, 10, 0.06) 38%,
            rgba(10, 10, 10, 0) 72%
        ),
        linear-gradient(
            0deg,
            rgba(10, 10, 10, 0.22) 0%,
            rgba(10, 10, 10, 0) 28%
        );
}

.category-card__tagline {
    color: var(--red);
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.category-card__tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(11px, 0.85vw, 14px);
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.category-card__overlay {
    position: absolute;
    inset: 18px 18px auto 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
    color: #fff;
}

.category-card__overlay h3 {
    margin: 0;
    font-size: clamp(18px, 1.6vw, 30px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.category-card__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.94);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.category-card__play {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.78);
    color: #101010;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.category-card__play .fa {
    margin-left: 2px;
    font-size: 14px;
}

.category-card__fallback {
    width: 108px;
    height: 108px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--red);
    box-shadow: 0 12px 22px rgba(17, 17, 17, 0.1);
}

.category-card__fallback .fa {
    font-size: 38px;
}

.category-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px 22px 22px;
    background: #fff;
    flex: 1 1 auto;
    text-align: center;
}

.category-card__body h3 {
    margin: 0;
    color: #141414;
    font-size: clamp(18px, 1.3vw, 25px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.category-card__body p {
    margin: 0;
    color: #525252;
    font-size: clamp(13px, 1vw, 17px);
    line-height: 1.55;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-card__link .fa {
    font-size: 12px;
}

.category-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.category-carousel__arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: #f3f3f3;
    color: #4f4f4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition:
        transform 0.22s ease,
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.category-carousel__arrow:hover {
    transform: translateY(-2px);
    color: var(--red);
    background: #fff4f4;
    border-color: rgba(229, 20, 20, 0.18);
}

.category-carousel__dots {
    display: none !important;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 20px);
}

.showcase-card {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 362px;
    border-radius: 24px;
    border: 1px solid #ededed;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.09);
}

.product-modal-trigger {
    cursor: pointer;
}

.showcase-favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    color: #7c7c7c;
}

.showcase-favorite .fa,
.showcase-cart .fa,
.mini-icon .fa,
.product-fav .fa {
    font-size: 16px;
    line-height: 1;
}

.showcase-image-wrap {
    display: grid;
    place-items: center;
    padding: 28px 20px 10px;
    min-height: 240px;
}

.showcase-image-wrap img {
    max-height: 190px;
    object-fit: contain;
}

.showcase-content {
    display: grid;
    gap: 14px;
    padding: 0 18px 22px;
    margin-top: auto;
}

.showcase-content h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 500;
}

.showcase-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.showcase-price {
    color: #202020;
    font-weight: 700;
    font-size: 15px;
}

.showcase-cart {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    color: #717171;
    padding: 9px;
}

.showcase-empty {
    grid-column: 1 / -1;
    border-radius: 24px;
    border: 1px dashed #e8dede;
    padding: 28px;
    text-align: center;
    color: #666;
}

.showcase-empty h3 {
    margin: 0 0 8px;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.showcase-dots span {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ddd;
}

.showcase-dots span.active {
    background: var(--red);
}

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

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    animation: modalBackdropIn 0.26s ease forwards;
}

.product-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    margin: auto;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    animation: modalDialogIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center;
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff4f4;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.product-modal-close .fa {
    font-size: 22px;
    line-height: 1;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-media {
    display: grid;
    place-items: center;
    min-height: 460px;
    padding: 40px;
    background: linear-gradient(180deg, #fff8f7 0%, #fff 100%);
}

.product-modal-media img {
    max-height: 320px;
    object-fit: contain;
}

.product-modal-content {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 48px 40px;
    overflow-y: auto;
}

.product-modal-title {
    font-size: clamp(32px, 4vw, 52px);
}

.product-modal-price {
    color: var(--red);
    font-size: 24px;
    font-weight: 800;
}

.product-modal-description {
    margin: 0;
    color: #4b4b4b;
    font-size: 16px;
    line-height: 1.75;
}

.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
    align-items: center;
}

.product-marketplace-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    background:
        radial-gradient(
            circle at 30% 22%,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.5) 36%,
            transparent 37%
        ),
        linear-gradient(180deg, #fff 0%, #f7f3f3 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 14px 30px rgba(17, 17, 17, 0.1);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    flex: 0 0 56px;
    align-self: flex-start;
}

.product-marketplace-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 18px 34px rgba(17, 17, 17, 0.14);
}

.product-marketplace-button svg {
    width: 34px;
    height: 34px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.08));
}

.product-marketplace-button--shopee {
    border-color: rgba(243, 91, 37, 0.18);
    background:
        radial-gradient(
            circle at 30% 22%,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.2) 35%,
            transparent 36%
        ),
        linear-gradient(180deg, #fff5ef 0%, #ffe5d9 100%);
}

.product-marketplace-button--lazada {
    border-color: rgba(103, 56, 255, 0.18);
    background:
        radial-gradient(
            circle at 30% 22%,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.2) 35%,
            transparent 36%
        ),
        linear-gradient(180deg, #f7f2ff 0%, #efe5ff 100%);
}

.product-marketplace-button.is-disabled {
    pointer-events: none;
    opacity: 0.45;
    box-shadow: none;
    filter: grayscale(1);
}

.reviews-showcase {
    padding: 22px 32px 28px;
}

.reviews-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
}

.reviews-header-placeholder {
    min-height: 100px;
    border-radius: 22px;
    border: 1px solid #f3efef;
    background: linear-gradient(180deg, #fff 0%, #faf8f8 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.8fr 0.8fr;
    gap: 18px;
    align-items: stretch;
}

.review-spotlight {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 445px;
    padding: 24px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(24, 16, 16, 0.12) 0%,
            rgba(26, 17, 17, 0.9) 88%
        ),
        linear-gradient(135deg, #70443b 0%, #2d1d1b 100%);
    color: #fff;
}

.review-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--red);
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.review-spotlight-media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end start;
    padding: 42px 18px 52px;
}

.review-spotlight-media img {
    width: min(46%, 230px);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

.review-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 6px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.95);
    color: var(--red);
    display: grid;
    place-items: center;
    z-index: 2;
    cursor: pointer;
}

.review-play .fa {
    font-size: 28px;
    line-height: 1;
    margin-left: 4px;
}

.review-spotlight-copy,
.review-spotlight-stats {
    position: relative;
    z-index: 2;
}

.review-spotlight-copy blockquote {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    max-width: 300px;
}

.review-spotlight-copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.review-spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.review-spotlight-stats strong,
.review-spotlight-stats span {
    display: block;
}

.review-spotlight-stats strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.review-spotlight-stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.45;
}

.review-mini-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 24px;
    border: 1px solid #f1ecec;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
}

.review-mini-top {
    position: relative;
    min-height: 190px;
    background: linear-gradient(180deg, #f9f4f1 0%, #f2ece9 100%);
    display: grid;
    place-items: center;
    padding: 14px;
}

.verified-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: #4b4b4b;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.review-mini-top img {
    max-height: 150px;
    object-fit: contain;
}

.review-mini-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.review-stars {
    color: var(--red);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-stars .fa + .fa {
    margin-left: 4px;
}

.review-mini-quote {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #343434;
}

.review-mini-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-mini-person strong,
.review-mini-person span {
    display: block;
}

.review-mini-person span {
    color: #686868;
    font-size: 14px;
    margin-top: 2px;
}

.review-mini-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff2f2;
    color: var(--red);
    font-weight: 800;
}

.review-mini-product {
    display: inline-flex;
    align-items: center;
    align-self: start;
    border-radius: 999px;
    background: #fff3f3;
    color: var(--red);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.review-mini-empty {
    grid-column: span 3;
    min-height: 180px;
    place-items: center;
}

.careers-banner {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.52fr);
    gap: 22px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, #071121 0%, #0b1730 100%);
    box-shadow: 0 18px 42px rgba(10, 18, 34, 0.16);
}

.careers-banner-copy {
    padding: 18px 12px 18px 14px;
    color: #fff;
}

.careers-banner-eyebrow {
    margin-bottom: 14px;
    color: #ff4d4d;
}

.careers-banner-title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
}

.careers-banner-text {
    margin: 18px 0 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.5;
}

.careers-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef2020 0%, #ff3a2a 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(229, 20, 20, 0.24);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.careers-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(229, 20, 20, 0.3);
}

.careers-banner-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at left center,
            rgba(8, 16, 34, 0.92),
            rgba(5, 11, 24, 0.98)
        ),
        linear-gradient(180deg, #081224 0%, #06101f 100%);
}

.careers-banner-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center 24%;
    transform: scale(1.05);
}

.careers-banner-features {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10, 20, 38, 0.92);
    backdrop-filter: blur(10px);
}

.careers-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 74px;
    padding: 16px 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.careers-feature + .careers-feature {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.careers-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(229, 20, 20, 0.22);
    color: #ffb0b0;
}

.careers-feature-icon .fa {
    font-size: 17px;
    line-height: 1;
}

.stores-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 0.45fr;
    gap: clamp(18px, 2vw, 30px);
    align-items: center;
    padding: 30px 32px;
    background:
        radial-gradient(
            circle at right bottom,
            rgba(239, 32, 32, 0.1),
            transparent 32%
        ),
        linear-gradient(180deg, #ffe8ec 0%, #ffeef1 100%);
}

.stores-copy-block {
    padding: 10px 14px;
}

.stores-button {
    margin-top: 22px;
    min-width: 190px;
}

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

.store-feature-card {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.store-feature-card img {
    width: min(100%, 230px);
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
}

.store-feature-meta strong,
.store-feature-meta span {
    display: block;
}

.store-feature-meta strong {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.store-feature-meta span {
    color: #5c5c5c;
}

.store-feature-empty {
    place-items: center;
    min-height: 180px;
    border: 1px dashed #edcdcd;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
}

.stores-map-mark {
    display: grid;
    place-items: center;
}

.stores-map-mark .fa {
    font-size: 92px;
    line-height: 1;
    color: var(--red);
}

.contact-home {
    padding: 30px 32px 0;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 0.85fr;
    gap: clamp(18px, 2vw, 28px);
    padding-bottom: 30px;
}

.contact-home-list {
    display: grid;
    gap: 16px;
    margin-top: 42px;
}

.contact-home-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    overflow-wrap: anywhere;
}

.contact-home-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: #fff3f3;
    font-weight: 800;
}

.contact-home-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.contact-home-form .full {
    grid-column: 1 / -1;
}

.contact-home-socials h3 {
    margin: 40px 0 12px;
    color: var(--red);
    font-family: "Outfit", sans-serif;
    font-size: 28px;
}

.contact-home-socials p {
    margin: 0 0 24px;
    color: #404040;
    line-height: 1.7;
}

.reviews-card {
    padding: 38px 32px;
}
.reviews-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}
.review-feature {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 394px;
    background:
        linear-gradient(
            180deg,
            rgba(17, 26, 46, 0.02) 0%,
            rgba(17, 26, 46, 0.94) 100%
        ),
        url("../assets/WEBSITE ASSETS/1.png") center/cover no-repeat;
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.pill {
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: auto;
}
.feature-quote {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    max-width: 270px;
}
.review-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.review-stat strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}
.review-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.4;
}

.review-card {
    background: white;
    border: 1px solid #f0eded;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}
.review-body {
    padding: 20px;
}
.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffe2e2 0%, #fff2f2 100%);
    color: var(--red);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 800;
}
.review-meta {
    display: grid;
    gap: 2px;
}
.stars {
    color: var(--red);
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 12px;
}
.review-copy {
    color: #383838;
    line-height: 1.6;
    min-height: 76px;
}
.review-author {
    margin-top: 16px;
    font-weight: 800;
}
.review-city {
    color: var(--muted);
    font-size: 14px;
}
.review-product {
    margin-top: 12px;
    display: inline-flex;
    border-radius: 999px;
    background: #fff4f4;
    color: var(--red);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}
.reviews-bottom {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}
.feedback-form-card {
    background: linear-gradient(180deg, #fff 0%, #fff6f6 100%);
    border: 1px solid #f1e7e7;
    border-radius: 24px;
    padding: 24px;
}
.feedback-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}
.feedback-form-grid .full {
    grid-column: 1 / -1;
}
.review-note {
    color: #666;
    line-height: 1.7;
}

.career-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.career-card {
    background: white;
    border: 1px solid #f0e7e7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
}
.career-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    margin: 0 0 12px;
}
.career-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.career-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff1f1;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
}
.career-copy {
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px;
}
.career-block-title {
    font-weight: 800;
    margin: 14px 0 6px;
}

.stores-block {
    background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(20, 18, 18, 0.08);
}
.stores-top img {
    width: 100%;
}
.stores-locations {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(18px, 2vw, 24px);
    padding: 26px 32px 32px;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(255, 228, 228, 0.9) 0%,
            rgba(255, 242, 242, 0.86) 100%
        ),
        url("../assets/WEBSITE ASSETS/MAP.png") right center/contain no-repeat;
}

.stores-copy h3 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    margin: 0 0 10px;
}
.stores-copy p {
    color: #444;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 320px;
}
.store-card {
    text-align: center;
    transition: transform 0.25s ease;
}
.store-card:hover {
    transform: translateY(-4px);
}
.store-card img {
    width: 190px;
    height: 130px;
    object-fit: cover;
    border-radius: 24px;
    margin: 0 auto 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}
.store-card strong {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
}
.store-name {
    display: block;
    margin-bottom: 10px;
}
.store-detail {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 10px;
}
.store-links {
    margin-top: 14px;
}
.mini-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid rgba(229, 20, 20, 0.2);
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    background: white;
}

.contact-card {
    padding: 42px 32px 0;
}
.status-flash {
    margin-bottom: 24px;
    border-radius: 18px;
    background: #f1fff1;
    color: #1f7a1f;
    border: 1px solid #cde9cd;
    padding: 14px 18px;
    font-weight: 700;
}
.error-box {
    margin-bottom: 24px;
    border-radius: 18px;
    background: #fff3f3;
    color: #9d1c1c;
    border: 1px solid #f0c8c8;
    padding: 14px 18px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 0.8fr;
    gap: clamp(18px, 2vw, 28px);
    padding-bottom: 34px;
}
.contact-copy h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    margin: 0 0 18px;
}
.contact-copy p {
    color: #434343;
    line-height: 1.7;
    max-width: 320px;
}
.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    overflow-wrap: anywhere;
}
.contact-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff2f2;
    color: var(--red);
    font-weight: 800;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: start;
}
.contact-form .full {
    grid-column: 1 / -1;
}
.contact-page-section {
    padding-top: clamp(34px, 5vw, 56px);
}
.contact-page-shell {
    width: min(100%, 1020px);
    margin: 0 auto;
}
.contact-page-header {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 32px;
}
.contact-page-header h1 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 5vw, 54px);
    font-weight: 400;
    color: #444;
    letter-spacing: 0.04em;
}
.contact-page-accent {
    width: 72px;
    height: 3px;
    background: #f0a51a;
}
.contact-wizard-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.contact-page-socials {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: 30px;
}
.contact-page-socials h3 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}
.contact-page-social-icons {
    justify-content: center;
    flex-wrap: wrap;
}
.contact-wizard-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #2b2b2b;
}
.contact-wizard-tab {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 20px;
    font-size: 17px;
    color: #222;
    text-align: center;
}
.contact-wizard-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}
.contact-wizard-tab.is-active {
    font-weight: 700;
}
.contact-wizard-tab.is-active::after {
    background: #ff2e17;
}
.contact-wizard-panel {
    display: none;
    padding: 28px 30px 42px;
}
.contact-wizard-panel.is-active {
    display: block;
}
.contact-wizard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}
.contact-wizard-field {
    display: grid;
    gap: 8px;
}
.contact-wizard-field.full {
    margin-bottom: 22px;
}
.contact-wizard-field label {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
.contact-wizard-field label span {
    color: #ff2e17;
}
.contact-wizard-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #ccd4df;
    background: #fff;
    padding: 12px 14px;
    font-size: 15px;
    color: #151515;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    appearance: none;
}
.contact-wizard-input:focus {
    border-color: #8d98a8;
    box-shadow: 0 0 0 1px rgba(141, 152, 168, 0.25);
}
select.contact-wizard-input {
    background-image:
        linear-gradient(45deg, transparent 50%, #767676 50%),
        linear-gradient(135deg, #767676 50%, transparent 50%),
        linear-gradient(to right, #d0d0d0, #d0d0d0);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px),
        calc(100% - 36px) 50%;
    background-size:
        6px 6px,
        6px 6px,
        1px 22px;
    background-repeat: no-repeat;
    padding-right: 52px;
}
.contact-wizard-textarea {
    min-height: 132px;
    resize: vertical;
}
.contact-wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
}
.contact-wizard-actions--end {
    justify-content: flex-end;
}
.contact-wizard-button {
    min-width: 96px;
    border: 0;
    padding: 15px 22px;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}
.contact-wizard-button--dark {
    background: #373737;
    color: #fff;
    box-shadow: inset 0 0 0 2px #2e2e2e;
}
.contact-wizard-button--dark:hover {
    background: #2e2e2e;
}
.field {
    border: 0;
    border-bottom: 1px solid #d9d3d3;
    background: transparent;
    padding: 16px 8px 16px 0;
    outline: none;
}
.field:focus {
    border-color: var(--red);
}
textarea.field {
    min-height: 132px;
    resize: vertical;
}
.social-panel h3 {
    font-family: "Outfit", sans-serif;
    color: var(--red);
    font-size: 28px;
    margin: 0 0 12px;
}
.social-panel p {
    color: #404040;
    line-height: 1.7;
    margin: 0 0 24px;
}
.social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}
.social-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.social-icon .fa {
    font-size: 22px;
    line-height: 1;
}
.social-icon:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
}
.social-icon.facebook {
    background: #1877f2;
}
.social-icon.instagram {
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 55%, #6228d7 100%);
}
.social-icon.tiktok {
    background: #000;
}
.social-icon.youtube {
    background: #ff0000;
}

.social-icon.whatsapp {
    background: #25d366;
} /* ← add here */
.social-icon.viber {
    background: #7360f2;
}
.site-footer {
    background: var(--navy);
    color: white;
    padding: 22px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer img {
    width: 170px;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.86);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    transform: translateX(-28px);
}
.reveal-left.is-visible {
    transform: translateX(0);
}

@keyframes heroLift {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageFloat {
    from {
        transform: scale(1.015) translateY(0);
    }
    to {
        transform: scale(1.03) translateY(-6px);
    }
}

@keyframes mobileMenuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalBackdropIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalDialogIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1360px) {
    .nav-links {
        gap: 18px;
    }
    .about-jollyhome-panel {
        grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr) minmax(
                220px,
                0.52fr
            );
        gap: 28px;
        padding-inline: 28px;
    }
    .about-jollyhome-media img {
        height: auto;
    }
    .smart-living-overlay {
        width: min(42%, 470px);
        padding-left: 44px;
        padding-right: 28px;
    }
    .smart-living-copy {
        font-size: 16px;
    }
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .products-showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1680px) {
    .products-grid,
    .products-showcase-grid {
        grid-template-columns: repeat(5, minmax(240px, 1fr));
    }

    .products-card,
    .products-showcase,
    .reviews-card,
    .contact-card,
    .stores-showcase,
    .contact-home {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* Fix: Stats row — match hero highlights style on all screen sizes */
@media (min-width: 421px) and (max-width: 1120px) {
    .about-jollyhome-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 20px 0 !important;
        border-left: none !important;
        border-top: 1px solid #d9d9d9 !important;
        margin-top: 20px !important;
        width: 100% !important;
        grid-template-columns: unset !important;
    }

    .about-stat {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 20px 50px !important; /* ← malaking padding para may agwat */
        border-top: none !important;
        flex: 0 0 auto !important; /* ← hindi mag-stretch, respeto sa content */
    }

    .about-stat + .about-stat {
        border-top: none !important;
        border-left: 1px solid #d9d9d9 !important;
    }

    .about-stat-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
        background: rgba(255, 236, 236, 0.86) !important;
        color: var(--red) !important;
        flex-shrink: 0 !important;
    }

    .about-stat-icon .fa {
        font-size: 22px !important;
        line-height: 1 !important;
        margin-top: 0 !important; /* ← reset ang nakalagay na margin-top: 13px */
    }

    .about-stat-copy {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 4px !important;
    }

    .about-stat-copy strong {
        display: block !important;
        font-size: clamp(20px, 2.2vw, 28px) !important;
        line-height: 1.1 !important;
        color: #101010 !important;
    }

    .about-stat-copy span {
        display: block !important;
        font-size: 13px !important;
        color: #666 !important;
        line-height: 1.35 !important;
    }
}
@media (max-width: 1120px) {
    .brand img {
        width: 180px;
    }
    .nav-links {
        gap: 14px;
        font-size: 14px;
    }
    .about-jollyhome-panel {
        grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
        align-items: start;
    }
    .about-jollyhome-copy {
        max-width: none;
    }
    .about-jollyhome-stats {
        grid-column: 1 / 2;
        grid-row: 2;
        padding-left: 0;
        padding-top: 14px;
        border-left: 0;
        border-top: 1px solid #d9d9d9;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .about-stat {
        align-items: start;
        flex-direction: column;
        gap: 12px;
        padding: 8px 0 0;
    }
    .about-stat + .about-stat {
        border-top: 0;
    }
    .about-jollyhome-media {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .about-jollyhome-copy {
        grid-column: 2;
        grid-row: 1;
    }
    .smart-living-overlay {
        width: min(46%, 420px);
        padding: 28px 24px 26px 28px;
    }
    .smart-living-features {
        gap: 10px;
        border: 0;
    }
    .smart-feature {
        min-height: 0;
        padding: 0;
    }
    .smart-feature + .smart-feature {
        border-left: 0;
    }
    .hero-shop-btn {
        min-width: 170px;
        min-height: 50px;
        padding: 0 24px;
        font-size: 16px;
    }
    .hero-content {
        top: 11%;
        right: 3.5%;
        width: min(40%, 350px);
    }
    .hero-highlights {
        gap: 14px;
    }
    .products-card,
    .products-showcase,
    .reviews-card,
    .contact-card,
    .stores-showcase,
    .contact-home {
        padding-left: 24px;
        padding-right: 24px;
    }
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .reviews-layout,
    .stores-locations,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-page-shell {
        width: min(100%, 920px);
    }
    .reviews-layout .review-feature {
        grid-column: 1 / -1;
    }
    .contact-grid .social-panel {
        grid-column: 1 / -1;
    }
    .reviews-bottom,
    .career-list {
        grid-template-columns: 1fr;
    }
    .products-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .reviews-header,
    .reviews-grid,
    .stores-showcase,
    .contact-home-grid,
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
    .review-mini-empty {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        min-height: auto;
        padding: 12px 16px;
        gap: 10px 12px;
    }
    .brand {
        order: 1;
        min-width: 0;
    }
    .menu-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }
    .site-search {
        order: 4;
        grid-column: 1 / -1;
        flex: 0 0 100%;
        min-width: 0;
        display: none;
        padding-top: 10px;
    }
    .nav-links {
        order: 3;
        grid-column: 1 / -1;
        flex: 0 0 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        min-width: 0;
        white-space: normal;
        padding: 8px 0 2px;
        border-top: 1px solid #f0ebeb;
    }
    .nav-links a {
        min-height: 40px;
        flex: 0 0 auto;
        width: 100%;
        padding: 0 4px;
    }
    .nav-links a::after {
        left: 4px;
        right: auto;
        bottom: 6px;
        width: 22px;
    }
    .nav-dropdown {
        display: grid;
        width: 100%;
        min-height: 0;
    }
    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        min-height: 40px;
        padding: 0 4px;
    }
    .nav-dropdown-toggle::after {
        left: 4px;
        right: auto;
        bottom: 6px;
        width: 22px;
    }
    .nav-dropdown-menu {
        position: static;
        left: auto;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 6px 0 0;
        border: 0;
        border-radius: 14px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
        background: #fff8f8;
        grid-template-columns: minmax(0, 1fr);
    }
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }
    .nav-dropdown-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 36px;
        padding: 0 12px;
    }
    .hero-card img {
        min-height: 280px;
    }
    .hero-content {
        top: 12%;
        right: 4.5%;
        width: min(43%, 320px);
    }
    .hero-highlight strong {
        font-size: 13px;
    }
    .hero-highlight span {
        font-size: 10px;
    }

    /* ABOUT PANEL — iPad/tablet column layout */
    .about-jollyhome-panel {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 0 24px;
        overflow: hidden;
    }
    .about-jollyhome-media {
        order: 1;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        justify-self: stretch;
    }
    .about-jollyhome-media img {
        width: 100%;
        height: auto;
    }
    .about-jollyhome-copy {
        order: 2;
        max-width: none;
        width: 100%;
        padding: 22px 18px 0;
    }
    .about-jollyhome-stats {
        order: 3;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 16px 0 !important;
        border-left: none !important;
        border-top: 1px solid #d9d9d9 !important;
        margin-top: 20px !important;
        width: 100% !important;
        grid-template-columns: unset !important;
    }
    .about-stat {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
        padding: 14px 28px !important;
        border-top: none !important;
        flex: 1 !important;
    }
    .about-stat + .about-stat {
        border-top: none !important;
        border-left: 1px solid #d9d9d9 !important;
    }
    .about-stat-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 46px !important;
        height: 46px !important;
        border-radius: 14px !important;
        background: rgba(255, 236, 236, 0.86) !important;
        color: var(--red) !important;
    }
    .about-stat-icon .fa {
        font-size: 20px !important;
        line-height: 1 !important;
        margin-top: 0 !important;
    }
    .about-stat-copy {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3px !important;
    }
    .about-stat-copy strong {
        font-size: clamp(18px, 2vw, 26px) !important;
        line-height: 1.1 !important;
        color: #101010 !important;
    }
    .about-stat-copy span {
        font-size: 13px !important;
        color: #666 !important;
        line-height: 1.35 !important;
    }
    .smart-living-banner {
        display: grid;
        gap: 0;
    }
    .smart-living-overlay {
        position: static;
        width: 100%;
        padding: 22px 18px 28px;
        background: #fff8f4;
    }
    .smart-living-copy {
        max-width: none;
    }
    .smart-living-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: none;
    }
    .smart-feature {
        padding: 0;
    }
    .hero-shop-btn {
        min-width: 148px;
        min-height: 44px;
        padding: 0 20px;
        border-radius: 14px;
        font-size: 14px;
        margin-top: 20px;
    }
    .hero-content {
        width: min(46%, 290px);
    }
    .hero-kicker {
        font-size: clamp(24px, 5vw, 34px);
    }
    .hero-title {
        font-size: clamp(34px, 7vw, 50px);
    }
    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(54%, 360px);
    }
    .hero-highlight-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }
    .hero-highlight-icon .fa {
        font-size: 15px;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    .outline-button,
    .solid-button {
        padding: 12px 22px;
    }
    .site-header.is-open .nav-links {
        display: flex;
        animation: mobileMenuDrop 0.22s ease;
    }
    .site-header.is-open .site-search {
        display: flex;
        animation: mobileMenuDrop 0.22s ease;
    }
    .site-header.is-open .menu-toggle .fa {
        transform: rotate(90deg);
    }
}

@media (max-width: 820px) {
    .page-shell {
        padding-inline: clamp(12px, 3vw, 18px);
    }
    .hero-section {
        padding-top: 4px;
    }
    .hero-card img {
        min-height: 220px;
        object-position: center;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .products-card,
    .reviews-card,
    .contact-card {
        padding-left: 18px;
        padding-right: 18px;
    }
    .reviews-layout,
    .stores-locations,
    .contact-grid,
    .contact-form,
    .feedback-form-grid,
    .reviews-bottom,
    .career-list {
        grid-template-columns: 1fr;
    }
    .contact-wizard-panel {
        padding: 24px 20px 32px;
    }
    .contact-wizard-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-wizard-field.full {
        margin-bottom: 18px;
    }
    .contact-wizard-actions,
    .contact-wizard-actions--end {
        justify-content: space-between;
    }
    .stores-locations {
        gap: 18px;
        background: linear-gradient(
            180deg,
            rgba(255, 228, 228, 0.9) 0%,
            rgba(255, 242, 242, 0.86) 100%
        );
    }
    .review-feature-stats {
        grid-template-columns: 1fr;
    }
    .site-footer {
        flex-direction: column;
        align-items: start;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 14px;
    }
    .visual-banner,
    .section-frame,
    .products-showcase,
    .reviews-showcase,
    .stores-showcase,
    .contact-home {
        width: 100%;
    }
    .products-showcase-head {
        padding-inline: 4px;
        flex-direction: column;
        align-items: flex-start;
    }
    .products-showcase-grid,
    .stores-cards,
    .contact-home-form {
        grid-template-columns: 1fr;
    }
    .review-spotlight-stats {
        grid-template-columns: 1fr;
    }
    .product-modal {
        padding: 12px;
    }
    .product-modal-media {
        min-height: 280px;
        padding: 24px;
    }
    .product-modal-content {
        padding: 28px 22px;
    }
    .careers-banner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    .careers-banner-copy {
        padding: 8px 4px 0;
    }
    .careers-banner-text {
        max-width: none;
    }
    .careers-banner-media img {
        min-height: 280px;
    }
    .careers-banner-features {
        position: static;
        margin-top: 0;
        border-radius: 0 0 20px 20px;
    }
    .careers-feature {
        min-height: 68px;
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    body {
        background:
            radial-gradient(
                circle at top right,
                rgba(229, 20, 20, 0.08),
                transparent 28%
            ),
            linear-gradient(180deg, #ffffff 0%, #fff5f2 100%);
    }
    .page-shell {
        padding-inline: 10px;
    }
    .header-inner {
        min-height: 58px;
        padding: 10px 0;
    }
    .site-header {
        border-bottom: 1px solid rgba(239, 235, 235, 0.92);
        box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
    }
    .brand img {
        width: 150px;
    }
    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .nav-links {
        gap: 14px;
        font-size: 13px;
    }
    .site-search {
        gap: 8px;
        padding-top: 8px;
    }
    .site-search-input {
        height: 40px;
        padding-right: 14px;
        padding-left: 38px;
        font-size: 13px;
    }
    .site-search-icon {
        left: 14px;
        font-size: 13px;
    }
    .section {
        padding: 10px 0;
    }
    .hero-section {
        padding-top: 8px;
        padding-bottom: 12px;
    }
    .hero-card {
        border-radius: 28px;
        box-shadow: 0 16px 34px rgba(21, 16, 16, 0.1);
    }
    .hero-card img {
        min-height: 360px;
        object-position: center;
    }
    .hero-content {
        top: 12%;
        right: 4.5%;
        width: min(52%, 230px);
    }
    .hero-kicker {
        font-size: clamp(22px, 8vw, 30px);
    }
    .hero-title {
        font-size: clamp(34px, 11vw, 52px);
    }
    .hero-highlights {
        width: 100%;
        gap: 8px;
    }
    .hero-highlight {
        gap: 4px;
    }
    .hero-highlight strong {
        font-size: 10px;
    }
    .hero-highlight span {
        font-size: 9px;
    }
    .about-jollyhome-title {
        font-size: clamp(30px, 10.5vw, 44px);
        line-height: 0.96;
    }
    .about-jollyhome-text {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.5;
    }
    .about-jollyhome-button {
        width: 100%;
        min-height: 44px;
        padding: 0 18px;
        font-size: 14px;
        border-radius: 14px;
    }
    .about-stat-icon {
        width: 38px;
        height: 38px;
    }
    .about-stat-copy strong {
        font-size: 22px;
    }
    .about-jollyhome-panel {
        gap: 16px;
        padding: 16px 14px 18px;
        border-radius: 28px;
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
    }
    .about-jollyhome-copy .eyebrow,
    .smart-living-eyebrow,
    .products-showcase .eyebrow,
    .reviews-showcase .eyebrow,
    .stores-showcase .eyebrow,
    .contact-home .eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }
    .about-jollyhome-media {
        border-radius: 22px;
        border-width: 1px;
    }
    .smart-living-title {
        font-size: clamp(26px, 9vw, 38px);
        line-height: 1;
    }
    .smart-living-copy {
        font-size: 13px;
        line-height: 1.5;
    }
    .smart-living-button {
        width: 100%;
        min-height: 44px;
        padding: 0 18px;
        font-size: 14px;
        border-radius: 14px;
    }
    .smart-living-banner {
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
        background: #fff8f4;
    }
    .smart-living-overlay {
        padding: 16px 14px 18px;
    }
    .smart-living-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .smart-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 10px;
    }
    .smart-feature-icon {
        width: 34px;
        height: 34px;
    }
    .hero-shop-btn {
        min-width: 108px;
        min-height: 36px;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 12px;
        box-shadow: 0 12px 20px rgba(229, 20, 20, 0.24);
        margin-top: 14px;
    }
    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-highlight-icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }
    .hero-highlight-icon .fa {
        font-size: 13px;
    }
    .banner-card,
    .contact-card,
    .products-card,
    .reviews-card,
    .stores-block {
        border-radius: 18px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-tile {
        min-height: auto;
    }
    .product-image {
        height: 180px;
    }
    .title {
        font-size: clamp(24px, 8vw, 32px);
    }
    .subtitle,
    .contact-copy p,
    .stores-copy p {
        font-size: 14px;
    }
    .contact-item {
        font-size: 15px;
        align-items: flex-start;
    }
    .site-footer {
        padding: 20px 16px 24px;
        border-radius: 0;
    }
    .showcase-title {
        font-size: clamp(22px, 8vw, 32px);
        line-height: 1.02;
    }
    .outline-button,
    .solid-button,
    .showcase-link,
    .product-modal-actions > * {
        width: 100%;
    }
    .products-showcase,
    .reviews-showcase,
    .stores-showcase,
    .contact-home {
        padding: 16px 14px 18px;
        border-radius: 28px;
        box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
    }
    .products-showcase-head {
        gap: 12px;
        margin-bottom: 8px;
    }
    .products-showcase-grid,
    .products-grid {
        gap: 12px;
    }
    .showcase-card,
    .product-tile {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        min-height: 0;
        padding: 12px;
        border-radius: 18px;
    }
    .showcase-favorite,
    .product-fav {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 10px;
        padding: 0;
    }
    .showcase-image-wrap,
    .product-image {
        min-height: 0;
        height: 76px;
        padding: 6px;
        margin: 0;
        border-radius: 16px;
        background: linear-gradient(180deg, #fff8f7 0%, #fff1f0 100%);
    }
    .showcase-image-wrap img,
    .product-image img {
        max-height: 64px;
    }
    .showcase-content {
        gap: 8px;
        padding: 0;
        min-width: 0;
    }
    .showcase-content h3,
    .product-name {
        font-size: 12px;
        line-height: 1.4;
        max-width: calc(100% - 20px);
    }
    .showcase-actions,
    .product-meta {
        gap: 8px;
    }
    .showcase-price,
    .product-price {
        font-size: 12px;
        line-height: 1.2;
    }
    .showcase-cart,
    .mini-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        padding: 6px;
    }
    .showcase-dots {
        display: none;
    }
    .reviews-showcase {
        background: linear-gradient(180deg, #fff 0%, #fff8f7 100%);
    }
    .reviews-header-placeholder,
    .stores-map-mark {
        display: none;
    }
    .reviews-grid {
        gap: 12px;
    }
    .review-spotlight {
        min-height: 260px;
        padding: 16px;
        border-radius: 22px;
    }
    .review-badge {
        top: 12px;
        left: 12px;
        padding: 7px 10px;
        font-size: 10px;
    }
    .review-spotlight-media {
        padding: 24px 12px 34px;
    }
    .review-spotlight-media img {
        width: min(42%, 132px);
    }
    .review-play {
        width: 56px;
        height: 56px;
        border-width: 4px;
    }
    .review-play .fa {
        font-size: 18px;
    }
    .review-spotlight-copy blockquote {
        max-width: 180px;
        font-size: 16px;
    }
    .review-spotlight-copy p {
        font-size: 11px;
    }
    .review-spotlight-stats {
        gap: 10px;
        margin-top: 12px;
        padding-top: 12px;
    }
    .review-spotlight-stats strong {
        font-size: 12px;
    }
    .review-spotlight-stats span {
        font-size: 10px;
    }
    .review-mini-card {
        grid-template-columns: 82px minmax(0, 1fr);
        grid-template-rows: none;
        align-items: stretch;
        border-radius: 18px;
    }
    .review-mini-top {
        min-height: 100%;
        padding: 10px;
    }
    .verified-pill {
        top: 8px;
        left: 8px;
        padding: 5px 8px;
        font-size: 9px;
    }

    /* Inside your @media (max-width: 560px) block — replace the existing about rules */

    .about-jollyhome-panel {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 0 18px;
        border-radius: 28px;
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
        overflow: hidden;
    }

    /* Image fills the top — full width, no border-radius, no border */
    .about-jollyhome-media {
        border-radius: 0;
        border: none;
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .about-jollyhome-media img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Copy block sits below the image */
    .about-jollyhome-copy {
        order: 2;
        padding: 18px 16px 0;
        max-width: none;
        width: 100%;
    }

    /* Stats stack vertically with dividers, below the copy */
    .about-jollyhome-stats {
        order: 3;
        display: flex;
        flex-direction: row; /* ← single row */
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0 16px;
        border-left: none;
        border-top: 1px solid #d9d9d9;
        margin-top: 18px;
        width: 100%;
    }

    .about-stat {
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 14px 4px;
        border-top: none;
        min-width: 0;
    }

    .about-stat + .about-stat {
        border-top: none;
        border-left: 1px solid #d9d9d9; /* ← vertical divider between stats */
    }

    .about-stat-icon {
        width: 34px;
        height: 34px;
        background: #fff3f3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .about-stat-copy span {
        font-size: 11px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .about-stat-copy span {
        font-size: 13px;
    }
    .review-mini-top img {
        max-height: 68px;
    }
    .review-mini-body {
        gap: 8px;
        padding: 12px;
    }
    .review-stars {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .review-mini-quote {
        font-size: 11px;
        line-height: 1.45;
    }
    .review-mini-person strong {
        font-size: 12px;
    }
    .review-mini-person span,
    .review-mini-product {
        font-size: 10px;
    }
    .review-mini-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .careers-banner {
        padding: 14px;
        border-radius: 28px;
        box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
    }
    .careers-banner-copy {
        padding: 4px 2px 0;
    }
    .careers-banner-title {
        font-size: clamp(28px, 10vw, 38px);
        line-height: 1;
    }
    .careers-banner-text {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.5;
    }
    .careers-banner-button {
        width: 100%;
        min-height: 44px;
        margin-top: 18px;
        padding: 0 16px;
        border-radius: 12px;
        font-size: 14px;
    }
    .careers-banner-media {
        border-radius: 22px;
    }
    .careers-banner-media img {
        min-height: 220px;
    }
    .careers-banner-features {
        grid-template-columns: 1fr;
        left: 0;
        right: 0;
        border-radius: 0 0 22px 22px;
    }
    .careers-feature {
        min-height: 0;
        padding: 12px 14px;
        font-size: 13px;
    }
    .careers-feature + .careers-feature {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .careers-feature-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    .careers-feature-icon .fa {
        font-size: 15px;
    }
    .stores-showcase {
        gap: 14px;
        background: linear-gradient(180deg, #fff7f5 0%, #fff1ef 100%);
    }
    .stores-copy-block {
        padding: 0;
    }
    .stores-cards {
        gap: 12px;
    }
    .store-feature-card {
        grid-template-columns: 80px minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        text-align: left;
        gap: 12px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid #f3e5e5;
    }
    .store-feature-card img {
        width: 80px;
        height: 68px;
        aspect-ratio: auto;
        border-radius: 16px;
        box-shadow: none;
    }
    .store-feature-meta strong {
        font-size: 14px;
    }
    .store-feature-meta span {
        font-size: 11px;
        line-height: 1.4;
    }
    .contact-home {
        padding-bottom: 8px;
        background: #fff;
    }
    .contact-home-grid {
        gap: 16px;
        padding-bottom: 0;
    }
    .contact-home-list {
        margin-top: 18px;
        gap: 12px;
    }
    .contact-home-item {
        align-items: flex-start;
        font-size: 13px;
        gap: 10px;
    }
    .contact-home-item .icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .contact-home-form {
        gap: 12px;
    }
    .field {
        font-size: 13px;
        padding: 12px 0;
    }
    textarea.field {
        min-height: 94px;
    }
    .contact-home-socials {
        padding-top: 8px;
        border-top: 1px solid #f0e7e7;
    }
    .contact-home-socials h3 {
        margin: 0 0 8px;
        font-size: 20px;
    }
    .contact-home-socials p {
        margin-bottom: 14px;
        font-size: 12px;
    }
    .social-icons {
        gap: 10px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }
    .product-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal,
    .reveal-left {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── Review Spotlight – Mobile ─────────────────────────── */

@media (max-width: 820px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .review-spotlight {
        min-height: 340px;
        padding: 20px;
        border-radius: 24px;
    }

    .review-spotlight-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 14px;
        padding-top: 14px;
    }
}

@media (max-width: 560px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Card layout: tighter, full-width */
    .review-spotlight {
        min-height: 0;
        padding: 14px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Badge */
    .review-badge {
        position: relative;
        top: auto;
        left: auto;
        align-self: flex-start;
        margin-bottom: 10px;
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 999px;
    }

    /* Hide the play button on small screens (no video anyway) */
    .review-play {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }

    .review-play .fa {
        font-size: 16px;
    }

    /* Quote */
    .review-spotlight-copy {
        margin-top: 8px;
    }

    .review-spotlight-copy blockquote {
        font-size: 17px;
        line-height: 1.2;
        max-width: 100%;
    }

    .review-spotlight-copy p {
        font-size: 12px;
        margin-top: 6px;
        color: rgba(255, 255, 255, 0.78);
    }

    /* Stats row — keep all 3 side by side */
    .review-spotlight-stats {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .review-spotlight-stats > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 4px;
    }

    .review-spotlight-stats > div + div {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .review-spotlight-stats strong {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .review-spotlight-stats span {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.35;
    }
}

.product-marketplace-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(180deg, #fff 0%, #f7f3f3 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 14px 30px rgba(17, 17, 17, 0.1);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    flex: 0 0 56px;
    overflow: hidden;
    padding: 0;
}

.product-marketplace-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 18px 34px rgba(17, 17, 17, 0.14);
}

.product-marketplace-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.product-marketplace-button--shopee {
    border-color: rgba(243, 91, 37, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(243, 91, 37, 0.15);
}

.product-marketplace-button--lazada {
    border-color: rgba(103, 56, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(103, 56, 255, 0.15);
}

.product-marketplace-button.is-disabled {
    pointer-events: none;
    opacity: 0.45;
    box-shadow: none;
    filter: grayscale(1);
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.showcase-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition:
        background 0.2s,
        transform 0.2s;
}

.showcase-dots button.active {
    background: var(--color-primary, #e63946); /* match your brand color */
    transform: scale(1.3);
}

body.page-ohome {
    background:
        radial-gradient(
            circle at top,
            rgba(255, 132, 28, 0.16),
            transparent 22%
        ),
        linear-gradient(180deg, #050505 0%, #0b0b0b 45%, #000 100%);
    color: #f5f5f7;
}

.page-shell--ohome {
    max-width: 100%;
    padding-inline: 0;
}

.site-header--ohome {
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.site-header--ohome .nav-links a,
.site-header--ohome .nav-dropdown-toggle,
.site-header--ohome .site-search-input,
.site-header--ohome .site-search-input::placeholder,
.site-header--ohome .site-search-icon {
    color: #f5f5f7;
}

.site-header--ohome .nav-links a,
.site-header--ohome .nav-dropdown-toggle {
    opacity: 0.78;
}

.site-header--ohome .nav-links a.active,
.site-header--ohome .nav-links a:hover,
.site-header--ohome .nav-dropdown.is-active .nav-dropdown-toggle,
.site-header--ohome .nav-dropdown-toggle:hover,
.site-header--ohome .nav-dropdown-toggle[aria-expanded="true"] {
    color: #ffffff;
    opacity: 1;
}

.site-header--ohome .nav-links a::after,
.site-header--ohome .nav-dropdown-toggle::after {
    background: linear-gradient(90deg, #ff7a18 0%, #ffb15f 100%);
}

.site-header--ohome .nav-dropdown-menu,
.site-header--ohome .site-search-results {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.site-header--ohome .nav-dropdown-menu a,
.site-header--ohome .site-search-result-name,
.site-header--ohome .site-search-result-meta {
    color: #f5f5f7;
}

.site-header--ohome .nav-dropdown-menu a.active,
.site-header--ohome .nav-dropdown-menu a:hover,
.site-header--ohome .site-search-result:hover {
    background: rgba(255, 255, 255, 0.06);
}

.site-header--ohome .menu-toggle {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.site-header--ohome .site-search-input {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.site-header--ohome .site-search-input:focus {
    border-color: rgba(255, 122, 24, 0.66);
    box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}

@media (max-width: 1024px) {
    .site-header--ohome .nav-links {
        border-top-color: rgba(255, 255, 255, 0.12);
    }

    .site-header--ohome .nav-dropdown-menu {
        margin-top: 0;
        padding-top: 0;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: transparent;
        box-shadow: none;
    }

    .site-header--ohome .nav-dropdown-menu a {
        min-height: 44px;
        padding-inline: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header--ohome .nav-dropdown-menu a:last-child {
        border-bottom: 0;
    }
}

body.page-ohome .site-footer {
    background: #050505;
    color: rgba(245, 245, 247, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-ohome .site-footer a,
body.page-ohome .site-footer h3,
body.page-ohome .site-footer h4 {
    color: #f5f5f7;
}

.ohome-experience {
    position: relative;
    overflow: clip;
    padding: 20px 0 120px;
}

.ohome-experience::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 12%,
            rgba(255, 124, 28, 0.2),
            transparent 18%
        ),
        radial-gradient(
            circle at 20% 35%,
            rgba(255, 255, 255, 0.07),
            transparent 20%
        );
    pointer-events: none;
}

.ohome-subnav,
.ohome-hero,
.ohome-panel,
.ohome-story,
.ohome-carousel-section,
.ohome-showcase {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding-inline: clamp(18px, 4vw, 56px);
}

.ohome-subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 24px;
}

.ohome-subnav__label {
    color: rgba(245, 245, 247, 0.96);
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ohome-subnav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.ohome-subnav__cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 122, 24, 0.14);
    border-color: rgba(255, 122, 24, 0.44);
}

.ohome-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    min-height: min(88vh, 980px);
    padding-top: 24px;
    max-width: 100%;
}

.ohome-kicker,
.ohome-panel__eyebrow {
    display: inline-block;
    margin: 0;
    color: #ff8c2f;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ohome-title {
    margin: 20px 0 0;
    color: #f5f5f7;
    font-family: "Outfit", sans-serif;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    font-weight: 800;
}

.ohome-intro {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(245, 245, 247, 0.74);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.55;
}

.ohome-hero__media,
.ohome-device-card,
.ohome-feature-card,
.ohome-showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02)
        ),
        #050505;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 34px 80px rgba(0, 0, 0, 0.32);
}

.ohome-hero__media {
    min-height: 620px;
    padding: clamp(24px, 3vw, 42px);
}

.ohome-hero__media img,
.ohome-hero__media video,
.ohome-device-card img,
.ohome-feature-card img,
.ohome-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
}

.ohome-panel {
    padding-top: 60px;
}

.ohome-panel__heading,
.ohome-showcase__copy {
    max-width: 980px;
    margin-bottom: 28px;
}

.ohome-panel__heading h2,
.ohome-story__copy h2,
.ohome-showcase__copy h2 {
    margin: 14px 0 0;
    color: #f5f5f7;
    font-family: "Outfit", sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.ohome-feature-grid,
.ohome-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ohome-feature-card,
.ohome-showcase-card {
    min-height: 700px;
    padding: 36px;
}

.ohome-feature-card::before,
.ohome-showcase-card::before,
.ohome-hero__media::before,
.ohome-device-card::before,
.ohome-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 136, 43, 0.16),
            transparent 26%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%);
    pointer-events: none;
}

.ohome-feature-card img,
.ohome-showcase-card img {
    height: calc(100% - 150px);
}

.ohome-feature-card__copy,
.ohome-showcase-card__copy {
    position: absolute;
    inset: auto 36px 36px 36px;
    z-index: 1;
}

.ohome-feature-card__tag {
    color: #ff8c2f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ohome-feature-card h3,
.ohome-showcase-card h3 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ohome-feature-card p,
.ohome-showcase-card p,
.ohome-story__copy p {
    margin: 14px 0 0;
    color: rgba(245, 245, 247, 0.68);
    font-size: 17px;
    line-height: 1.6;
}

.ohome-story {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 28px;
    align-items: center;
    padding-top: 60px;
}

.ohome-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.ohome-spec {
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.ohome-spec strong {
    display: block;
    color: #ff8c2f;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.ohome-spec span {
    display: block;
    margin-top: 10px;
    color: rgba(245, 245, 247, 0.76);
    line-height: 1.45;
}

.ohome-device-card {
    min-height: 760px;
    padding: 30px;
}

.ohome-carousel-section {
    padding-top: 60px;
}

.ohome-carousel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02)
        ),
        #040404;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 34px 80px rgba(0, 0, 0, 0.34);
    padding: 34px;
    width: 100%;
}

.ohome-carousel__viewport {
    position: relative;
    min-height: 760px;
}

.ohome-carousel__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96) translateY(30px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.ohome-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.ohome-carousel__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 640px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.ohome-carousel__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.42));
}

.ohome-carousel__copy {
    align-self: center;
    padding-right: 10px;
}

.ohome-carousel__copy h3 {
    margin: 14px 0 0;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.ohome-carousel__copy p {
    margin: 18px 0 0;
    color: rgba(245, 245, 247, 0.7);
    font-size: 18px;
    line-height: 1.65;
}

.ohome-carousel__controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

.ohome-carousel__arrow {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease;
}

.ohome-carousel__arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 136, 43, 0.16);
    border-color: rgba(255, 136, 43, 0.34);
}

.ohome-carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ohome-carousel__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    transition:
        transform 0.24s ease,
        width 0.24s ease,
        background 0.24s ease;
}

.ohome-carousel__dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, #ff7a18 0%, #ffb76a 100%);
}

.ohome-showcase {
    padding-top: 60px;
}

.ohome-panel__heading,
.ohome-story__copy,
.ohome-showcase__copy {
    padding-inline: clamp(0px, 1vw, 12px);
}

.ohome-parallax {
    transition: transform 0.18s linear;
    transform: translate3d(0, 0, 0);
}

.ohome-hero__media img,
.ohome-hero__media video,
.ohome-device-card img,
.ohome-feature-card img,
.ohome-showcase-card img {
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.ohome-feature-card:hover,
.ohome-showcase-card:hover,
.ohome-device-card:hover,
.ohome-hero__media:hover,
.ohome-carousel:hover {
    transform: translateY(-4px);
    transition: transform 0.32s ease;
}

@media (max-width: 1180px) {
    .ohome-hero,
    .ohome-story,
    .ohome-feature-grid,
    .ohome-carousel__slide,
    .ohome-showcase__grid {
        grid-template-columns: 1fr;
    }

    .ohome-hero {
        min-height: 0;
        padding-top: 12px;
    }

    .ohome-hero__media,
    .ohome-feature-card,
    .ohome-showcase-card,
    .ohome-device-card,
    .ohome-carousel__viewport {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .ohome-experience {
        padding-bottom: 72px;
    }

    .ohome-subnav {
        padding-bottom: 18px;
    }

    .ohome-panel,
    .ohome-story,
    .ohome-carousel-section,
    .ohome-showcase {
        padding-top: 38px;
    }

    .ohome-specs {
        grid-template-columns: 1fr;
    }

    .ohome-feature-card,
    .ohome-showcase-card,
    .ohome-device-card,
    .ohome-hero__media,
    .ohome-carousel {
        min-height: 460px;
        padding: 22px;
        border-radius: 26px;
    }

    .ohome-carousel__viewport,
    .ohome-carousel__media {
        min-height: 420px;
    }

    .ohome-feature-card__copy,
    .ohome-showcase-card__copy {
        inset: auto 22px 22px 22px;
    }

    .ohome-carousel__copy {
        padding-right: 0;
    }
}

@media (max-width: 560px) {
    .page-shell--ohome {
        padding-inline: 0;
    }

    .ohome-subnav,
    .ohome-hero,
    .ohome-panel,
    .ohome-story,
    .ohome-carousel-section,
    .ohome-showcase {
        padding-inline: 14px;
    }

    .ohome-subnav {
        flex-wrap: wrap;
    }

    .ohome-title {
        font-size: clamp(46px, 18vw, 72px);
    }

    .ohome-kicker,
    .ohome-panel__eyebrow {
        font-size: 15px;
    }

    .ohome-intro,
    .ohome-feature-card p,
    .ohome-showcase-card p,
    .ohome-story__copy p,
    .ohome-spec span {
        font-size: 14px;
    }

    .ohome-panel__heading h2,
    .ohome-story__copy h2,
    .ohome-showcase__copy h2 {
        font-size: clamp(34px, 13vw, 52px);
    }

    .ohome-feature-card,
    .ohome-showcase-card,
    .ohome-device-card,
    .ohome-hero__media,
    .ohome-carousel {
        min-height: 360px;
        padding: 18px;
    }

    .ohome-carousel__viewport,
    .ohome-carousel__media {
        min-height: 320px;
    }

    .ohome-carousel__copy h3 {
        font-size: 28px;
    }

    .ohome-carousel__copy p {
        font-size: 14px;
    }

    .ohome-carousel__controls {
        gap: 12px;
    }

    .ohome-carousel__arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .ohome-feature-card img,
    .ohome-showcase-card img {
        height: calc(100% - 130px);
    }

    .ohome-feature-card h3,
    .ohome-showcase-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .category-showcase__actions {
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .category-showcase {
        padding: 16px 14px 18px;
    }

    .category-showcase__head {
        gap: 16px;
    }

    .category-showcase__actions {
        width: 100%;
        justify-content: space-between;
    }

    .category-card {
        flex-basis: calc((100% - (var(--category-gap) * 2)) / 3);
        width: calc((100% - (var(--category-gap) * 2)) / 3);
    }

    .category-card__media {
        min-height: 124px;
    }

    .category-card__overlay {
        inset: 12px 12px auto 12px;
        gap: 4px;
    }

    .category-card__overlay h3 {
        font-size: 15px;
    }

    .category-card__tag {
        padding: 5px 8px;
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .category-card__play {
        right: 12px;
        bottom: 12px;
        width: 34px;
        height: 34px;
    }

    .category-card__body {
        gap: 8px;
        padding: 14px 12px 14px;
    }

    .category-card__body h3 {
        font-size: 15px;
        line-height: 1.2;
    }

    .category-card__body p {
        font-size: 11px;
        line-height: 1.45;
    }

    .category-card__link {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .category-carousel__arrow {
        width: 38px;
        height: 38px;
    }
}

/* Responsive hardening for customer-facing pages */
@media (max-width: 1024px) {
    .hero-card {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-content {
        position: static;
        width: 100%;
        padding: 24px 22px 26px;
        justify-items: start;
        background: linear-gradient(180deg, #fffefe 0%, #fff7f6 100%);
    }

    .hero-copy {
        text-align: left;
    }

    .hero-highlights {
        width: 100%;
        max-width: none;
    }

    .hero-shop-btn {
        margin-top: 20px;
    }

    .smart-living-banner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .smart-living-overlay {
        position: static;
        width: 100%;
        max-width: none;
    }

    .products-showcase-grid,
    .stores-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-home-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

@media (max-width: 767.98px) {
    .page-shell {
        overflow-x: clip;
    }

    .header-inner {
        padding-inline: 0;
    }

    .hero-card {
        border-radius: 24px;
    }

    .hero-card img {
        min-height: 240px;
    }

    .hero-content {
        padding: 20px 16px 22px;
        gap: 14px;
    }

    .hero-shop-btn,
    .smart-living-button,
    .about-jollyhome-button,
    .careers-banner-button,
    .ohome-subnav__cta {
        width: 100%;
    }

    .ohome-specs {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
    }

    .smart-living-features {
        display: grid;
        grid-template-columns: 1fr;
    }

    .smart-feature {
        padding: 12px 0;
    }

    .products-grid,
    .products-showcase-grid,
    .stores-cards,
    .store-region-panel,
    .ohome-feature-grid,
    .ohome-showcase__grid {
        grid-template-columns: 1fr;
    }

    .showcase-card,
    .product-tile,
    .store-feature-card {
        min-width: 0;
    }

    .contact-home-item,
    .store-detail,
    .store-feature-meta span,
    .review-mini-quote,
    .product-name,
    .showcase-content h3,
    .contact-page-socials,
    .contact-wizard-field label {
        overflow-wrap: anywhere;
    }

    .product-modal-dialog {
        max-height: min(92vh, 920px);
    }

    .product-modal-actions,
    .contact-wizard-actions,
    .ohome-subnav {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-wizard-tabs {
        grid-template-columns: 1fr;
    }

    .contact-wizard-tab,
    .contact-wizard-button {
        width: 100%;
    }

    .store-region summary {
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .about-jollyhome-stats {
        flex-direction: column;
    }

    .about-stat + .about-stat {
        border-left: 0;
        border-top: 1px solid #d9d9d9;
    }

    .smart-living-features {
        grid-template-columns: 1fr;
    }

    .product-modal {
        padding: 8px;
    }

    .product-modal-content,
    .product-modal-media,
    .contact-wizard-panel {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── MOBILE OVERFLOW FIX ── */
@media (max-width: 767.98px) {
    .about-jollyhome-panel,
    .about-jollyhome-copy,
    .about-jollyhome-text,
    .about-jollyhome-stats {
        overflow: hidden;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .about-jollyhome-text {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .about-jollyhome-stats {
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .about-stat {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 12px 4px !important;
        overflow: hidden !important;
    }

    .about-stat-copy strong {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .about-stat-copy span {
        font-size: 10px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* ── MOBILE NAV DROPDOWN FIX ── */
@media (max-width: 1024px) {
    .nav-dropdown-menu {
        display: none;
        background: #fff8f8 !important;
        border-radius: 12px !important;
        padding: 6px 0 !important;
        overflow: visible !important;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .nav-dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        min-height: 40px !important;
        padding: 0 16px !important;
        color: #141414 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        background: transparent !important;
        border-radius: 0 !important;
        width: 100% !important;
        text-decoration: none !important;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active {
        background: #ffe8e8 !important;
        color: var(--red) !important;
    }
}
