/* =====================================================
   Tilewala — main stylesheet
   Mobile-first, responsive, accessibility-friendly.
   Section index:
     1. Custom properties (CSS variables)
     2. Base / reset
     3. Typography
     4. Layout & containers
     5. Header / branding
     6. Navigation (desktop + mobile)
     7. Content / entries
     8. Sidebar & widgets
     9. Comments
    10. Forms
    11. Footer
    12. Utility classes (flex, display, text, sizing, position, cursor, gap, spacing)
    13. WordPress alignment utilities
    14. Accessibility
    15. WordPress core classes
    16. Media queries (responsive)
   ===================================================== */


/* ---------- 1. Custom properties ---------- */

:root {
    --tw-accent: #2563eb;
    --tw-accent-dark: #1d4ed8;
    --tw-text: #1f2937;
    --tw-muted: #6b7280;
    --tw-border: #e5e7eb;
    --tw-bg: #ffffff;
    --tw-bg-alt: #f9fafb;
    --primary-color: #3A4F6A;
    --tw-hero-strip-bg: var(--tw-bg-alt);
    --tw-hero-strip-bg: color-mix(in srgb, var(--primary-color) 5%, var(--tw-bg-alt) 95%);
    --tw-hero-card-bg: var(--tw-bg);
    --tw-hero-media-bg: var(--tw-bg-alt);
    --tw-hero-media-bg: color-mix(in srgb, var(--primary-color) 9%, var(--tw-bg-alt) 91%);
    --tw-shop-by-use-caption-bg: var(--tw-bg-alt);
    --tw-shop-by-use-caption-bg: color-mix(in srgb, var(--primary-color) 2.5%, var(--tw-bg) 97.5%);
    --tw-container: 1280px;
    --tw-radius: 8px;
    --tw-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --tw-shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --tw-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    --tw-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    --tw-fs-base: 12px;
    --tw-leading: 1.65;
    --font-regular: "Visby Regular";
    --font-satisfy-regular: "Satisfy Regular";
    --font-medium: "Visby Medium";
    --font-heavy: "Visby Heavy";
    --font-bold: "Visby Bold";
    --font-extrabold: "Visby Extrabold";
    --font-thin: "Visby Thin";
    --font-light: "Visby Light";
    --font-shop: "Shlop Rg";
}

@font-face {
    font-family: "Satisfy Regular";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/Satisfy-Regular.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Regular";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-REGULAR.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-BOLD.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Extrabold";
    font-style: normal;
    font-weight: 800;
    src: url("../../assets/fonts/VISBYCF-EXTRABOLD.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Heavy";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-HEAVY.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Light";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-LIGHT.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Medium";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-MEDIUM.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Visby Thin";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/VISBYCF-THIN.OTF") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Shlop Rg";
    font-style: normal;
    font-weight: normal;
    src: url("../../assets/fonts/shlop-rg.otf") format("opentype");
    font-display: swap;
}


/* ---------- 2. Base / reset ---------- */

*,
*:before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Full-bleed `100vw` strips are slightly wider than the layout when a vertical scrollbar exists; without this the page grows a horizontal scrollbar + white gutter. */
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: var(--tw-fs-base);
    line-height: var(--tw-leading);
    color: var(--tw-text);
    background: var(--tw-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Apply Visby globally across all UI/content elements. */

body * {
    font-family: var(--font-regular), var(--tw-font-sans);
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe,
embed,
object {
    max-width: 100%;
}

a {
    color: var(--tw-accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover,
a:focus {
    color: var(--tw-accent-dark);
    text-decoration: underline;
}

:focus-visible {
    outline: 2px solid var(--tw-accent);
    outline-offset: 2px;
}

hr {
    border: none;
    border-top: 1px solid var(--tw-border);
    margin: 2rem 0;
}


/* ---------- 3. Typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.6em;
    font-weight: 700;
    color: #111827;
    font-size: 12px;
    line-height: 1.4;
}

h1 {
    font-size: 12px;
    line-height: 1.2;
}

h2 {
    font-size: 12px;
    line-height: 1.3;
}

h3 {
    font-size: 12px;
    line-height: 1.4;
}

h4 {
    font-size: 12px;
    line-height: 1.3;
}

h5 {
    font-size: 12px;
    line-height: 1.3;
}

h6 {
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p,
span,
li,
textarea,
input,
button {
    font-size: 16px;
}

p {
    margin: 0 0 1.25rem;
}


/* Keep global typography consistent at 12px on mobile as requested. */

@media (max-width: 767px) {
    h1,
    h2,
    h3 {
        font-size: 12px;
    }
}

blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--tw-accent);
    background: var(--tw-bg-alt);
    font-style: italic;
    color: #374151;
}

code,
pre,
kbd {
    font-family: var(--tw-font-mono);
    font-size: 0.9em;
}

code {
    padding: 0.15em 0.35em;
    background: var(--tw-bg-alt);
    border-radius: 4px;
}

pre {
    overflow-x: auto;
    padding: 1rem;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--tw-radius);
}


/* ---------- 4. Layout & containers ---------- */

.container {
    width: 100%;
    max-width: var(--tw-container);
    margin: 0 auto;
    padding: 0 1rem;
}


/* ---------- 5. Header / branding ---------- */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
}

.site-header__announcement {
    background: #1c1c2b;
    color: #fff;
}

.site-header__announcement .container.announcement-bar {
    max-width: 1280px;
}

.announcement-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 42px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.announcement-bar__cta {
    flex-shrink: 0;
    color: #fff;
    font-family: var(--font-bold), var(--tw-font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.announcement-bar__cta:hover,
.announcement-bar__cta:focus,
.announcement-bar__cta:focus-visible {
    color: #fff;
    text-decoration: none;
}

.announcement-bar__carousel {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.announcement-bar__track {
    display: flex;
    width: max-content;
    animation: announcement-carousel 18s linear infinite;
}

.announcement-bar__slide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 3rem;
    text-align: center;
    white-space: nowrap;
}

.announcement-bar__slide span {
    font-family: var(--font-bold), var(--tw-font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.announcement-bar__divider {
    margin: 0 24px;
    opacity: 0.9;
}

@keyframes announcement-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-bar__socials {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-bar__social {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.announcement-bar__social:hover {
    opacity: 0.85;
    transform: scale(1.06);
    background: transparent;
    text-decoration: none;
}

.announcement-bar__social svg {
    width: 24px;
    height: auto;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .announcement-bar__track {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .announcement-bar__slide {
        padding: 0;
    }

    .announcement-bar__slide:not(:first-child) {
        display: none;
    }
}


.site-header__middle {
    border-bottom: 1px solid var(--tw-border);
}

.site-header__middle-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 14px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title,
.site-description {
    display: none;
}

.custom-logo-link img {
    max-height: 64px;
    width: auto;
}

.site-header__search {
    flex: 1 1 auto;
    max-width: 560px;
    min-width: 0;
}

.site-header__aside {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

.site-header__contact {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
}

.site-header__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-header__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 9%, #ffffff 91%);
    color: var(--primary-color);
}

.site-header__contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

.site-header__contact-icon svg.site-header__contact-svg--email {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
}

.site-header__contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
}

.site-header__contact-label {
    margin: 0;
    font-family: var(--font-medium), var(--tw-font-sans);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tw-muted);
}

.site-header__contact-value {
    display: block;
    font-family: var(--font-bold), var(--tw-font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    visibility: visible;
    opacity: 1;
}

.site-header__contact-value:hover,
.site-header__contact-value:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.site-header__search .search-form {
    position: relative;
    display: flex;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}

.site-header__search .search-field {
    height: 42px;
    padding: 0 48px 0 14px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
}

.site-header__search .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 46px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    font-size: 0;
    transform: none;
    border: 0;
}

.search-submit-icon {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
    padding-left: 1.25rem;
    border-left: 1px solid var(--tw-border);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.header-account-link,
.header-cart-link,
.header-wishlist-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #111827;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-account-link:hover,
.header-cart-link:hover,
.header-wishlist-link:hover {
    color: var(--primary-color);
    background: #f8fafc;
    border-color: #d1d5db;
    text-decoration: none;
}

.header-cart-link,
.header-wishlist-link {
    position: relative;
}

.header-wishlist-link.is-active,
.header-wishlist-link:hover .header-icon {
    color: var(--primary-color);
}

.header-wishlist-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.1rem;
    text-align: center;
}

.header-wishlist-count[hidden] {
    display: none !important;
}

.header-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.1rem;
    text-align: center;
}

.header-cart-count[hidden] {
    display: none !important;
}

.site-header__bottom {
    position: relative;
    z-index: 200;
    background: var(--primary-color);
}

.site-header__nav-wrap {
    width: 100%;
    max-width: var(--tw-container);
    margin: 0 auto;
    padding: 0 1rem;
}


/* ---------- 6. Navigation ---------- */

.main-navigation {
    display: flex;
    align-items: center;
    width: 100%;
}

.main-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
}

.main-navigation .nav-menu > li {
    margin: 0;
}

.main-navigation .nav-menu > li > .nav-menu__link--top {
    display: inline-block;
    padding: 12px 14px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 0;
}

.main-navigation .nav-menu > li > .nav-menu__link--top:hover,
.main-navigation .nav-menu > li > .nav-menu__link--top:focus-visible,
.main-navigation .nav-menu > .current-menu-item > .nav-menu__link--top {
    color: #fff;
    opacity: 0.92;
}

.main-navigation .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mega menu panel — full viewport width */
.mega-menu {
    --mega-menu-panel-height: 280px;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--tw-border);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.mega-menu__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 1.4fr);
    gap: 28px;
    align-items: stretch;
    min-height: var(--mega-menu-panel-height);
    max-width: var(--tw-container);
    margin: 0 auto;
    padding: 28px 1rem 32px;
}

.mega-menu__featured {
    height: var(--mega-menu-panel-height);
    min-height: var(--mega-menu-panel-height);
}

.mega-menu__featured-link {
    display: block;
    position: relative;
    height: var(--mega-menu-panel-height);
    min-height: var(--mega-menu-panel-height);
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
}

.mega-menu__featured-link--placeholder {
    background: color-mix(in srgb, var(--primary-color) 88%, #000 12%);
}

.mega-menu__featured-img {
    display: block;
    width: 100%;
    height: var(--mega-menu-panel-height);
    min-height: var(--mega-menu-panel-height);
    object-fit: cover;
    border-radius: 12px;
}

.mega-menu__featured-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.72) 100%);
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 10px;
    align-content: stretch;
    min-height: var(--mega-menu-panel-height);
    height: var(--mega-menu-panel-height);
    margin: 0;
}

.mega-menu__link {
    --mega-menu-thumb-width: 88px;
    --mega-menu-card-pad-x: 12px;
    --mega-menu-card-pad-y: 10px;
    position: relative;
    display: block;
    min-height: 84px;
    height: 100%;
    padding: var(--mega-menu-card-pad-y) var(--mega-menu-card-pad-x) var(--mega-menu-card-pad-y) 0;
    overflow: hidden;
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mega-menu__link:hover,
.mega-menu__link:focus-visible {
    border-color: color-mix(in srgb, var(--primary-color) 45%, var(--tw-border) 55%);
    box-shadow: 0 8px 22px rgba(58, 79, 106, 0.14);
    transform: translateY(-1px);
    color: var(--primary-color);
}

.mega-menu__media {
    position: absolute;
    top: var(--mega-menu-card-pad-y);
    right: var(--mega-menu-card-pad-x);
    bottom: var(--mega-menu-card-pad-y);
    width: var(--mega-menu-thumb-width);
    overflow: hidden;
    border-radius: 6px;
    background: #eef1f5;
}

.mega-menu__media--placeholder {
    background: linear-gradient(135deg, #e8ecf1 0%, #f4f6f8 100%);
}

.mega-menu__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu__title {
    display: flex;
    align-items: center;
    min-height: calc(84px - (var(--mega-menu-card-pad-y) * 2));
    min-width: 0;
    padding: 12px calc(var(--mega-menu-thumb-width) + var(--mega-menu-card-pad-x) + 14px) 12px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #1f2937;
}

.mega-menu__link:hover .mega-menu__title,
.mega-menu__link:focus-visible .mega-menu__title {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .main-navigation .nav-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .main-navigation .nav-menu > li {
        position: static;
    }

    .main-navigation .nav-menu > li.has-mega-menu {
        position: static;
    }

    .main-navigation .nav-menu > li.has-mega-menu:hover > .mega-menu,
    .main-navigation .nav-menu > li.has-mega-menu:focus-within > .mega-menu,
    .main-navigation .nav-menu > li.has-mega-menu.focus > .mega-menu {
        display: block;
    }

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

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin: 8px 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0;
    cursor: pointer;
}

.menu-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.main-navigation.toggled .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.main-navigation.toggled .nav-menu > li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-navigation.toggled .nav-menu > li > .nav-menu__link--top {
    padding: 0.85rem 0.75rem;
    width: 100%;
}

.main-navigation.toggled .mega-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: 0;
    background: rgba(0, 0, 0, 0.12);
}

.main-navigation.toggled .nav-menu > li.has-mega-menu.is-mega-open > .mega-menu {
    display: block;
}

.main-navigation.toggled .mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0 16px;
}

