* {
    box-sizing: border-box;
}

:root {
    --primary-color: #0d6efd;
    --accent-color: #20c997;
    --background-color: #f7f9fc;
    --font-family: 'Manrope', 'Segoe UI', sans-serif;

    --surface-bg: #f7f9fc;
    --surface-card: #ffffff;
    --surface-soft: #edf2f8;
    --text-color: #1d2735;
    --muted-color: #5e6878;
    --border-color: #d8e1ed;

    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 8px 24px rgba(14, 24, 39, 0.08);
    --container-width: min(1400px, 95%);
    --hero-title-color: #f8fbff;
    --hero-subtitle-color: #eaf0fb;
    --hero-eyebrow-color: color-mix(in srgb, var(--accent-color) 45%, #ffffff);
    --hero-text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.65;
}

a {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.text-muted {
    color: var(--muted-color);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--surface-card) 90%, transparent);
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.nav-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-search-row {
    border-bottom: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--surface-card) 92%, transparent);
    padding: 10px 0;
}

.nav-search {
    position: relative;
    max-width: 760px;
}

.nav-search-form {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(110px, 170px) minmax(0, 1fr) 44px;
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    overflow: hidden;
    background: var(--surface-card);
}

.nav-search-select {
    border: 0;
    border-right: 1px solid var(--border-color);
    padding: 7px 28px 7px 12px;
    font-size: 0.9rem;
    color: var(--text-color);
    background: color-mix(in srgb, var(--surface-soft) 65%, #fff);
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 14px) 50%,
        calc(100% - 9px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

.nav-search-input {
    width: 100%;
    min-height: 40px;
    border: 0;
    padding: 7px 12px;
    background: transparent;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-search-submit {
    border: 0;
    border-left: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-search-submit-icon {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.nav-search-submit-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: currentColor;
    right: -5px;
    bottom: -2px;
    transform: rotate(45deg);
    transform-origin: center;
}

.nav-search-input:focus {
    outline: 0;
}

.nav-search-form:focus-within {
    outline: 2px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
    outline-offset: 1px;
}

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

.nav-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 70;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    padding: 10px;
    max-height: min(65vh, 520px);
    overflow-y: auto;
}

.nav-search-state {
    font-size: 0.9rem;
    padding: 4px 2px;
}

.nav-search-group + .nav-search-group {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.nav-search-group-title {
    margin: 0 0 6px;
    font-size: 0.9rem;
}

.nav-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.nav-search-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    padding: 6px 8px;
}

.nav-search-link:hover,
.nav-search-link.is-active {
    background: color-mix(in srgb, var(--primary-color) 12%, #fff);
}

.nav-search-link-title {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.nav-search-link-snippet {
    display: block;
    margin-top: 2px;
    color: var(--muted-color);
    font-size: 0.84rem;
    line-height: 1.25;
}

.nav-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.84rem;
    font-weight: 700;
    background: var(--surface-card);
}

.nav-count-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
    background: var(--primary-color);
    color: #fff;
}

.nav-item {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.submenu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
}

.submenu-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.has-submenu.is-open > .nav-link-row .submenu-arrow {
    transform: rotate(225deg);
}

.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    z-index: 30;
}

.sub-nav .sub-nav {
    top: 0;
    left: 100%;
}

.has-submenu:hover > .sub-nav,
.has-submenu:focus-within > .sub-nav {
    display: block;
}

.sub-nav .nav-item {
    margin: 0;
}

.sub-nav .nav-link {
    display: block;
    padding: 6px 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.nav-link[aria-current="page"],
.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--surface-card);
    width: 42px;
    height: 42px;
    padding: 0;
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text-color);
}

.hero {
    padding: 108px 0 96px;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    color: var(--hero-title-color);
    text-shadow: var(--hero-text-shadow);
}

.eyebrow {
    margin: 0 0 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hero-eyebrow-color);
    text-shadow: var(--hero-text-shadow);
}