.main-navigation.toggled .mega-menu {
    --mega-menu-panel-height: auto;
}

.main-navigation.toggled .mega-menu__featured,
.main-navigation.toggled .mega-menu__featured-img,
.main-navigation.toggled .mega-menu__featured-link {
    height: auto;
    min-height: 160px;
}

.main-navigation.toggled .mega-menu__grid {
    height: auto;
    min-height: 0;
}

.main-navigation.toggled .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0.5rem;
}

.main-navigation.toggled .mega-menu__link {
    background: #fff;
    color: #1f2937;
}

.main-navigation.toggled .mega-menu__title {
    color: #1f2937;
}

/* Tablet + mobile header: logo + icons, search (contact hidden) */
@media (max-width: 1024px) {
    .site-header__announcement .container.announcement-bar,
    .site-header__middle > .container,
    .site-header__nav-wrap {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .site-header__middle-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        gap: 0.75rem 1rem;
        align-items: center;
        padding: 12px 0;
    }

    .site-branding {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .site-header__search {
        grid-column: 1 / -1;
        grid-row: 2;
        order: unset;
        max-width: none;
        width: 100%;
        min-width: 0;
    }

    .site-header__aside {
        display: contents;
        width: auto;
        margin-left: 0;
        order: unset;
    }

    .site-header__contact {
        display: none !important;
    }

    .site-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        padding: 0;
        border-left: 0;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .site-header__announcement .container.announcement-bar,
    .site-header__middle > .container,
    .site-header__nav-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .announcement-bar {
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 0.75rem;
    }
    .announcement-bar__cta,
    .announcement-bar__slide span {
        font-size: 12px;
    }
    .main-navigation {
        width: 100%;
        justify-content: flex-start;
    }

    .custom-logo-link img {
        max-height: 52px;
    }
}


/* ---------- Home hero carousel ---------- */

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #111827;
}

.home-hero__track {
    position: relative;
    min-height: 520px;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.55s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero__content {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 56px;
    color: #fff;
}

.home-hero__content h2 {
    margin: 0 0 8px;
    font-size: 48px;
    line-height: 1.1;
    font-family: var(--font-bold), var(--tw-font-sans);	
    font-weight: 400;		
    color: #fff;
    text-transform: uppercase;
}

.home-hero__content p {
    margin: 0 0 20px;
    font-size: 20px;
    max-width: 620px;
    color: #f3f4f6;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 8px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
}

.home-hero__button:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.home-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.home-hero__arrow--prev {
    left: 24px;
}

.home-hero__arrow--next {
    right: 24px;
}

.home-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.12);
	transform: translateY(-50%);
}

.home-hero__arrow:focus,
.home-hero__arrow:active,
.home-hero__arrow:focus-visible {
	transform: translateY(-50%);
}

.home-hero__arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.home-hero__dot {
    width: 48px;
    height: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    border-radius: 0;
    padding: 0;
}

.home-hero__dot.is-active {
    background: #fff;
}


/* ---------- Home shop categories ---------- */

.shop-categories {
    padding: 60px 0;
    background: #fff;
}

.shop-categories__title {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.2;
    font-family: var(--font-medium), var(--tw-font-sans);
    text-transform: none;
    letter-spacing: 0;
    color: #1f2937;
}

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

.shop-categories__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #111827;
    text-decoration: none;
}

.shop-categories__thumb {
    min-height: 132px;
    border-radius: 8px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.shop-categories__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    border: 0;
    box-shadow: none;
}

.shop-categories__name {
    font-family: var(--font-medium), var(--tw-font-sans);
    font-size: 18px;
    line-height: 1.3;
    color: #111827;
}

.shop-categories__item:hover .shop-categories__name {
    color: var(--primary-color);
}

/* ---------- Home projects slider ---------- */
.home-projects {
	padding: 60px 0;
	margin: 0;
	background: #f4f4f4;
}

.home-projects .container {
	position: relative;
}

.home-projects__title {
	margin: 0 0 18px;
	text-align: center;
	font-size: 42px;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #111827;
}

.home-projects__slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #f4f4f4;
}

.home-projects__viewport {
	display: flex;
	align-items: stretch;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px 46px 8px;
	background: #f4f4f4;
}

.home-projects__viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.home-projects__card {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 60px) / 4);
	min-width: 0;
	text-decoration: none;
	color: #111827;
	background: var(--tw-bg);
	border: 1px solid var(--tw-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--tw-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-projects__card:hover {
	border-color: color-mix(in srgb, var(--primary-color) 22%, var(--tw-border) 78%);
	box-shadow: var(--tw-shadow-md);
	transform: translateY(-3px);
	text-decoration: none;
}

.home-projects__media {
	position: relative;
	background: var(--tw-bg-alt);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	min-height: 0;
	isolation: isolate;
}

/* Match Best Sellers: layered fills + zoom to crop catalog white margins. */
.home-projects__thumb-link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-projects__media .tile-catalog-card__quickview {
	z-index: 2;
}

.home-projects__title-link {
	color: inherit;
	text-decoration: none;
}

.home-projects__title-link:hover,
.home-projects__title-link:focus-visible {
	color: var(--primary-color);
}

section.home-projects .home-projects__media img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1.5);
	transform-origin: center center;
	transition: opacity 0.35s ease;
}

.home-projects__img--primary {
	z-index: 0;
}

.home-projects__img--hover {
	z-index: 1;
	opacity: 0;
}

.home-projects__card:hover .home-projects__img--hover {
	opacity: 1;
}

.home-projects__card:hover .home-projects__img--primary {
	opacity: 0;
}

.home-projects__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 8px;
	padding: 14px 16px 16px;
}

.home-projects__name {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
	font-family: var(--font-bold), var(--tw-font-sans);
	font-weight: 700;
	color: var(--tw-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-projects__card:hover .home-projects__name {
	color: var(--primary-color);
}

.home-projects__price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 8px;
	margin: 0;
}

.home-projects__price {
	font-family: var(--font-bold), var(--tw-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.home-projects__old-price {
	font-size: 14px;
	color: var(--tw-muted);
	text-decoration: line-through;
}

.home-projects__unit-price {
	margin: 0;
	font-size: 13px;
	line-height: 1.3;
	color: var(--tw-muted);
}

.home-projects__arrow,
.home-best-sellers__arrow {
	top: 58%;
	width: 40px;
	height: 40px;
	border-color: transparent;
	background: var(--primary-color);
}

.home-projects__arrow:hover,
.home-best-sellers__arrow:hover {
	background: var(--tw-accent-dark);
	transform: translateY(-50%);
}

.home-projects__arrow:focus,
.home-projects__arrow:active,
.home-projects__arrow:focus-visible,
.home-best-sellers__arrow:focus,
.home-best-sellers__arrow:active,
.home-best-sellers__arrow:focus-visible {
	transform: translateY(-50%);
}

.home-projects__arrow--prev,
.home-best-sellers__arrow--prev {
	left: 0;
}

.home-projects__arrow--next,
.home-best-sellers__arrow--next {
	right: 0;
}

.mt-40 {
	margin-top: 40px;
}

/* ---------- Home CTA banner ---------- */
.home-cta-banner {
	width: 100vw;
	margin: 0px 0 60px;
	padding: 0;
	overflow: hidden;
	background: #f4f4f4;
}

.home-cta-banner img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}

/* ---------- Home samples banner ---------- */
.home-samples-banner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	align-items: stretch;
	background: transparent;
	max-height: 400px;
	overflow: hidden;
}

.home-samples-banner__media {
	overflow: hidden;
	max-height: 400px;
	min-height: 0;
}

.home-samples-banner__media img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	min-height: 0;
	object-fit: cover;
	object-position: top;
	display: block;
}

.home-samples-banner__content {
	padding: 38px 46px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--primary-color);
	max-height: 400px;
	min-height: 0;
}

.home-samples-banner__content h2 {
	margin: 0 0 8px;
	font-size: 46px;
	line-height: 1.1;
	text-transform: capitalize;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #fff;
}

.home-samples-banner__content p {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
	max-width: 520px;
}

.home-samples-banner__button {
	align-self: flex-start;
    border: 1px solid #fff;
    font-family: var(--font-medium), var(--tw-font-sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 8px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 8px;
}

.home-samples-banner__button:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	text-decoration: none;
}

/* ---------- Home best sellers ---------- */
.home-best-sellers {
	padding: 60px 0;
	margin: 0;
	background: #f4f4f4;
}

.home-best-sellers__title {
	margin: 0 0 18px;
	text-align: center;
	font-size: 42px;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #111827;
}

.home-best-sellers__slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #f4f4f4;
}

.home-best-sellers .container {
	position: relative;
}

.home-best-sellers__viewport {
	display: flex;
	align-items: stretch;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px 46px 8px;
	background: #f4f4f4;
}

.home-best-sellers__viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.home-best-sellers__card {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 60px) / 4);
	min-width: 0;
	text-decoration: none;
	color: #111827;
	background: var(--tw-bg);
	border: 1px solid var(--tw-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--tw-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-best-sellers__card:hover {
	border-color: color-mix(in srgb, var(--primary-color) 22%, var(--tw-border) 78%);
	box-shadow: var(--tw-shadow-md);
	transform: translateY(-3px);
	text-decoration: none;
}

.home-best-sellers__media {
	position: relative;
	background: var(--tw-bg-alt);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	min-height: 0;
	isolation: isolate;
}

/*
 * Layer + zoom: catalog shots often ship with white margins baked into the JPG.
 * Slight scale inside overflow:hidden crops that; specificity + props beat global `img` rules.
 */
.home-best-sellers__thumb-link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-best-sellers__media .tile-catalog-card__quickview {
	z-index: 2;
}

.home-best-sellers__title-link {
	color: inherit;
	text-decoration: none;
}

.home-best-sellers__title-link:hover,
.home-best-sellers__title-link:focus-visible {
	color: var(--primary-color);
}

section.home-best-sellers .home-best-sellers__media img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1.5);
	transform-origin: center center;
	transition: opacity 0.35s ease;
}

.home-best-sellers__img--primary {
	z-index: 0;
}

.home-best-sellers__img--hover {
	z-index: 1;
	opacity: 0;
}

.home-best-sellers__card:hover .home-best-sellers__img--hover {
	opacity: 1;
}

.home-best-sellers__card:hover .home-best-sellers__img--primary {
	opacity: 0;
}

.home-best-sellers__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 8px;
	padding: 14px 16px 16px;
}

.home-best-sellers__name {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
	font-family: var(--font-bold), var(--tw-font-sans);
	font-weight: 700;
	color: var(--tw-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-best-sellers__card:hover .home-best-sellers__name {
	color: var(--primary-color);
}

.home-best-sellers__price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 8px;
	margin: 0;
}

.home-best-sellers__price {
	font-family: var(--font-bold), var(--tw-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.home-best-sellers__old-price {
	font-size: 14px;
	color: var(--tw-muted);
	text-decoration: line-through;
}

.home-best-sellers__unit-price {
	margin: 0;
	font-size: 13px;
	line-height: 1.3;
	color: var(--tw-muted);
}

/* ---------- Real-Life Projects ---------- */
.home-real-life {
	margin: 60px 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}

.home-real-life__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	gap: 16px;
	text-align: center;
}

.home-real-life__title {
	margin: 0;
	font-size: 42px;
	line-height: 1.1;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #111827;
	text-align: center;
}

.home-real-life__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
	height: 560px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.home-real-life__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 0;
	background: #f4f4f4;
	text-decoration: none;
}

.home-real-life__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.home-real-life__item:hover img {
	transform: scale(1.04);
}

.home-real-life__item--featured {
	grid-column: 1 / span 1;
	grid-row: 1 / span 2;
}

/* ---------- Home Google reviews (Trustindex) ---------- */
.home-google-reviews {
	margin: 0;
	padding: 60px 0 70px;
	background: var(--primary-color);
	border-top: 0;
	border-bottom: 0;
}

.home-google-reviews__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 32px;
}

.home-google-reviews__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.home-google-reviews__title {
	margin: 0 0 14px;
	font-size: 42px;
	line-height: 1.1;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #fff;
}

.home-google-reviews__intro {
	margin: 0;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.home-google-reviews__widget {
	max-width: 100%;
	margin: 0 auto;
}

.home-google-reviews__widget .ti-widget,
.home-google-reviews__widget [class*="trustindex"] {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.home-google-reviews {
		padding: 48px 0 56px;
	}

	.home-google-reviews__title {
		font-size: 30px;
	}

	.home-google-reviews__intro {
		font-size: 15px;
	}
}

.home-google-reviews--pdp {
	margin-top: 0;
}

/* ---------- FAQs page ---------- */
.page-faqs {
	background: #f4f4f4;
	padding: 60px 0 80px;
	color: #1f2937;
}

.page-faqs__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 40px;
}

.page-faqs__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 14px;
	background: rgba(58, 79, 106, 0.08);
	color: var(--primary-color);
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--font-medium), var(--tw-font-sans);
}

.page-faqs__title {
	margin: 0 0 14px;
	font-size: 44px;
	line-height: 1.1;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: var(--primary-color);
}

.page-faqs__intro {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
}

.page-faqs__page-content {
	max-width: 820px;
	margin: 0 auto 32px;
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
}

.page-faqs__groups {
	display: flex;
	flex-direction: column;
	gap: 36px;
	max-width: 920px;
	margin: 0 auto;
}

.faq-group {
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	padding: 28px 28px 12px;
}

.faq-group__title {
	margin: 0 0 14px;
	padding-bottom: 14px;
	font-size: 22px;
	line-height: 1.2;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: var(--primary-color);
	border-bottom: 1px solid #e5e7eb;
}

.faq-group__list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid #eef0f3;
}

.faq-item:last-child {
	border-bottom: 0;
}

.faq-item__question {
	list-style: none;
	cursor: pointer;
	padding: 18px 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 16px;
	font-family: var(--font-medium), var(--tw-font-sans);
	color: #111827;
	transition: color 0.2s ease;
}

.faq-item__q-text {
	font-size: 16px;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question:hover {
	color: var(--primary-color);
}

.faq-item__icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(58, 79, 106, 0.08);
	color: var(--primary-color);
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item__icon svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(180deg);
	background: var(--primary-color);
	color: #ffffff;
}

.faq-item__answer {
	padding: 0 4px 18px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.65;
}

.faq-item__answer p {
	margin: 0;
	font-size: 16px;
}

.page-faqs__cta {
	margin: 48px auto 0;
	max-width: 920px;
	background: var(--primary-color);
	color: #ffffff;
	border-radius: 14px;
	padding: 32px 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.page-faqs__cta-text h2 {
	margin: 0 0 6px;
	font-size: 24px;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #ffffff;
}

.page-faqs__cta-text p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 520px;
	line-height: 1.55;
}

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

.page-faqs__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 22px;
	border-radius: 10px;
	font-size: 14px;
	font-family: var(--font-medium), var(--tw-font-sans);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
}

.page-faqs__btn--primary {
	background: #ffffff;
	color: var(--primary-color);
	border-color: #ffffff;
}

.page-faqs__btn--primary:hover {
	background: transparent;
	color: #ffffff;
}

.page-faqs__btn--ghost {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.6);
}

.page-faqs__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
}

.page-faqs--home {
	padding: 50px;
	margin-bottom: 0px;
}

.page-faqs--home .page-faqs__title {
	font-size: 36px;
}

.page-faqs__view-all {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.page-faqs__btn--outline {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.page-faqs__btn--outline:hover {
	background: var(--primary-color);
	color: #ffffff;
}

@media (max-width: 991px) {
	.page-faqs {
		padding: 44px 0 60px;
	}

	.page-faqs__title {
		font-size: 34px;
	}

	.faq-group {
		padding: 22px 20px 8px;
	}

	.page-faqs__cta {
		padding: 28px;
	}
}

@media (max-width: 600px) {
	.page-faqs__title {
		font-size: 28px;
	}

	.page-faqs__intro {
		font-size: 15px;
	}

	.faq-group__title {
		font-size: 19px;
	}

	.faq-item__question {
		font-size: 16px;
		padding: 16px 2px;
	}

	.page-faqs__cta {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.page-faqs__btn {
		width: 100%;
	}
}

/* ---------- Home highlights ---------- */
.home-highlights {
	padding: 40px 0 52px;
	background: #fff;
}

.home-highlights__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.home-highlights__item {
	text-align: center;
	padding: 18px 16px;
	border-radius: 10px;
	background: #f4f4f4;
}

.home-highlights__icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	background: #fff;
}

.home-highlights__icon svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-highlights__item h3 {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.15;
	font-family: var(--font-bold), var(--tw-font-sans);
	color: #111827;
}

.home-highlights__item p {
	margin: 0;
	font-size: 18px;
	line-height: 1.45;
	color: #374151;
}

@media (max-width: 991px) {
    .home-hero,
    .home-hero__track,
    .home-hero__content {
        min-height: 430px;
    }
    .home-hero__content h2 {
        font-size: 36px;
    }
    .home-hero__content p {
        font-size: 18px;
    }
    .shop-categories__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .shop-categories__title {
        font-size: 22px;
    }
    .shop-categories__name {
        font-size: 16px;
    }

	.home-projects__title {
		font-size: 34px;
	}

	.home-projects__name {
		font-size: 16px;
	}

	.home-best-sellers__name {
		font-size: 16px;
	}

	.home-projects__card {
		flex-basis: 50%;
		min-width: 280px;
	}

	.home-projects__viewport {
		padding: 0 14px;
	}

	.home-samples-banner {
		grid-template-columns: 1fr;
		max-height: none;
		overflow: visible;
	}

	.home-samples-banner__media,
	.home-samples-banner__media img {
		max-height: none;
	}

	.home-samples-banner__content {
		padding: 28px 20px;
		max-height: none;
	}

	.home-samples-banner__content h2 {
		font-size: 32px;
	}

	.home-samples-banner__content p {
		font-size: 16px;
	}

	.home-best-sellers__title {
		font-size: 34px;
	}

	.home-best-sellers__card {
		flex-basis: 50%;
		min-width: 280px;
	}

	.home-best-sellers__viewport {
		padding: 0 14px;
	}

	.home-best-sellers__name {
		font-size: 16px;
	}

	.home-highlights__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.home-highlights__item h3 {
		font-size: 22px;
	}

	.home-highlights__item p {
		font-size: 16px;
	}

	.home-real-life__title {
		font-size: 30px;
	}

	.home-real-life__grid {
		height: 460px;
		gap: 10px;
	}
}

@media (max-width: 767px) {
    .home-hero,
    .home-hero__track,
    .home-hero__content {
        min-height: 360px;
    }
    .home-hero__content {
        padding-bottom: 48px;
    }
    .home-hero__content h2 {
        font-size: 30px;
    }
    .home-hero__content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .home-hero__button {
        height: 42px;
        padding: 0 16px;
        font-size: 12px;
    }
    .home-hero__arrow {
        width: 38px;
        height: 38px;
    }
    .home-hero__arrow--prev {
        left: 10px;
    }
    .home-hero__arrow--next {
        right: 10px;
    }
    .shop-categories {
        padding-top: 30px;
    }
    .shop-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .shop-categories__title {
        font-size: 20px;
    }
    .shop-categories__thumb {
        min-height: 118px;
    }
    .shop-categories__thumb img {
        height: 98px;
    }
    .shop-categories__name {
        font-size: 15px;
    }

	.home-projects__viewport {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 12px;
		padding-bottom: 4px;
		padding-left: 12px;
		padding-right: 12px;
	}

	.home-projects__card {
		flex: 0 0 86%;
		min-width: 86%;
		scroll-snap-align: start;
	}

	.home-projects__arrow,
	.home-best-sellers__arrow {
		display: none;
	}

	.home-projects__title {
		font-size: 26px;
	}

	.home-projects__name {
		font-size: 15px;
	}

	.home-best-sellers__name {
		font-size: 15px;
	}

	.home-cta-banner {
		margin-top: 28px;
		margin-bottom: 28px;
	}

	.home-samples-banner {
		margin-top: 12px;
		max-height: none;
		overflow: visible;
	}

	.home-samples-banner__media,
	.home-samples-banner__media img,
	.home-samples-banner__content {
		max-height: none;
	}

	.home-samples-banner__media img {
		min-height: 190px;
	}

	.home-samples-banner__content h2 {
		font-size: 24px;
	}

	.home-samples-banner__content p {
		font-size: 14px;
	}

	.home-samples-banner__button {
		height: 38px;
		font-size: 12px;
	}

	.home-best-sellers__title {
		font-size: 26px;
	}

	.home-best-sellers__viewport {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 12px;
		padding: 0 12px 4px;
	}

	.home-best-sellers__card {
		flex: 0 0 86%;
		min-width: 86%;
		scroll-snap-align: start;
	}

	.home-best-sellers__name {
		font-size: 14px;
	}

	.home-highlights {
		padding-top: 24px;
	}

	.home-highlights__item {
		padding: 14px 10px;
	}

	.home-highlights__icon {
		width: 46px;
		height: 46px;
		margin-bottom: 10px;
	}

	.home-highlights__icon svg {
		width: 22px;
		height: 22px;
	}

	.home-highlights__item h3 {
		font-size: 20px;
	}

	.home-highlights__item p {
		font-size: 14px;
	}

	.home-real-life {
		padding: 28px 0;
	}

	.home-real-life__header {
		margin-bottom: 16px;
	}

	.home-real-life__title {
		font-size: 24px;
	}

	.home-real-life__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px repeat(2, 140px);
		height: auto;
		gap: 8px;
	}

	.home-real-life__item--featured {
		grid-column: 1 / span 2;
		grid-row: 1 / span 1;
	}
}


/* ---------- 7. Content / entries ---------- */

.posts-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    body.no-sidebar .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.entry {
    background: #fff;
    border: 1px solid var(--tw-border);
    border-radius: var(--tw-radius);
    overflow: hidden;
    box-shadow: var(--tw-shadow);
    display: flex;
    flex-direction: column;
}

.entry .post-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.entry-header,
.entry-summary,
.entry-content,
.entry-footer {
    padding: 1.25rem;
}

.entry-header {
    padding-bottom: 0.5rem;
}

.entry-summary {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.entry-title {
    margin: 0 0 0.4rem;
    font-size: 1.4rem;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--tw-accent);
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--tw-muted);
}

.entry-meta a {
    color: inherit;
}

.entry-meta>span+span::before {
    content: " • ";
    margin: 0 0.25em;
}

.entry-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--tw-muted);
    border-top: 1px solid var(--tw-border);
}