.hero-subtitle {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--hero-subtitle-color);
    text-shadow: var(--hero-text-shadow);
}

.site-main {
    padding: 28px 0 44px;
}

.section {
    padding: 56px 0;
}

.page-section {
    background: transparent;
}

.content-default-footer {
    margin-top: 1.25rem;
    padding: 1rem 1.125rem;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, var(--border-color));
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.content-footer-line {
    margin: 0 0 0.65rem;
    color: var(--text-color);
    line-height: 1.62;
}

.content-footer-line:last-child {
    margin-bottom: 0;
}

.content-default-footer a {
    color: var(--primary-color);
    font-weight: 700;
    text-underline-offset: 2px;
}

.content-default-footer a:hover {
    color: color-mix(in srgb, var(--primary-color) 82%, #001a52);
}

.content-default-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.56rem 0.95rem;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.content-default-footer .btn-success {
    background: #25d366;
    border-color: #20bc59;
    color: #fff;
}

.content-default-footer .btn-success:hover {
    background: #1fb95a;
    border-color: #1aa24f;
    color: #fff;
}

.section-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 30px;
}

.section-text {
    text-align: left;
    height: 100%;
}

.container.section-text,
.section-text.container {
    width: var(--container-width);
    max-width: none;
}

.section-text h2,
.content-header h1,
.card h2,
.card h3 {
    margin-top: 0;
}

.section-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.section-figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.card,
.content-card,
.form-card,
.section-text {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.content-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-header {
    margin-bottom: 20px;
}

.post-card h2 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.post-meta {
    margin: 0 0 10px;
}

.post-thumb {
    width: 100%;
    display: block;
    border-radius: 0.6rem;
}

.post-thumb-link {
    display: block;
    text-decoration: none;
}

.listing-square-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.6rem;
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.listing-square-media__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: translate(calc(-50% + var(--listing-offset-x, 0%)), calc(-50% + var(--listing-offset-y, 0%))) scale(var(--listing-scale, 1));
    transform-origin: center center;
}

.content-embed {
    margin: 14px 0;
}

.content-embed iframe,
.content-embed video {
    max-width: 100%;
    border-radius: 8px;
}