.entry-footer .cat-links+.tags-links {
    margin-left: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.read-more:hover {
    gap: 0.6rem;
}


/* Single entry */

.entry--single,
.entry--page {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.entry--single .post-thumbnail img,
.entry--page .post-thumbnail img {
    border-radius: var(--tw-radius);
    margin-bottom: 1.5rem;
}

.entry--single .entry-header,
.entry--page .entry-header,
.entry--single .entry-content,
.entry--page .entry-content,
.entry--single .entry-footer,
.entry--page .entry-footer {
    padding: 0;
}

.entry--single .entry-content,
.entry--page .entry-content {
    margin-top: 1.5rem;
}

.entry--single .entry-content>*+*,
.entry--page .entry-content>*+* {
    margin-top: 1rem;
}

/* Single tile product */

.tile-product-single__header {
    margin-bottom: 1.25rem;
}

.tile-product-single__wrap {
    display: grid;
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .tile-product-single__wrap {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
    }
}

.tile-product-single__media .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--tw-radius);
}

.tile-product-single__placeholder {
    aspect-ratio: 1 / 1;
    border-radius: var(--tw-radius);
    background: var(--tw-hero-media-bg, #e8e8e8);
}

.tile-product-single__price {
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.tile-product-single__specs {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem 1.25rem;
}

.tile-product-single__spec {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: baseline;
    margin: 0;
}

.tile-product-single__spec dt {
    margin: 0;
    font-size: 0.875rem;
    color: var(--tw-muted);
    font-weight: 600;
}

.tile-product-single__spec dd {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--tw-text);
}

.tile-product-single__terms {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--tw-border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tile-product-single__term-row {
    margin: 0 0 0.5rem;
}

.tile-product-single__term-row:last-child {
    margin-bottom: 0;
}

.tile-product-single__term-label {
    font-weight: 600;
    color: var(--tw-text);
    margin-right: 0.35rem;
}

.tile-product-single__term-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.tile-product-single__term-list a:hover,
.tile-product-single__term-list a:focus-visible {
    text-decoration: underline;
}

.tile-product-single__back {
    margin: 1.25rem 0 0;
}

.tile-product-single__back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

.tile-product-single__back-link:hover,
.tile-product-single__back-link:focus-visible {
    text-decoration: underline;
}

.tile-product-single__content {
    margin-top: 0;
}

.tile-spec-tabs {
    margin-top: 2rem;
    border: 1px solid var(--tw-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.tile-product-related {
    margin-top: 2.25rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.tile-product-related .home-projects__title {
    margin-bottom: 1rem;
}

.tile-product-related .home-projects__slider {
    width: 100%;
    margin-left: 0;
}

.tile-product-related .home-projects__viewport {
    padding-left: 0;
    padding-right: 0;
}

.tile-you-may-like {
    background: #f4f4f4;
    padding: 50px 0;
}

.tile-you-may-like .home-best-sellers__title {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 0.04em;
    position: relative;
}

.tile-you-may-like__brand {
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8b95a5;
}

.tile-you-may-like__sqft {
    font-size: 13px;
    color: #6b7280;
}

.tile-you-may-like__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid var(--tw-border);
    font-size: 13px;
    color: #475569;
}

.tile-you-may-like__sample {
    color: var(--primary-color);
    text-decoration: underline;
}

.tile-spec-tabs__head {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--tw-border);
    background: #fbfcff;
}

.tile-spec-tabs__tab {
    border: 0;
    border-right: 1px solid var(--tw-border);
    background: transparent;
    padding: 0.9rem 1.15rem;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--tw-muted);
}

.tile-spec-tabs__tab:last-child {
    border-right: 0;
}

.tile-spec-tabs__tab.is-active {
    color: var(--tw-text);
    background: #fff;
    box-shadow: inset 0 -2px 0 0 var(--primary-color);
}

.tile-spec-tabs__panel {
    padding: 0.35rem 0;
}

.tile-spec-tabs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile-spec-tabs__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    align-items: baseline;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eef2f6;
}

.tile-spec-tabs__label {
    font-size: 16px;
    color: #6a7b92;
}

.tile-spec-tabs__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--tw-text);
    text-align: right;
}

@media (max-width: 680px) {
    .tile-spec-tabs__tab {
        flex: 1 1 auto;
        border-right: 0;
        border-bottom: 1px solid var(--tw-border);
    }

    .tile-spec-tabs__grid {
        grid-template-columns: 1fr;
    }
}

.tile-product-single__breadcrumb {
    margin: 60px 0;
}

.tile-product-single__detail {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--tw-border);
}

.tile-product-single__price--inline {
    margin-top: 0;
}

.tile-product-bc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    color: var(--tw-muted);
}

.tile-product-bc__item {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.tile-product-bc__item:not(:last-child)::after {
    content: '';
    font-size: 0;
}

.tile-product-bc__item + .tile-product-bc__item::before {
    content: '›';
    color: var(--tw-border);
    font-size: 0.75rem;
    margin-right: 0.65rem;
}

.tile-product-bc__link {
    color: var(--tw-muted);
    text-decoration: none;
}

.tile-product-bc__link:hover,
.tile-product-bc__link:focus-visible {
    color: var(--tile-pdp-accent, var(--primary-color));
    text-decoration: underline;
}

.tile-product-bc__current {
    color: var(--tw-muted);
}

/* PDP hero — storefront-style rail (accent matches reference; override with --tile-pdp-accent on :root) */

.tile-product-hero,
.tile-product-pdp {
    --tile-pdp-accent: var(--primary-color);
    --tile-pdp-sticky-top: 1.25rem;
}

.tile-product-pdp {
    display: grid;
    gap: 2rem;
    align-items: start;
    margin-bottom: 0;
}

.tile-product-pdp__rail {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.single-tile-product .site-content,
.single-tile-product .site-main,
.single-tile-product .tile-product-single,
.single-tile-product .tile-product-pdp {
    overflow: visible;
}

@media (min-width: 960px) {
    .tile-product-pdp {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 1fr);
        gap: clamp(2rem, 5vw, 3.75rem);
        --tile-pdp-sticky-top: 8.5rem;
    }

    .tile-product-pdp__media {
        position: -webkit-sticky;
        position: sticky;
        top: var(--tile-pdp-sticky-top);
        align-self: start;
        z-index: 5;
        overflow: visible;
    }
}

.tile-product-hero__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.tile-product-hero__thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    order: 2;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    padding-bottom: 0.15rem;
}

.tile-product-hero__thumb {
    border: 1px solid transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 10rem;
    flex-shrink: 0;
}

.tile-product-hero__thumb:focus-visible {
    outline: 2px solid var(--tile-pdp-accent);
    outline-offset: 2px;
}

.tile-product-hero__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tile-product-hero__thumb.is-active {
    border-color: #dadada;
}

.tile-product-hero__stage {
    order: 1;
    position: relative;
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.tile-product-hero__main {
    position: relative;
}

.tile-product-hero__slide:not(.is-active) {
    display: none !important;
}

.tile-product-hero__slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    background: #fff;
}

.tile-product-hero__nav {
    display: none;
}

.tile-product-hero__visualize {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--tw-border);
    border-radius: 4px;
    background: #fff;
    font-family: var(--tw-font-sans), system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tw-text);
    cursor: pointer;
    text-decoration: none;
}

.tile-product-hero__visualize--muted {
    opacity: 0.65;
    cursor: not-allowed;
}

.tile-product-hero__visualize-icon {
    flex-shrink: 0;
    color: var(--tile-pdp-accent);
}

.tile-product-hero__buy {
    max-width: 34rem;
}

.tile-product-hero__brand {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: var(--tw-text);
}

.tile-product-hero__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.tile-product-hero__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.875rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tile-product-hero__fav {
    border: none;
    background: transparent;
    padding: 0.25rem;
    color: var(--tile-pdp-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.tile-product-hero__fav.is-active svg,
[data-wishlist-toggle].is-active svg {
    fill: var(--tile-pdp-accent, var(--primary-color));
    stroke: var(--tile-pdp-accent, var(--primary-color));
}

.tile-product-hero__size-line {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
}

.tile-product-hero__size-value {
    font-weight: 600;
}

.tile-product-hero__specs-link {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    color: var(--tile-pdp-accent);
}

.tile-product-hero__specs-link:hover,
.tile-product-hero__specs-link:focus-visible {
    color: var(--tile-pdp-accent);
    filter: brightness(0.92);
}

.tile-product-hero__pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.85rem 1.25rem;
    margin-top: 0.4rem;
}

.tile-product-hero__price-sq {
    margin: 0;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.tile-product-hero__price-main {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
}

.tile-product-hero__price-current {
    font-size: inherit;
    font-weight: inherit;
}

.tile-product-hero__price-was {
    font-size: 0.65em;
    font-weight: 600;
    color: var(--tw-muted);
    text-decoration: line-through;
}

.tile-product-hero__price-unit {
    font-size: 0.55em;
    font-weight: 700;
    text-transform: lowercase;
}

.tile-product-hero__price-box {
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 0.9rem;
    font-weight: 700;
}

.tile-product-hero__price-note,
.tile-product-hero__sku {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    color: var(--tw-muted);
}

.tile-product-hero__size-repeat {
    font-size: 1rem;
}

.tile-product-hero__divider {
    margin: 0.85rem 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
}

.tile-product-hero__size-repeat {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
}

.tile-product-hero__props {
    margin: 0.95rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.tile-product-hero__prop {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0;
}

.tile-product-hero__prop dt {
    margin: 0;
    font-size: 16px;
    color: #5f6f86;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tile-product-hero__prop dd {
    margin: 0;
    font-size: 16px;
    color: var(--tw-text);
    font-weight: 600;
}

.tile-product-hero__variant {
    margin-top: 0.85rem;
    border-top: 1px solid #efefef;
    padding-top: 0.7rem;
}

.tile-product-hero__variant-label {
    margin: 0 0 0.4rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--tw-text);
}

.tile-product-hero__variant-current {
    margin-left: 0.35rem;
    font-weight: 700;
}

.tile-product-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tile-product-hero__pill {
    appearance: none;
    border: 2px solid var(--tw-border);
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.tile-product-hero__pill.is-active {
    border-color: var(--tile-pdp-accent);
    box-shadow: 0 0 0 1px var(--tile-pdp-accent);
}

.tile-product-hero__calc {
    margin-top: 0;
    padding: 0.85rem 0.95rem 0.75rem;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
}

.tile-product-hero__calc-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.65rem;
}

.tile-product-hero__calc-prompt {
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
}

.tile-product-hero__calc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--tile-pdp-accent);
    cursor: pointer;
    text-decoration: underline;
}

.tile-product-hero__calc-chevron {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.tile-product-hero__calc-link.is-open .tile-product-hero__calc-chevron {
    transform: rotate(180deg);
}

.tile-product-hero__calc-icon {
    color: var(--tile-pdp-accent);
}

.tile-product-hero__calc-panel {
    margin-top: 0.45rem;
    margin-bottom: 0.65rem;
}

.tile-product-hero__calc-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem 1.25rem;
    align-items: end;
}

.tile-product-hero__calc-field {
    min-width: 0;
}

.tile-product-hero__calc-field--result {
    text-align: right;
}

.tile-product-hero__pieces-result {
    margin: 0;
    min-height: 2.5rem;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--tw-border);
    border-radius: 4px;
    background: #f7f7f7;
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--tw-text);
}

.tile-product-hero__calc-field .tile-product-hero__input {
    max-width: none;
    width: 100%;
}

.tile-product-hero__calc-grid-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.tile-product-hero__field {
    display: block;
}

.tile-product-hero__field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.tile-product-hero__field-label--right {
    text-align: right;
}

.tile-product-hero__input {
    width: 100%;
    max-width: 8.25rem;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--tw-border);
    border-radius: 4px;
    font-size: 1rem;
}

.tile-product-hero__qty-row {
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

.tile-product-hero__qty-main {
    flex: 1 1 12rem;
    min-width: 0;
}

.tile-product-hero__qty-meta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tw-muted);
    text-align: right;
}

.tile-product-hero__qty-meta-price {
    color: var(--tw-text);
    font-weight: 700;
}

.tile-product-hero__stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--tw-border);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.tile-product-hero__stepper button {
    width: 2.5rem;
    border: none;
    background: #f3f3f3;
    font-size: 1.125rem;
    cursor: pointer;
}

.tile-product-hero__stepper button:hover,
.tile-product-hero__stepper button:focus-visible {
    background: #e8e8e8;
}

.tile-product-hero__stepper-inc {
    color: var(--tile-pdp-accent);
    font-weight: 700;
    background: #fff !important;
}

.tile-product-hero__qty {
    width: 3.25rem;
    border: none;
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 600;
}

.tile-product-hero__box-meta {
    margin: 0.55rem 0 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.tile-product-hero__box-meta-sep {
    width: 1px;
    height: 0.85em;
    background: var(--tw-border);
}

.tile-product-hero__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    cursor: pointer;
}

.tile-product-hero__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    border: 1px solid var(--tile-pdp-accent);
    color: var(--tile-pdp-accent);
    font-size: 0.62rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    flex-shrink: 0;
}

.tile-product-hero__info-icon--inline {
    margin-left: 0.2rem;
    vertical-align: middle;
}

.tile-product-hero__subtotal {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.tile-product-hero__subtotal-label {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tile-product-hero__subtotal-value {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
}

.tile-product-hero__financing {
    margin: 0.45rem 0 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--tw-muted);
}

.tile-product-hero__financing a {
    color: #0066c0;
    text-decoration: underline;
}

.tile-product-hero__financing-badge {
    display: inline-block;
    margin-right: 0.35rem;
    padding: 0.05rem 0.35rem;
    border-radius: 3px;
    background: #003087;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

.tile-product-hero__fulfill {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 559px) {
    .tile-product-hero__fulfill {
        grid-template-columns: 1fr;
    }
}

.tile-product-hero__fulfill-card {
    position: relative;
    border: 2px solid var(--tw-border);
    border-radius: 4px;
    padding: 0.65rem 0.6rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.tile-product-hero__fulfill-card.is-selected {
    border-color: var(--tw-text);
}

.tile-product-hero__fulfill-card:focus-visible {
    outline: 2px solid var(--tile-pdp-accent);
    outline-offset: 2px;
}

.tile-product-hero__fulfill-check {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0;
}

.tile-product-hero__fulfill-card.is-selected .tile-product-hero__fulfill-check {
    opacity: 1;
}

.tile-product-hero__fulfill-title {
    margin: 0 0 0.45rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tile-product-hero__fulfill-line {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--tw-text);
}

.tile-product-hero__fulfill-status {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    font-weight: 700;
}

.tile-product-hero__fulfill-status--ok {
    color: #1a7a3a;
}

.tile-product-hero__fulfill-link {
    margin-top: 0.5rem;
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-decoration: underline;
}

.tile-product-hero__actions {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tile-product-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 0.85rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
}

.tile-product-hero__btn--primary.is-added {
    filter: brightness(1.08);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.tile-product-hero__btn--primary {
    background: var(--tile-pdp-accent);
    color: #fff;
    border-color: var(--tile-pdp-accent);
}

.tile-product-hero__btn--primary:hover,
.tile-product-hero__btn--primary:focus-visible {
    filter: brightness(1.05);
}

.tile-product-hero__btn--outline {
    background: #fff;
    color: var(--tw-text);
    border-color: var(--tw-text);
}

.tile-product-hero__fineprint {
    margin: 0;
    font-size: 0.6875rem;
    color: var(--tw-muted);
    text-align: center;
    line-height: 1.4;
}

.tile-product-hero__fineprint a {
    color: var(--tile-pdp-accent);
    text-decoration: underline;
}

.tile-product-hero__secondary {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #efefef;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.tile-product-hero__mini {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    color: var(--tw-text);
}

.tile-product-hero__mini--accent {
    color: var(--tile-pdp-accent);
}

.tile-product-hero__mini--accent svg {
    color: var(--tile-pdp-accent);
}

.tile-product-single__placeholder--hero {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
}

/* Cart drawer */

body.tilewala-cart-open {
    overflow: hidden;
}

.tilewala-cart {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    justify-content: flex-end;
    pointer-events: none;
}

.tilewala-cart[hidden] {
    display: none !important;
}

.tilewala-cart.is-open {
    display: flex;
    pointer-events: auto;
}

.tilewala-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tilewala-cart.is-open .tilewala-cart__backdrop {
    opacity: 1;
    visibility: visible;
}

.tilewala-cart__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 24rem);
    max-width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.tilewala-cart.is-open .tilewala-cart__panel {
    transform: translateX(0);
}

.tilewala-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #e5e5e5;
}

.tilewala-cart__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tilewala-cart__close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}

.tilewala-cart__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.1rem;
}

.tilewala-cart__empty {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--tw-muted);
}

.tilewala-cart__empty[hidden] {
    display: none !important;
}

.tilewala-cart__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.tilewala-cart__item {
    display: grid;
    grid-template-columns: 3.5rem 1fr auto;
    gap: 0.65rem;
    align-items: start;
}

.tilewala-cart__item-media img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.tilewala-cart__item-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tw-text);
    text-decoration: none;
    line-height: 1.3;
}

.tilewala-cart__item-meta {
    margin: 0.2rem 0 0.45rem;
    font-size: 0.8125rem;
    color: var(--tw-muted);
}

.tilewala-cart__item-qty {
    display: inline-flex;
    border: 1px solid var(--tw-border);
    border-radius: 4px;
    overflow: hidden;
}

.tilewala-cart__item-qty button {
    width: 1.75rem;
    border: none;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 1rem;
}

.tilewala-cart__item-qty input {
    width: 2.5rem;
    padding: 0;
    border: none;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}

.tilewala-cart__item-qty input::-webkit-outer-spin-button,
.tilewala-cart__item-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tilewala-cart__item-side {
    text-align: right;
}

.tilewala-cart__item-total {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
}

.tilewala-cart__remove {
    margin-top: 0.35rem;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.75rem;
    color: var(--tile-pdp-accent, var(--primary-color));
    text-decoration: underline;
    cursor: pointer;
}

.tilewala-cart__foot {
    padding: 1rem 1.1rem 1.25rem;
    border-top: 1px solid #e5e5e5;
}

.tilewala-cart__total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.tilewala-cart__total-row strong {
    font-size: 1.25rem;
}

.tilewala-cart__view-cart {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--tile-pdp-accent, var(--primary-color));
    text-decoration: underline;
}

/* Cart page */

.cart-page.entry,
article.cart-page {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: block;
}

.site-content--cart {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.cart-page__header {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.cart-page__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tw-text);
}

.cart-page__count {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--tw-muted);
}

.cart-page__empty {
    text-align: center;
    padding: 4rem 1.5rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.cart-page__empty[hidden],
.cart-page__content[hidden] {
    display: none !important;
}

.cart-page__empty p {
    margin: 0 0 1.5rem;
    font-size: 1.125rem;
    color: var(--tw-muted);
}

.cart-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.cart-page__btn--primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.cart-page__btn--primary:hover,
.cart-page__btn--primary:focus-visible {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}

.cart-page__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .cart-page__layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 24rem);
        gap: 2.5rem;
    }
}

.cart-page__items-wrap {
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.cart-page__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.cart-page__item {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr) auto;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--tw-border);
    background: #fff;
}

.cart-page__item:last-child {
    border-bottom: 0;
}

@media (max-width: 599px) {
    .cart-page__item {
        grid-template-columns: 5rem minmax(0, 1fr);
        align-items: start;
        padding: 1.1rem 1rem;
    }

    .cart-page__item .tilewala-cart__item-side {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 0.5rem;
    }
}

.cart-page__item .tilewala-cart__item-media a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--tw-border);
}

.cart-page__item .tilewala-cart__item-media img {
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    object-fit: cover;
}

.cart-page__item .tilewala-cart__item-body {
    min-width: 0;
}

.cart-page__item .tilewala-cart__item-title {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--tw-text);
    text-decoration: none;
}

.cart-page__item .tilewala-cart__item-title:hover,
.cart-page__item .tilewala-cart__item-title:focus-visible {
    color: var(--primary-color);
}

.cart-page__item .tilewala-cart__item-meta {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tw-text);
}

.cart-page__item .tilewala-cart__item-unit {
    font-weight: 500;
    color: var(--tw-muted);
    text-transform: lowercase;
}

.cart-page__item .tilewala-cart__item-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--tw-border);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.cart-page__item .tilewala-cart__item-qty button {
    width: 2.5rem;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--tw-text);
    cursor: pointer;
    transition: color 0.15s ease;
}

.cart-page__item .tilewala-cart__item-qty button:hover,
.cart-page__item .tilewala-cart__item-qty button:focus-visible {
    background: transparent;
    color: var(--primary-color);
}

.cart-page__item .tilewala-cart__item-qty input {
    width: 3rem;
    padding: 0;
    border: none;
    border-left: 1px solid var(--tw-border);
    border-right: 1px solid var(--tw-border);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-page__item .tilewala-cart__item-qty input::-webkit-outer-spin-button,
.cart-page__item .tilewala-cart__item-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-page__item .tilewala-cart__item-side {
    text-align: right;
    min-width: 5.5rem;
}

.cart-page__item .tilewala-cart__item-total {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tw-text);
}

.cart-page__item .tilewala-cart__remove {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-page__summary {
    padding: 1.5rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

@media (min-width: 900px) {
    .cart-page__summary {
        position: sticky;
        top: 8.5rem;
    }
}

.cart-page__summary-title {
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tw-border);
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tw-text);
}

.cart-page__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--tw-text);
}

.cart-page__summary-row strong {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--tw-text);
}

.cart-page__summary-note {
    margin: 0 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--tw-muted);
    line-height: 1.5;
}

.cart-page a.cart-page__checkout-btn,
.tilewala-cart__foot a.cart-page__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3.25rem;
    margin-bottom: 0.85rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 35%, transparent);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.cart-page a.cart-page__checkout-btn:hover,
.cart-page a.cart-page__checkout-btn:focus-visible,
.tilewala-cart__foot a.cart-page__checkout-btn:hover,
.tilewala-cart__foot a.cart-page__checkout-btn:focus-visible {
    background-color: color-mix(in srgb, var(--primary-color) 88%, #000 12%);
    border-color: color-mix(in srgb, var(--primary-color) 88%, #000 12%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color) 40%, transparent);
    transform: translateY(-1px);
}

.cart-page a.cart-page__checkout-btn:active,
.tilewala-cart__foot a.cart-page__checkout-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.cart-page__checkout-btn-icon {
    flex-shrink: 0;
}

.cart-page__continue {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tw-text);
    text-decoration: underline;
}

.cart-page__continue:hover,
.cart-page__continue:focus-visible {
    color: var(--primary-color);
}

.cart-page__clear {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.cart-page__clear:hover,
.cart-page__clear:focus-visible {
    filter: brightness(0.9);
}


/* ---------- Wishlist page ---------- */

.wishlist-page.entry {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.site-content--wishlist {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.wishlist-page__header {
    margin-bottom: 2rem;
}

.wishlist-page__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tw-text);
}

.wishlist-page__count {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
}

.wishlist-page__count:empty {
    display: none;
}

.wishlist-page__lead {
    margin: 0;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--tw-muted);
}

.wishlist-page__empty {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.wishlist-page__empty[hidden],
.wishlist-page__content[hidden] {
    display: none !important;
}

.wishlist-page__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    color: var(--primary-color);
}

.wishlist-page__empty p {
    margin: 0 0 1.5rem;
    font-size: 1.0625rem;
    color: var(--tw-muted);
}

.wishlist-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.wishlist-page__btn:hover,
.wishlist-page__btn:focus-visible {
    color: #fff;
    filter: brightness(1.06);
}

.wishlist-page__grid {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.35rem;
}

.wishlist-page__card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wishlist-page__card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.wishlist-page__card-media {
    position: relative;
    aspect-ratio: 1;
    background: var(--tw-bg-alt, #f4f5f7);
}

.wishlist-page__card-media a {
    display: block;
    height: 100%;
}

.wishlist-page__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-page__card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--tw-bg-alt);
}

.wishlist-page__card-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--tw-text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.15s ease, color 0.15s ease;
}

.wishlist-page__card-remove:hover,
.wishlist-page__card-remove:focus-visible {
    background: #fff;
    color: #b42318;
}

.wishlist-page__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
    padding: 1.1rem 1.15rem 1.2rem;
}

.wishlist-page__card-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--tw-text);
    text-decoration: none;
}

.wishlist-page__card-title:hover,
.wishlist-page__card-title:focus-visible {
    color: var(--primary-color);
}