.content-embed audio {
    width: 100%;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: start;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-sidebar {
    display: grid;
    gap: 14px;
}

.blog-sidebar-card {
    padding: 18px;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.blog-sidebar-scroll--categories {
    position: relative;
    max-height: 360px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    mask-image: linear-gradient(to bottom, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}

.sidebar-list--categories {
    padding-right: 6px;
}

.sidebar-list--categories li + li {
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 4px 10px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--surface-soft);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.products-archive-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.products-archive-main {
    min-width: 0;
}

.products-archive-layout .products-archive-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.products-filter-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.products-filter-group {
    display: grid;
    gap: 10px;
}

.products-filter-group__title {
    margin-bottom: 0;
}

.products-filter-search-wrap {
    display: grid;
    gap: 4px;
}

.products-filter-search-label {
    font-size: 0.78rem;
    color: var(--muted-color);
}

.products-filter-search {
    min-height: 34px;
    padding: 0.38rem 0.62rem;
    font-size: 0.9rem;
}

.products-filter-scroll {
    position: relative;
    max-height: 340px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.products-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.products-filter-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 6px 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    line-height: 1.35;
}

.products-filter-link:hover {
    color: var(--accent-color);
}

.products-filter-link.is-active {
    color: var(--accent-color);
    font-weight: 700;
}

.products-filter-more {
    justify-self: start;
    padding: 0.36rem 0.74rem;
    font-size: 0.86rem;
}

.products-archive-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.products-filter-toggle {
    display: none !important;
}

.products-filter-panel[hidden] {
    display: none;
}

.products-filter-panel {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.products-filter-panel__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    width: 100%;
    background: rgba(9, 17, 32, 0.45);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.products-filter-panel__sheet {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 360px);
    background: var(--surface-card);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: grid;
    align-content: start;
    gap: 14px;
}

.products-filter-panel .products-filter-scroll {
    max-height: 34vh;
}

.products-filter-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.products-filter-panel__close {
    font-size: 0.9rem;
    padding: 0.38rem 0.65rem;
}

.products-filter-panel.is-open .products-filter-panel__backdrop {
    opacity: 1;
}

.products-filter-panel.is-open .products-filter-panel__sheet {
    transform: translateX(0);
}

body.products-filter-panel-open {
    overflow: hidden;
}

.shop-grid {
    display: grid;
    gap: 14px;
}

.products-archive-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.shop-card-image {
    position: relative;
    display: block;
}

.shop-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.shop-card-image .listing-square-media {
    border-radius: 0;
}

.shop-card-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
    color: #586476;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.shop-card-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: #c62828;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 8px;
}

.shop-card-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.shop-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.favorite-btn {
    border: 1px solid var(--border-color);
    background: var(--surface-soft);
    color: var(--text-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
}

.favorite-btn.is-active {
    background: #ffe3e6;
    border-color: #ef9aa4;
    color: #b3261e;
}

.favorite-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.shop-card-title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
}

.shop-card-seller {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted-color);
}

.shop-card-price {
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-card-price-current {
    font-weight: 800;
    color: var(--text-color);
}

.shop-card-price-regular {
    color: var(--muted-color);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.shop-card-stock {
    margin: 0;
    font-size: 0.83rem;
}

.shop-card-stock.is-in {
    color: #2f7f4f;
}

.shop-card-stock.is-out {
    color: #b3261e;
}

.shop-card-actions {
    display: flex;
    justify-content: flex-start;
}

.shop-card-actions form {
    width: 100%;
}

.shop-card-actions .btn {
    width: 100%;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: start;
}

.product-page > .product-image,
.product-page > .product-info {
    align-self: start;
}

.product-details-section {
    margin-top: 18px;
}

.product-image {
    position: relative;
    padding: 12px;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-image-main {
    display: grid;
    gap: 10px;
}

.product-detail-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.product-detail-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-gallery-fullview {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
}

.product-gallery-fullview .btn {
    background: rgba(255, 255, 255, 0.94);
    border-color: color-mix(in srgb, var(--primary-color) 42%, var(--border-color));
    color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
}

.product-utility-slot {
    margin-top: 10px;
    padding: 14px 14px 12px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 36%, var(--border-color));
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent-color) 14%, transparent) 0%, transparent 38%),
        radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--primary-color) 12%, transparent) 0%, transparent 42%),
        linear-gradient(155deg, #ffffff 0%, #f2f7ff 52%, #edf6ff 100%);
    box-shadow:
        0 8px 22px rgba(13, 41, 86, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    position: relative;
}

.product-utility-slot[hidden] {
    display: none !important;
}

.product-utility-slot::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 11%, transparent);
    pointer-events: none;
}

.product-utility-slot__eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 800;
    color: color-mix(in srgb, var(--primary-color) 85%, #17325f);
}