.wishlist-page__card-price {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tw-muted);
}

.wishlist-page__card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.wishlist-page__card-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}

.wishlist-page__card-cart {
    padding: 0.5rem 0.85rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.15s ease;
}

.wishlist-page__card-cart:hover,
.wishlist-page__card-cart:focus-visible {
    filter: brightness(1.08);
}

.wishlist-page__footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
}

.wishlist-page__continue {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tw-text);
    text-decoration: underline;
}

.wishlist-page__continue:hover,
.wishlist-page__continue:focus-visible {
    color: var(--primary-color);
}

.wishlist-page__clear {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.tile-catalog-card__wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    color: var(--tw-text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tile-catalog-card__wishlist-icon {
    display: block;
    pointer-events: none;
}

.tile-catalog-card__wishlist:hover,
.tile-catalog-card__wishlist:focus-visible {
    transform: scale(1.06);
    border-color: var(--primary-color);
    outline: none;
}

.tile-catalog-card__wishlist.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.tile-catalog-card__wishlist.is-active .tile-catalog-card__wishlist-icon path {
    fill: #fff;
    stroke: #fff;
}


/* ---------- Checkout page ---------- */

.checkout-page.entry {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.site-content--checkout {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.checkout-page__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-bottom: 2.25rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.checkout-page__intro {
    flex: 1 1 16rem;
    min-width: 0;
}

.checkout-page__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tw-text);
}

.checkout-page__lead {
    margin: 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--tw-muted);
}

.checkout-page__stepper {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.checkout-page__step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--tw-muted);
}

a.checkout-page__step:hover,
a.checkout-page__step:focus-visible {
    color: var(--primary-color);
}

.checkout-page__step--current {
    color: var(--tw-text);
}

.checkout-page__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--tw-border);
    color: var(--tw-muted);
}

.checkout-page__step--done .checkout-page__step-num {
    background: color-mix(in srgb, var(--primary-color) 15%, #fff);
    color: var(--primary-color);
}

.checkout-page__step--current .checkout-page__step-num {
    background: var(--primary-color);
    color: #fff;
}

.checkout-page__step-divider {
    width: 2rem;
    height: 1px;
    background: var(--tw-border);
    margin: 0 0.15rem;
}

.checkout-page__empty,
.checkout-page__success {
    text-align: center;
    padding: 3.5rem 2rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.checkout-page__empty[hidden],
.checkout-page__content[hidden],
.checkout-page__success[hidden] {
    display: none !important;
}

.checkout-page__success-card {
    max-width: 32rem;
    margin: 0 auto;
}

.checkout-page__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.checkout-page__success-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-page__success-text,
.checkout-page__success-note {
    margin: 0 0 1rem;
    color: var(--tw-muted);
    line-height: 1.55;
}

.checkout-page__success-order {
    margin: 0 0 1.25rem;
    font-size: 1rem;
}

.checkout-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.checkout-page__btn:hover,
.checkout-page__btn:focus-visible {
    color: #fff;
    filter: brightness(1.06);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 35%, transparent);
}

.checkout-page__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .checkout-page__layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 26rem);
        gap: 2.75rem;
    }
}

.checkout-page__form-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-panel {
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.65rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
}

.checkout-panel--payment {
    background: color-mix(in srgb, var(--primary-color) 4%, #fff);
    border-color: color-mix(in srgb, var(--primary-color) 18%, var(--tw-border));
}

.checkout-panel__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tw-border);
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tw-text);
}

.checkout-panel__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
}

.checkout-panel__step--muted {
    background: var(--tw-border);
    color: var(--tw-muted);
}

.checkout-panel__optional {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tw-muted);
}

.checkout-panel__note {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--tw-muted);
}

.checkout-payment-info {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.checkout-payment-info__icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--primary-color);
}

.checkout-panel__grid {
    display: grid;
    gap: 1rem 1.15rem;
}

.checkout-panel__grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .checkout-panel__grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-field {
    margin: 0;
}

.checkout-field--full {
    grid-column: 1 / -1;
}

.checkout-page .checkout-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--tw-text);
}

.checkout-field .required {
    color: #b42318;
    font-weight: 700;
}

.checkout-page .checkout-field input,
.checkout-page .checkout-field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--tw-border);
    border-radius: 6px;
    background: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--tw-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-page .checkout-field input:hover,
.checkout-page .checkout-field textarea:hover {
    border-color: color-mix(in srgb, var(--primary-color) 35%, var(--tw-border));
}

.checkout-page .checkout-field input:focus,
.checkout-page .checkout-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 16%, transparent);
}

.checkout-page .checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.checkout-fulfill {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 600px) {
    .checkout-fulfill {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-fulfill__option {
    display: block;
    cursor: pointer;
}

.checkout-fulfill__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-fulfill__card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: 1.1rem 1.15rem;
    border: 2px solid var(--tw-border);
    border-radius: 10px;
    background: #fafbfc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkout-fulfill__option:hover .checkout-fulfill__card {
    border-color: color-mix(in srgb, var(--primary-color) 40%, var(--tw-border));
    background: #fff;
}

.checkout-fulfill__radio {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.15rem;
    border: 2px solid var(--tw-border);
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-fulfill__option input:checked + .checkout-fulfill__card {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.checkout-fulfill__option input:checked + .checkout-fulfill__card .checkout-fulfill__radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 3px #fff;
}

.checkout-fulfill__option input:focus-visible + .checkout-fulfill__card {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.checkout-fulfill__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.checkout-fulfill__text strong {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--tw-text);
}

.checkout-fulfill__text > span {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--tw-muted);
}

.checkout-page__error {
    margin: 0.5rem 0 0;
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #f5c2c0;
    background: #fdf3f2;
    color: #922b21;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-page__error[hidden] {
    display: none !important;
}

.checkout-page__summary {
    padding: 1.5rem 1.65rem;
    border: 1px solid var(--tw-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--tw-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
}

@media (min-width: 1024px) {
    .checkout-page__summary {
        position: sticky;
        top: 8.5rem;
    }
}

.checkout-page__summary-title {
    margin: 0 0 0.35rem;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tw-text);
}

.checkout-page__summary-count {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tw-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tw-muted);
}

.checkout-page__summary-count:empty {
    display: none;
}

.checkout-page__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 18rem;
    overflow-y: auto;
    scrollbar-width: thin;
}

.checkout-page__item {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr) auto;
    gap: 0.85rem 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--tw-border);
}

.checkout-page__item:first-child {
    padding-top: 0;
}

.checkout-page__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.checkout-page__item-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--tw-border);
    background: #f4f5f7;
}

.checkout-page__item-thumb--empty {
    display: block;
    width: 4.25rem;
    height: 4.25rem;
}

.checkout-page__item-thumb img {
    display: block;
    width: 4.25rem;
    height: 4.25rem;
    object-fit: cover;
}

.checkout-page__item-badge {
    display: inline-block;
    margin-bottom: 0.25rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.checkout-page__item-title {
    display: block;
    margin: 0 0 0.25rem;
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--tw-text);
    text-decoration: none;
}

.checkout-page__item-title:hover,
.checkout-page__item-title:focus-visible {
    color: var(--primary-color);
}

.checkout-page__item-meta {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tw-muted);
}

.checkout-page__item-unit {
    font-weight: 500;
    text-transform: lowercase;
}

.checkout-page__item-side {
    text-align: right;
}

.checkout-page__item-total {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--tw-text);
    white-space: nowrap;
}

.checkout-page__totals {
    margin-bottom: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--tw-border);
}

.checkout-page__total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tw-text);
}

.checkout-page__total-row span {
    color: var(--tw-muted);
    font-weight: 600;
}

.checkout-page__total-row strong {
    font-weight: 800;
    color: var(--tw-text);
}

.checkout-page__total-row--grand {
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--tw-border);
}

.checkout-page__total-row--grand span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--tw-text);
}

.checkout-page__total-row--grand strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tw-text);
}

.checkout-page a.checkout-page__submit,
.checkout-page button.checkout-page__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3.25rem;
    margin-bottom: 0.9rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 35%, transparent);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.checkout-page a.checkout-page__submit:hover,
.checkout-page a.checkout-page__submit:focus-visible,
.checkout-page button.checkout-page__submit:hover,
.checkout-page button.checkout-page__submit:focus-visible {
    background-color: color-mix(in srgb, var(--primary-color) 88%, #000 12%);
    border-color: color-mix(in srgb, var(--primary-color) 88%, #000 12%);
    color: #fff;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color) 40%, transparent);
    transform: translateY(-1px);
}

.checkout-page__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-page__back-cart {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tw-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.checkout-page__back-cart:hover,
.checkout-page__back-cart:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .checkout-page__header {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-page__stepper {
        justify-content: flex-start;
    }

    .checkout-panel {
        padding: 1.2rem 1.15rem;
    }
}


/* Page header (archive titles, search, etc.) */

.page-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tw-border);
}

.page-title {
    margin: 0;
}

/* Tile category archive — hero (theme strip / card colors from :root) */

.tile-category-hero {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: var(--tw-hero-strip-bg);
    padding: 30px 0;
}

.tile-category-hero__wrap {
    width: 100%;
}

.tile-category-hero__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--tw-shadow-md);
    background: var(--tw-hero-card-bg);
    width: 100%;
    min-height: 260px;
}

.tile-category-hero--no-image .tile-category-hero__inner {
    min-height: 0;
}

.tile-category-hero__copy {
    flex: 1 1 45%;
    order: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--tw-hero-card-bg);
    font-family: var(--font-regular), var(--tw-font-sans);
    text-align: left;
}

.tile-category-hero__title {
    font-family: var(--font-bold);
    font-size: 32px;
    font-weight: normal;
    color: var(--primary-color);
    margin: 0 0 16px;
    line-height: 38px;
    letter-spacing: -1px;
}

.tile-category-hero__description {
    margin: 0;
    max-width: 608px;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    color: var(--tw-muted);
    line-height: 23px;
}

.tile-category-hero__description p {
    margin: 0 0 14px;
}

.tile-category-hero__description p:last-child {
    margin: 0;
}

.tile-category-hero__media {
    flex: 1 1 55%;
    order: 2;
    position: relative;
    background: var(--tw-hero-media-bg);
    aspect-ratio: 16 / 10;
}

.tile-category-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 720px) {

    .tile-category-hero__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        min-height: 340px;
    }

    .tile-category-hero__title {
        font-size: 42px;
        line-height: 50px;
        margin: 0 0 18px;
    }

    .tile-category-hero__copy {
        flex: 0 1 45%;
        max-width: 48%;
        padding: 52px 48px;
    }

    .tile-category-hero__description {
        font-size: 15px;
        line-height: 25px;
    }

    .tile-category-hero__media {
        flex: 1 1 55%;
        min-height: 0;
        min-width: 0;
        aspect-ratio: auto;
        align-self: stretch;
    }

    .tile-category-hero__media img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.tile-category-hero--no-image .tile-category-hero__copy {
    max-width: none;
}

.tile-category-hero--no-image .tile-category-hero__inner {
    box-shadow: var(--tw-shadow-md);
}

/* Tile category — Shop by Use (grid cards, Unsplash imagery) */

.tile-shop-by-use {
    margin: 0;
    padding: 36px 24px 12px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tile-shop-by-use__heading {
    font-family: var(--font-bold);
    font-size: 32px;
    font-weight: normal;
    color: var(--primary-color);
    margin: 0 0 24px;
    line-height: 40px;
    text-align: left;
}

.tile-shop-by-use__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.tile-shop-by-use__card {
    margin: 0;
    padding: 0;
    background: transparent;
    min-width: 0;
    list-style: none;
}

.tile-shop-by-use__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
}

.tile-shop-by-use__card-link:hover .tile-shop-by-use__card-title,
.tile-shop-by-use__card-link:focus-visible .tile-shop-by-use__card-title {
    color: var(--primary-color);
}

.tile-shop-by-use__card-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.tile-shop-by-use__media {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 3 / 4;
    background: var(--tw-hero-media-bg);
}

.tile-shop-by-use__media img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tile-shop-by-use__body {
    margin: 0;
    padding: 24px 22px;
    background: var(--tw-shop-by-use-caption-bg);
    border-radius: 0 0 10px 10px;
    flex: 1 1 auto;
}

.tile-shop-by-use__card-title {
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 18px;
    font-weight: normal;
    color: var(--tw-text);
    margin: 0 0 8px;
    line-height: 24px;
}

.tile-shop-by-use__tagline {
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    font-weight: normal;
    color: var(--tw-muted);
    margin: 0;
    padding: 0;
    line-height: 22px;
}

@media (min-width: 600px) {
    .tile-shop-by-use__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .tile-shop-by-use {
        padding-left: 80px;
        padding-right: 80px;
    }

    .tile-shop-by-use__heading {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (min-width: 960px) {
    .tile-shop-by-use__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    .tile-shop-by-use__body {
        padding: 26px 24px;
    }
}

/* Tile category — product catalog (toolbar, filter sidebar, grid — no favorites UI) */

.tile-catalog {
    --catalog-sidebar-sticky-top: 164px; /* Approx. clearance below sticky .site-header; increase if facets sit under nav */
    --catalog-toolbar-sticky-h: 104px; /* Band below header reserved when toolbar wraps (mobile / narrow) */
    margin: 0;
    padding: 0 24px 48px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tile-catalog__search {
    margin: 0 0 20px;
}

.tile-catalog__search-label {
    display: block;
    margin: 0 0 8px;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 13px;
    font-weight: normal;
    line-height: 17px;
    color: var(--tw-text);
}

.tile-catalog__search-input {
    display: block;
    margin: 0;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--tw-border);
    border-radius: 6px;
    background: var(--tw-bg);
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
}

.tile-catalog__search-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 1px;
}

.tile-catalog__reset-filters {
    display: block;
    margin: 16px 0 0;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--tw-border);
    border-radius: 6px;
    background: var(--tw-bg);
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
    cursor: pointer;
}

.tile-catalog__reset-filters:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tile-catalog__empty:not([hidden]) {
    display: block;
    margin: 24px 0 0;
    text-align: center;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 15px;
    line-height: 23px;
    color: var(--tw-muted);
}

.tile-catalog__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 60px 0 24px;
    padding: 10px 0 16px;
    border-bottom: 1px solid var(--tw-border);
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + var(--catalog-sidebar-sticky-top));
    z-index: 95;
    background: var(--tw-bg);
    box-sizing: border-box;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    isolation: isolate;
}

.tile-catalog__toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
    color: var(--tw-text);
}

.tile-catalog__filters-icon {
    color: var(--tw-muted);
}

.tile-catalog__sort-form {
    margin: 0;
}

.tile-catalog__sort-field {
    margin: 0;
    flex-shrink: 0;
    margin-inline-start: auto;
    min-width: 0;
    max-width: 100%;
}

.tile-catalog__sort-label {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    min-width: 0;
    max-width: 100%;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
}

.tile-catalog__sort-text {
    flex-shrink: 0;
    white-space: nowrap;
}

.tile-catalog__sort-select {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 8px 36px 8px 12px;
    border: 1px solid var(--tw-border);
    border-radius: 6px;
    background: var(--tw-bg);
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
    cursor: pointer;
}

.tile-catalog__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    min-width: 0;
}

.tile-catalog__sidebar {
    margin: 0;
    padding: 0;
    min-width: 0;
    /* Thin black scrollbar (filter column when it overflows) — Firefox uses scrollbar-* */
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
}

.tile-catalog__sidebar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.tile-catalog__sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.tile-catalog__sidebar::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 999px;
}

.tile-catalog__sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #1a1a1a;
}

.tile-catalog__sidebar::-webkit-scrollbar-thumb:active {
    background-color: #000000;
}

.tile-catalog__sidebar::-webkit-scrollbar-corner {
    background: transparent;
}

.tile-catalog__sidebar::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

@media (min-width: 992px) {
    .tile-catalog {
        /* Must match approximate sticky toolbar band (padding + row + border); keeps filter column below sort bar */
        --catalog-toolbar-sticky-h: 72px;
    }

    .tile-catalog__toolbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .tile-catalog__layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 40px;
    }

    .tile-catalog__sidebar {
        position: sticky;
        top: calc(env(safe-area-inset-top, 0px) + var(--catalog-sidebar-sticky-top) + var(--catalog-toolbar-sticky-h));
        align-self: start;
        max-height: calc(100svh - env(safe-area-inset-top, 0px) - var(--catalog-sidebar-sticky-top) - var(--catalog-toolbar-sticky-h) - 24px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 90;
        padding-right: 4px;
        scrollbar-gutter: stable;
    }
}

.tile-catalog__facet {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--tw-border);
}

.tile-catalog__facet summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
    color: var(--tw-text);
}

.tile-catalog__facet summary::-webkit-details-marker {
    display: none;
}

.tile-catalog__facet summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 4px;
    flex-shrink: 0;
    opacity: 0.55;
}

.tile-catalog__facet[open] summary::after {
    transform: rotate(-135deg);
}

.tile-catalog__facet-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 16px;
}

.tile-catalog__facet-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
    cursor: pointer;
}

.tile-catalog__facet-opt-label {
    font-family: var(--font-medium), var(--font-regular), var(--tw-font-sans);
    font-weight: 500;
}

.tile-catalog__facet-opt input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--primary-color);
}

.tile-catalog-card[hidden] {
    display: none !important;
}

.tile-catalog__products {
    margin: 0;
    padding: 0;
    min-width: 0;
}

.tile-catalog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0;
    padding: 0;
    min-width: 0;
    list-style: none;
}

@media (min-width: 600px) {
    .tile-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .tile-catalog__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tile-catalog-card {
    margin: 0;
    padding: 0;
    background: var(--tw-bg);
    border: 1px solid var(--tw-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--tw-shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tile-catalog-card__thumb-wrap {
    position: relative;
    margin: 0;
    padding: 0;
    background: var(--tw-bg-alt);
}

.tile-catalog-card__quickview {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    color: var(--tw-text);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.tile-catalog-card__quickview-icon {
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}

.tile-catalog-card__quickview:hover,
.tile-catalog-card__quickview:focus-visible {
    transform: scale(1.06);
    background: var(--primary-color);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-color) 35%, transparent);
    border-color: var(--primary-color);
    color: #ffffff;
    outline: none;
}

.tile-catalog-card__thumb {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.tile-catalog-card__thumb--demo {
    cursor: default;
}

.tile-catalog-card__thumb img.tile-catalog-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: none;
    object-position: center;
    display: block;
    transition: opacity 0.35s ease;
}

.tile-catalog-card__img--primary {
    z-index: 0;
}

.tile-catalog-card__img--hover {
    z-index: 1;
    opacity: 0;
}

.tile-catalog-card:hover .tile-catalog-card__img--hover {
    opacity: 1;
}

.tile-catalog-card:hover .tile-catalog-card__img--primary {
    opacity: 0;
}

.tile-catalog-card__thumb:not(.tile-catalog-card__thumb--has-hover) img.tile-catalog-card__img--primary {
    opacity: 1;
}

.tile-catalog-card__thumb img:not(.tile-catalog-card__img) {
    width: 100%;
    height: 100%;
    object-fit: none;
    display: block;
}

.tile-catalog-card__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--tw-hero-media-bg);
}

.tile-catalog-card__body {
    margin: 0;
    padding: 16px 14px 18px;
}

.tile-catalog-card__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    font-family: var(--font-medium), var(--font-regular), var(--tw-font-sans);
    color: var(--tw-text);
}

.tile-catalog-card__title a {
    color: inherit;
    text-decoration: none;
}

.tile-catalog-card__title a:hover {
    color: var(--primary-color);
}

.tile-catalog-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    margin: 0;
    font-size: 14px;
    line-height: 21px;
}

.tile-catalog-card__price-current {
    font-family: var(--font-bold), var(--tw-font-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.tile-catalog-card__price-was {
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--tw-muted);
    text-decoration: line-through;
}

/* Tile catalog — product quick-view modal */
.tile-catalog-modal {
    position: fixed;
    inset: 0;
    margin: auto;
    padding: 0;
    width: min(920px, calc(100vw - 32px));
    max-height: min(640px, calc(100vh - 32px));
    overflow: hidden;
    border: none;
    border-radius: 18px;
    background: var(--tw-bg);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
    color: var(--tw-text);
}

.tile-catalog-modal::backdrop {
    background: rgba(22, 33, 62, 0.48);
    backdrop-filter: blur(5px);
}

.tile-catalog-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--tw-border);
    border-radius: 50%;
    background: var(--tw-bg);
    color: var(--tw-text);
    cursor: pointer;
    box-shadow: var(--tw-shadow);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tile-catalog-modal__close-icon {
    font-size: 26px;
    line-height: 1;
    margin-top: -2px;
}

.tile-catalog-modal__close:hover,
.tile-catalog-modal__close:focus-visible {
    color: var(--primary-color);
    border-color: var(--primary-color);
    outline: none;
}

.tile-catalog-modal__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 0;
}

@media (min-width: 680px) {
    .tile-catalog-modal__inner {
        grid-template-columns: 1.06fr 1fr;
        min-height: 340px;
        max-height: min(640px, calc(100vh - 32px));
    }
}

.tile-catalog-modal__media {
    position: relative;
    min-height: 220px;
    background: var(--tw-bg-alt);
    overflow: hidden;
}

.tile-catalog-modal__media--empty {
    background-color: var(--tw-bg-alt);
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%),
        linear-gradient(225deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%);
    background-size: 22px 22px;
}

.tile-catalog-modal__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.tile-catalog-modal__img[hidden] {
    display: none;
}

.tile-catalog-modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 44px 28px 22px;
}

@media (min-width: 680px) {
    .tile-catalog-modal__content {
        padding: 34px 44px 34px 26px;
        max-height: min(640px, calc(100vh - 32px));
        overflow-y: auto;
    }

    .tile-catalog-modal__media {
        min-height: 0;
    }

    .tile-catalog-modal__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
    }
}

.tile-catalog-modal__eyebrow {
    margin: 0;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 11px;
    line-height: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.tile-catalog-modal__title {
    margin: 10px 0 0;
    font-family: var(--font-medium), var(--font-regular), var(--tw-font-sans);
    font-size: 21px;
    line-height: 28px;
    font-weight: normal;
    color: var(--tw-text);
}

.tile-catalog-modal__price {
    margin: 10px 0 0;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--tw-muted);
}

.tile-catalog-modal__specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
}

@media (min-width: 460px) {
    .tile-catalog-modal__specs {
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
    }
}

.tile-catalog-modal__spec {
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--tw-bg-alt);
    border: 1px solid var(--tw-border);
}

.tile-catalog-modal__spec-label {
    display: block;
    font-family: var(--font-bold), var(--font-heavy), var(--tw-font-sans);
    font-size: 11px;
    line-height: 15px;
    font-weight: normal;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--tw-muted);
}

.tile-catalog-modal__spec-value {
    display: block;
    margin-top: 5px;
    font-family: var(--font-medium), var(--font-regular), var(--tw-font-sans);
    font-size: 14px;
    line-height: 21px;
    color: var(--tw-text);
}

@media (prefers-reduced-motion: reduce) {
    .tile-catalog-card__quickview {
        transition: none;
    }

    .tile-catalog-card__thumb img.tile-catalog-card__img {
        transition: none;
    }

    .tile-catalog-modal__close {
        transition: none;
    }
}

.tile-catalog .pagination {
    margin-top: 32px;
    margin-bottom: 0;
}

.tile-catalog .pagination .nav-links {
    gap: 8px;
}

.tile-catalog .pagination .page-numbers {
    padding: 0 12px;
    font-size: 14px;
    line-height: 21px;
}

@media (min-width: 768px) {
    .tile-catalog {
        padding-left: 80px;
        padding-right: 80px;
    }
}


/* Pagination */

.pagination,
.posts-navigation,
.post-navigation {
    margin-top: 2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--tw-border);
    border-radius: var(--tw-radius);
    color: var(--tw-text);
    text-decoration: none;
    font-weight: 600;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--tw-accent);
    color: #fff;
    border-color: var(--tw-accent);
    text-decoration: none;
}