.product-utility-slot__text {
    margin: 0;
    color: color-mix(in srgb, var(--text-color) 92%, #102442);
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}

.product-utility-slot__button {
    min-height: 38px;
    font-size: 0.9rem;
    font-weight: 800;
    width: fit-content;
    padding-inline: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.product-image-placeholder {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
    color: #586476;
    font-weight: 600;
}

.product-info {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.product-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.product-info .shop-card-seller {
    margin: 0 0 10px;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--muted-color);
}

.product-stock {
    margin: 0 0 12px;
    font-size: 0.96rem;
    font-weight: 700;
}

.product-price {
    margin: 10px 0 18px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-price .shop-card-price-current {
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.product-price .shop-card-price-regular {
    font-size: 0.98rem;
    font-weight: 700;
}

.product-cart {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.product-cart-label {
    font-weight: 800;
    font-size: 0.95rem;
}

.product-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-qty-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-qty-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 1.05rem;
}

.product-cart input[type='number'] {
    width: 86px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--surface-soft);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.product-add-to-cart {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.product-add-to-cart:hover:not(:disabled),
.product-add-to-cart:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.product-add-to-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-short-description-wrap {
    margin: 8px 0 10px;
}

.product-short-description {
    margin: 0;
    color: var(--muted-color);
    font-size: 1rem;
    line-height: 1.72;
}

.product-short-description p {
    margin: 0 0 10px;
}

.product-short-description p:last-child {
    margin-bottom: 0;
}

.product-short-description.is-collapsed {
    max-height: 8.6em;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

.product-short-description-toggle {
    margin-top: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.product-short-description-toggle:hover,
.product-short-description-toggle:focus-visible {
    text-decoration: underline;
}

.product-secondary-cta-wrap {
    margin-top: 12px;
    margin-bottom: 20px;
}

.product-secondary-cta-form {
    margin: 0;
}

.product-secondary-cta-btn {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.product-secondary-cta-btn.btn-outline-primary {
    border-width: 1.5px;
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
}

.product-secondary-cta-btn:hover:not(:disabled),
.product-secondary-cta-btn:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

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

.product-subscribe-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 16px;
}

.product-subscribe-dialog {
    width: min(460px, 96vw);
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
}

.product-subscribe-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product-description {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--text-color);
}

.product-description p {
    margin: 0 0 14px;
}

.product-description ul,
.product-description ol {
    margin: 0 0 16px;
    padding-left: 1.35rem;
}

.product-description li {
    margin: 0 0 8px;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin: 20px 0 10px;
    line-height: 1.3;
}

.product-details-body {
    position: relative;
}

.product-details-body.is-collapsed {
    max-height: 420px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

.product-details-toggle {
    margin-top: 10px;
}

.product-back-link {
    margin-top: 14px;
}

.related-products {
    margin-top: 28px;
}

.related-products .shop-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.related-products .shop-card-price {
    gap: 10px;
}

.related-products .shop-card-price-current {
    font-size: 1.06rem;
    font-weight: 900;
}

.related-products .shop-card-price-regular {
    font-size: 0.9rem;
    font-weight: 700;
}

.home-sections-stack {
    display: block;
}

.home-product-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.home-product-slider__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-product-slider__track::-webkit-scrollbar {
    display: none;
}

.home-product-slider__viewport {
    position: relative;
}

.home-product-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 84px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.home-product-slider__nav span {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

.home-product-slider__nav:hover {
    background: #ffffff;
}

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

.home-product-slider__nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.home-product-slider__nav--prev {
    left: 8px;
}

.home-product-slider__nav--next {
    right: 8px;
}

.home-product-slider__item {
    flex: 0 0 min(300px, 82vw);
    display: flex;
    scroll-snap-align: start;
}

.home-product-slider__item .shop-card {
    height: 100%;
}

.home-blog-section .post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-blog-section .post-card > p.mb-3 {
    margin-bottom: 8px !important;
}

.home-blog-section .post-card h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-section .post-card > .post-meta {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-section .post-card > p:not(.post-meta):not(.mb-3) {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-slider .shop-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: relative;
    border: 1px solid var(--border-color);
    background: #fff;
    background-image:
        linear-gradient(to right, var(--border-color), var(--border-color)),
        linear-gradient(to right, var(--border-color), var(--border-color)),
        linear-gradient(to right, var(--border-color), var(--border-color)),
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 91px,
            var(--border-color) 91px,
            var(--border-color) 92px
        );
    background-size:
        1px 100%,
        1px 100%,
        1px 100%,
        100% 92px;
    background-position:
        25% 0,
        50% 0,
        75% 0,
        0 0;
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat,
        repeat;
}

.home-category-card {
    min-height: 92px;
}

.home-category-card__link {
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 18px 22px;
    text-decoration: none;
    color: inherit;
}

.home-category-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.18;
    font-weight: 800;
}

.home-category-card__link:hover {
    background: #f7f8fa;
}

.form-input,
.form-select,
.form-textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    min-height: 46px;
    padding: 11px 14px;
    font: inherit;
    line-height: 1.45;
    color: var(--text-color);
    background: var(--surface-soft);
}

.public-pagination-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.public-pagination-summary {
    color: var(--muted-color);
}

.public-pagination-nav {
    display: flex;
    justify-content: center;
}

.public-pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.public-pagination-item {
    margin: 0;
}

.public-pagination-link {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-left: 0;
    background: var(--surface-card);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.public-pagination-item:first-child .public-pagination-link {
    border-left: 1px solid var(--border-color);
}

.public-pagination-item.is-active .public-pagination-link {
    background: var(--surface-soft);
    color: var(--primary-color);
}

.public-pagination-item.is-gap .public-pagination-link {
    pointer-events: none;
}

.public-pagination-item.is-disabled .public-pagination-link {
    opacity: 0.45;
    pointer-events: none;
}

.form-textarea {
    min-height: 140px;
    padding-top: 12px;
    resize: vertical;
}

.form-textarea--compact {
    min-height: 96px;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: inline-block;
    font-weight: 600;
    line-height: 1.35;
}

.form-card > h3,
.content-card > h2,
.content-card > h3 {
    margin: 0 0 16px;
}

.form-card > .text-muted,
.form-card form,
.form-card .form-feedback {
    margin-top: 0;
}

.form-card > .text-muted,
.content-card > .text-muted,
.form-feedback {
    margin-bottom: 18px;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-shell {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.account-shell__content {
    min-width: 0;
}

.account-shell .account-nav {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.account-shell .account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.account-shell .account-nav li {
    margin: 0;
}

.account-shell .account-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--surface-card);
    font-weight: 600;
}

.account-shell .account-nav a:hover {
    background: var(--surface-soft);
}

.account-shell .account-nav li.active a {
    border-color: color-mix(in srgb, var(--primary-color) 42%, var(--border-color));
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 8%, var(--surface-card));
}

.account-shell .checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
    gap: 18px;
    align-items: start;
}

.account-shell .checkout-summary {
    position: relative;
}

.account-shell .checkout-submit-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.account-dashboard {
    margin-bottom: 18px;
}

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

.account-overview-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--surface-soft);
    padding: 14px;
}

.account-overview-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.account-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.account-quick-link {
    display: flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    background: var(--surface-card);
}

.account-quick-link:hover {
    background: var(--surface-soft);
}

.account-profile-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
    gap: 18px;
    align-items: start;
}

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

.cart-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    padding: 12px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.cart-item-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-media-placeholder {
    color: var(--muted-color);
    font-weight: 700;
    font-size: 0.85rem;
}

.cart-item-main {
    min-width: 0;
}

.cart-item-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.cart-item-preview a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.cart-item-preview a:hover {
    text-decoration: underline;
}

.cart-qty-dec,
.cart-qty-inc {
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.cart-item-meta {
    color: var(--muted-color);
    margin-bottom: 0;
}

.cart-item-actions {
    display: grid;
    gap: 8px;
    align-content: end;
}

.cart-item-total {
    margin: 0;
    font-weight: 800;
    font-size: 1.06rem;
}

.cart-summary h2 {
    margin-bottom: 10px;
}

.cart-summary-total {
    margin-bottom: 14px;
}

.orders-table-wrap,
.order-items-wrap {
    border: 1px solid #d6deea;
    border-radius: 14px;
    overflow: hidden;
}

.orders-table,
.order-items-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.orders-table thead th,
.order-items-table thead th {
    background: #f3f6fb;
    border-bottom: 1px solid #d6deea;
    color: #243047;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.9rem 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.orders-table td,
.order-items-table td {
    border-bottom: 1px solid #e4eaf3;
    padding: 0.9rem 0.85rem;
}

.orders-table td {
    vertical-align: middle;
}

.order-items-table td {
    vertical-align: top;
}

.orders-table tbody tr:hover,
.order-items-table tbody tr:hover {
    background: #f9fbff;
}

.orders-table .text-end,
.order-items-table .text-end {
    text-align: right;
}

.orders-table .text-center,
.order-items-table .text-center {
    text-align: center;
}

.orders-table .actions a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.orders-table .actions a + a {
    margin-left: 0.9rem;
}

.cta-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.cta-actions {
    justify-content: flex-start;
    margin-top: 4px;
}

.contact-actions {
    margin-top: 20px;
}

.cta-actions .btn,
.contact-actions .btn {
    min-height: 46px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#contact-page-content-title,
#contact-details-title,
#request-quote-page-content-title,
#quote-form-title-card,
#quote-help-title {
    scroll-margin-top: 100px;
}

.site-main > .page-section:first-child {
    padding-top: 40px;
}

.site-main > .page-section + .page-section {
    padding-top: 0;
}

.site-main > .page-section .content-card p:last-child,
.site-main > .page-section .form-card p:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.site-footer {
    background: var(--surface-soft);
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.footer-content {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(var(--footer-columns, 4), minmax(0, 1fr));
}

.footer-accordion-toggle {
    display: none;
}

.footer-accordion-panel {
    display: block;
}

.footer-view-all {
    display: none;
}

@media (min-width: 1200px) {
    .footer-content--4cols {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr) minmax(0, 1.16fr) minmax(0, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    max-height: min(460px, 62vh);
    overflow-y: auto;
    padding-right: 6px;
}

.footer-column h4 {
    margin: 0 0 6px;
}

.footer-column h5 {
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-custom-html p {
    margin-top: 0;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.footer-menu-item .footer-menu-list {
    margin-left: 0;
    margin-top: 0;
}

.footer-contact-list {
    margin: 0;
    font-style: normal;
}

.footer-contact-list p {
    margin: 0;
}

.footer-social-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-social-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.footer-social-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.footer-column-image {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: min(260px, 38vh);
    object-fit: contain;
}

.footer-custom-html {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-newsletter-form {
    display: grid;
    gap: 8px;
}

.footer-buttons {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 9px 12px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.footer-btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.footer-btn--outline {
    background: transparent;
    color: var(--primary-color);
}

.footer-btn--light {
    background: var(--surface-card);
    color: var(--text-color);
    border-color: var(--border-color);
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .footer-column {
        gap: 12px;
        padding: 12px 14px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: var(--surface-soft);
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .footer-column h4 {
        display: none;
    }

    .footer-accordion-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        border: 0;
        padding: 0;
        background: transparent;
        color: var(--text-color);
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.35;
        text-align: left;
        cursor: pointer;
    }

    .footer-accordion-caret {
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--text-color);
        border-bottom: 2px solid var(--text-color);
        transform: rotate(45deg);
        transition: transform 0.18s ease;
    }

    .footer-column.is-open .footer-accordion-caret {
        transform: rotate(225deg);
    }

    .footer-accordion-panel {
        display: none;
        margin-top: 6px;
    }

    .footer-column.is-open .footer-accordion-panel {
        display: block;
    }

    .footer-menu-list,
    .footer-social-list,
    .footer-contact-list {
        gap: 10px;
    }

    .footer-menu-list .nav-link,
    .footer-social-link,
    .footer-contact-list p,
    .footer-newsletter,
    .footer-custom-html {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .footer-social-list {
        grid-template-columns: 1fr;
    }

    .footer-column-image {
        display: block;
        width: min(180px, 100%);
        max-height: min(220px, 32vh);
        margin: 0 auto;
        object-fit: contain;
    }

    .footer-view-all {
        display: inline-flex;
        margin-top: 6px;
        border: 1px solid var(--border-color);
        border-radius: 999px;
        background: var(--surface-card);
        color: var(--text-color);
        font-size: 0.86rem;
        font-weight: 700;
        padding: 5px 11px;
        cursor: pointer;
    }

    .footer-social-list {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding: 14px 0;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    z-index: 9996;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

@media (max-width: 640px) {
    .home-product-slider__header {
        flex-direction: column;
        align-items: stretch;
    }

    .home-product-slider__item {
        flex-basis: min(280px, 84vw);
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        background-image:
            linear-gradient(to right, var(--border-color), var(--border-color)),
            repeating-linear-gradient(
                to bottom,
                transparent 0,
                transparent 91px,
                var(--border-color) 91px,
                var(--border-color) 92px
            );
        background-size:
            1px 100%,
            100% 92px;
        background-position:
            50% 0,
            0 0;
        background-repeat:
            no-repeat,
            repeat;
    }

    .home-product-slider__nav {
        width: 46px;
        height: 72px;
    }

    .home-product-slider__nav span {
        font-size: 28px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 86px;
    }
}

@media (max-width: 1280px) {
    :root {
        --container-width: min(1240px, 94%);
    }

    .products-archive-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

@media (max-width: 1100px) {
    :root {
        --container-width: min(1080px, 93%);
    }

    .products-archive-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    :root {
        --container-width: 94%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        background: var(--surface-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 14px;
        margin-top: 8px;
    }

    .sub-nav {
        display: none;
        position: static;
        min-width: 100%;
        border: 0;
        box-shadow: none;
        padding: 6px 0 0 12px;
        margin-top: 4px;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .has-submenu.is-open > .sub-nav {
        display: block;
    }

    .site-nav.is-menu-open .nav-links {
        display: flex;
    }

    .nav-inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-search {
        width: 100%;
        max-width: none;
    }

    .nav-search-form {
        grid-template-columns: minmax(95px, 130px) minmax(0, 1fr) 40px;
    }

    .nav-quick-actions {
        width: 100%;
        justify-content: flex-end;
        order: 3;
    }

    .home-product-slider__track {
        padding-left: 0;
        padding-right: 0;
    }

    .home-product-slider__item {
        flex: 0 0 calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
        min-width: 0;
    }

    .home-blog-section .post-card {
        padding: 14px;
        display: grid;
        gap: 6px;
    }

    .home-blog-section .post-card > p.mb-3 {
        margin-bottom: 8px !important;
    }

    .home-blog-section .post-card h2 {
        margin: 0;
        font-size: 1.02rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-blog-section .post-card > .post-meta {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.32;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-blog-section .post-card > p:not(.post-meta):not(.mb-3) {
        margin: 0;
        font-size: 0.97rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .section-split,
    .footer-content,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout,
    .product-page {
        grid-template-columns: 1fr;
    }

    .product-utility-slot {
        display: none !important;
    }

    .account-shell,
    .account-shell .checkout-layout {
        grid-template-columns: 1fr;
    }

    .account-shell .account-nav ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-overview-grid,
    .account-quick-grid {
        grid-template-columns: 1fr;
    }

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

    .order-items-table thead th,
    .order-items-table td {
        padding: 0.75rem 0.65rem;
        font-size: 0.92rem;
    }

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

    .products-archive-layout {
        grid-template-columns: 1fr;
    }

    .products-filter-sidebar {
        display: none;
    }

    .products-filter-toggle {
        display: inline-flex !important;
    }

    .products-archive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero {
        padding: 88px 0 74px;
    }

}

@media (max-width: 700px) {
    :root {
        --container-width: 92%;
    }

    .blog-sidebar-scroll--categories {
        max-height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .products-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-shell .account-nav ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-width: 94%;
    }

    .products-archive-grid {
        grid-template-columns: 1fr;
    }
}