/* ---------- 8. Sidebar & widgets ---------- */

.widget-area .widget,
.site-footer .widget {
    margin-bottom: 2rem;
}

.widget-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--tw-border);
}

.widget ul li:last-child {
    border-bottom: 0;
}


/* ---------- 9. Comments ---------- */

.comments-area {
    margin-top: 3rem;
}

.comments-title {
    margin-bottom: 1rem;
}

.comment-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.comment-body {
    padding: 1rem;
    border: 1px solid var(--tw-border);
    border-radius: var(--tw-radius);
    margin-bottom: 1rem;
    background: var(--tw-bg-alt);
}

.comment-list .children {
    list-style: none;
    margin-left: 1.25rem;
    padding-left: 0;
}

.comment-meta {
    margin-bottom: 0.5rem;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}


/* ---------- 10. Forms ---------- */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--tw-border);
    border-radius: var(--tw-radius);
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--tw-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

textarea {
    min-height: 140px;
}

button,
.button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    padding: 0.7rem 1.25rem;
    background: var(--tw-accent);
    color: #fff;
    border: 0;
    border-radius: var(--tw-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: var(--tw-accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}


/* Search form */

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form .search-field {
    flex: 1 1 auto;
}


/* ---------- 11. Footer ---------- */

.site-footer {
    background: var(--primary-color);
    color: #e8ecf2;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer a {
    color: #e8ecf2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer__inner {
    padding: 56px 16px 24px;
}

.site-footer li {
    font-size: 14px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr) 0.9fr;
    gap: 36px;
    align-items: start;
    padding-bottom: 36px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 6px;
}

.site-footer__logo .custom-logo-link,
.site-footer__logo a {
    display: inline-block;
    line-height: 0;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
    max-width: 200px;
    height: auto;
    width: auto;
    display: block;
}

.site-footer__brand-name {
    display: inline-block;
    font-size: 26px;
    letter-spacing: 0.05em;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: #ffffff;
}

.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #e8ecf2;
}

.site-footer__contact a {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer__newsletter {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 8px;
    max-width: 480px;
    width: 100%;
}

.site-footer__newsletter input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 14px;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__newsletter input[type="email"]:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.site-footer__newsletter-btn {
    flex: 0 0 auto;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-medium), var(--tw-font-sans);
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-footer__newsletter-btn:hover {
    background: transparent;
    color: #ffffff;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__col-title {
    margin: 0;
    font-size: 15px;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.02em;
}

.site-footer__links,
.site-footer__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a {
    color: #e8ecf2;
}

.site-footer__socials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__social {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__social:hover {
    opacity: 0.85;
    transform: scale(1.06);
    background: transparent;
    text-decoration: none;
}

.site-footer__social svg {
    width: 24px;
    height: auto;
    display: block;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    color: #e8ecf2;
}

.site-footer__copy {
    color: #e8ecf2;
}

.site-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.site-footer__legal li {
    position: relative;
    padding-right: 18px;
}

.site-footer__legal li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal a {
    color: #e8ecf2;
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer__inner {
        padding: 40px 16px 20px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-footer__legal {
        gap: 12px;
    }
}


/* ---------- 12. Utility classes ---------- */


/* Flex utilities */

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

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

.align-end {
    align-items: flex-end;
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Display utilities */

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}


/* Text utilities */

.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.font-bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}


/* Sizing */

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-auto {
    width: auto;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}


/* Position */

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}


/* Cursor */

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}


/* Gap */

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}


/* Margin X / Y */

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mx-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-30 {
    margin-left: 30px;
    margin-right: 30px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}


/* Padding X / Y */

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* ---------- 13. WordPress alignment utilities ---------- */

.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.clear::after,
.entry-content::after {
    content: "";
    display: table;
    clear: both;
}


/* ---------- 14. Accessibility ---------- */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #fff;
    clip: auto !important;
    clip-path: none;
    color: var(--tw-accent);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 1rem 1.5rem;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100001;
}


/* Reduce motion preference */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ---------- 15. WordPress core classes ---------- */

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption img {
    display: block;
}

.wp-caption-text,
.gallery-caption {
    font-size: 0.85rem;
    color: var(--tw-muted);
    text-align: center;
    margin: 0.5rem 0 0;
}

.gallery {
    display: grid;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

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

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

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item img {
    border-radius: var(--tw-radius);
}

.sticky {
    position: relative;
}


/* .bypostauthor — left intentionally unstyled; add rules to highlight the post author's own comments. */


/* ---------- Contact page ---------- */
.contact-hero {
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: -1;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.contact-hero__title {
    margin: 0 0 10px;
    font-family: "Playfair Display", "Times New Roman", Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    font-size: 40px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.contact-hero__subtitle {
    margin: 0;
    font-family: var(--font-regular), var(--tw-font-sans);
    font-size: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 768px) {
    .contact-hero {
        min-height: 300px;
    }

    .contact-hero__title {
        font-size: 56px;
        letter-spacing: 0.2em;
    }

    .contact-hero__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 180px;
        padding: 44px 16px;
    }

    .contact-hero__title {
        font-size: 30px;
        letter-spacing: 0.14em;
    }

    .contact-hero__subtitle {
        font-size: 14px;
    }
}

.contact-page {
    background: #f4f4f4;
    padding: 70px 0 90px;
    color: #1f2937;
}

.contact-page__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.contact-page__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(58, 79, 106, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-medium), var(--tw-font-sans);
}

.contact-page__title {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.15;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: var(--primary-color);
}

.contact-page__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
}

.contact-page__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 56px;
}

.contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(58, 79, 106, 0.08);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card__label {
    margin: 0 0 8px;
    font-size: 13px;
    font-family: var(--font-medium), var(--tw-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.contact-card__lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card__line {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #111827;
    font-family: var(--font-medium), var(--tw-font-sans);
}

.contact-card__line + .contact-card__line {
    font-size: 14px;
    color: #6b7280;
    font-family: var(--font-regular), var(--tw-font-sans);
}

.contact-card__line--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card__line--link:hover {
    color: var(--primary-color);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-page__grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 36px;
    }
}

.contact-page__form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.contact-page__form-head {
    margin-bottom: 24px;
}

.contact-page__form-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: var(--primary-color);
}

.contact-page__form-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #6b7280;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 600px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__label {
    font-size: 16px;
    font-family: var(--font-medium), var(--tw-font-sans);
    color: #374151;
    letter-spacing: 0.02em;
}

.contact-form__required {
    color: #dc2626;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-regular), var(--tw-font-sans);
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 79, 106, 0.15);
}

.contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

.contact-form__consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.contact-form__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-medium), var(--tw-font-sans);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    background: transparent;
    color: var(--primary-color);
}

.contact-page__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-page__aside-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.contact-page__aside-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: var(--primary-color);
}

.contact-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #eef0f3;
}

.contact-hours li:last-child {
    border-bottom: 0;
}

.contact-hours li span:last-child {
    color: #111827;
    font-family: var(--font-medium), var(--tw-font-sans);
}

.contact-page__aside-card--accent {
    background: var(--primary-color);
    color: #fff;
}

.contact-page__aside-card--accent h3 {
    color: #fff;
}

.contact-page__aside-card--accent p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.contact-page__aside-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-medium), var(--tw-font-sans);
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
    transition: gap 0.25s ease, border-color 0.25s ease;
}

.contact-page__aside-link:hover {
    gap: 12px;
    border-bottom-color: #fff;
}

.contact-page__page-content {
    max-width: 820px;
    margin: 48px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

@media (max-width: 767px) {
    .contact-page {
        padding: 50px 0 70px;
    }

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

    .contact-page__form-wrap {
        padding: 24px 20px;
    }
}

/* ---------- Showroom page ---------- */
.showroom-page {
    background: #f4f4f4;
	padding: 60px 80px;
    color: #1f2937;
}

.showroom-page__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.showroom-page__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(58, 79, 106, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-medium), var(--tw-font-sans);
}

.showroom-page__title {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.15;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: var(--primary-color);
}

.showroom-page__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .showroom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .showroom-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.showroom-card {
    --showroom-card-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--showroom-card-radius);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    isolation: isolate;
}

.showroom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(58, 79, 106, 0.08);
    pointer-events: none;
    z-index: 1;
}

.showroom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(15, 23, 42, 0.12);
}

.showroom-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #1f2937;
    overflow: hidden;
}

.showroom-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.55) 75%, rgba(15, 23, 42, 0.85) 100%);
    pointer-events: none;
}

.showroom-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showroom-card:hover .showroom-card__media img {
    transform: scale(1.06);
}

.showroom-card__index {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-family: var(--font-bold), var(--tw-font-sans);
    font-size: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(6px);
}

.showroom-card__media-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
}

.showroom-card__eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-medium), var(--tw-font-sans);
}

.showroom-card__name {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.01em;
}

.showroom-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.showroom-card__address {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 0;
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
}

.showroom-card__icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: var(--primary-color);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.showroom-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding-top: 10px;
    border-top: 1px dashed #e5e7eb;
}

.showroom-card__meta-item {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    color: #374151;
    text-decoration: none;
    font-family: var(--font-medium), var(--tw-font-sans);
    transition: color 0.2s ease;
}

.showroom-card__meta-item--static {
    color: #6b7280;
    cursor: default;
}

.showroom-card__meta-item:not(.showroom-card__meta-item--static):hover {
    color: var(--primary-color);
}

.showroom-card__meta-item svg {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    color: var(--primary-color);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.showroom-card__map {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: inset 0 0 0 1px rgba(58, 79, 106, 0.1);
}

.showroom-card__map::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 -40px 40px -40px rgba(15, 23, 42, 0.15);
}

.showroom-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.05);
}

.showroom-card__cta {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 40px;
    padding: 0 16px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-medium), var(--tw-font-sans);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.25s ease;
    border: 1px solid var(--primary-color);
}

.showroom-card__cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.showroom-card__cta:hover,
.showroom-card__cta:focus-visible {
    background: #2c3d52;
    border-color: #2c3d52;
}

.showroom-card__cta:hover svg,
.showroom-card__cta:focus-visible svg {
    transform: translateX(4px);
}

.showroom-page__page-content {
    max-width: 820px;
    margin: 48px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.showroom-page__cta {
    margin: 56px auto 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
	max-width: 1100px;
}

.showroom-page__cta-text h2 {
    margin: 0 0 6px;
    font-size: 24px;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: #fff;
}

.showroom-page__cta-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    line-height: 1.55;
}

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

.showroom-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 13px;
    font-family: var(--font-medium), var(--tw-font-sans);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.showroom-page__btn--primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.showroom-page__btn--primary:hover,
.showroom-page__btn--primary:focus-visible {
    background: transparent;
    color: #fff;
}

.showroom-page__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.showroom-page__btn--ghost:hover,
.showroom-page__btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.showroom-faqs {
    margin: 60px auto 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    padding: 32px 32px 16px;
}

.showroom-faqs__header {
    text-align: center;
    margin-bottom: 18px;
}

.showroom-faqs__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(58, 79, 106, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-medium), var(--tw-font-sans);
}

.showroom-faqs__title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-family: var(--font-bold), var(--tw-font-sans);
    color: var(--primary-color);
}

.showroom-faqs__intro {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.showroom-faqs__list {
    border-top: 1px solid #eef0f3;
    padding-top: 4px;
}

@media (max-width: 767px) {
    .showroom-page {
        padding: 50px 0 70px;
    }

    .showroom-page__title {
        font-size: 28px;
    }

    .showroom-card__body {
        padding: 14px 16px 16px;
    }

    .showroom-card__name {
        font-size: 22px;
    }

    .showroom-page__cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 28px;
    }

    .showroom-page__btn {
        width: 100%;
    }

    .showroom-faqs {
        padding: 24px 20px 8px;
        margin-top: 40px;
    }

    .showroom-faqs__title {
        font-size: 24px;
    }
}

/* ---------- 16. Misc responsive tweaks ---------- */

@media (max-width: 599px) {
    .site-header__inner {
        flex-wrap: wrap;
    }
    .site-branding {
        flex: 1 1 auto;
    }
}