:root {
    --brand: #211f20;
    --brand-dark: #141315;
    --accent: #8f949f;
    --ink: #121417;
    --muted: #5b616d;
    --surface: #ffffff;
    --surface-2: #f3f4f6;
    --border: #d7dbe2;
    --shadow: 0 18px 38px rgba(20, 19, 21, 0.1);
    --radius: 18px;
    --focus-ring: #626774;
    --focus-inner: rgba(255, 255, 255, 0.98);
    --focus-outer: rgba(98, 103, 116, 0.46);
    --focus-glow: rgba(20, 19, 21, 0.22);
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 16%, rgba(33, 31, 32, 0.08), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(143, 148, 159, 0.11), transparent 32%),
        linear-gradient(180deg, #f7f7f8 0%, #eef0f3 48%, #f7f8fa 100%);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #171618;
    --bs-btn-hover-border-color: #171618;
    --bs-btn-focus-shadow-rgb: 33, 31, 32;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #111014;
    --bs-btn-active-border-color: #111014;
}

.btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: #8f949f;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-focus-shadow-rgb: 33, 31, 32;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #171618;
    --bs-btn-active-border-color: #171618;
}

.btn-success {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #2f343e;
    --bs-btn-border-color: #2f343e;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #252933;
    --bs-btn-hover-border-color: #252933;
    --bs-btn-focus-shadow-rgb: 47, 52, 62;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #1d212a;
    --bs-btn-active-border-color: #1d212a;
}

:is(a[href], button, input, select, textarea, summary, [role="button"], [tabindex]:not([tabindex="-1"]), .btn, .nav-link, .dropdown-item, .page-link, .form-control, .form-select, .form-check-input, .product-image-thumb-btn, .header-nav-link, .mega-link-chip, .mobile-quick-link, .mobile-link, .utility-icon-link, .category-card-media, .swiper-button-prev, .swiper-button-next):focus-visible {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 2px var(--focus-inner), 0 0 0 5px var(--focus-outer), 0 0 0 8px var(--focus-glow);
    border-color: var(--focus-ring);
}

:is(a[href], button, input, select, textarea, summary, [role="button"], [tabindex]:not([tabindex="-1"]), .btn, .nav-link, .dropdown-item, .page-link, .form-control, .form-select, .form-check-input, .product-image-thumb-btn, .header-nav-link, .mega-link-chip, .mobile-quick-link, .mobile-link, .utility-icon-link, .category-card-media, .swiper-button-prev, .swiper-button-next):focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.category-card-media:focus-visible {
    box-shadow: inset 0 0 0 2px var(--focus-inner), inset 0 0 0 6px var(--focus-outer);
}

.skip-link {
    position: absolute;
    inset-inline-start: 1rem;
    inset-block-start: -100px;
    z-index: 2000;
    background: #fff;
    color: #0f172a;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.skip-link:focus {
    inset-block-start: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-utility {
    max-height: 56px;
    background: linear-gradient(95deg, #0d0e11 0%, #1a1c22 45%, #2c3038 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: max-height 0.28s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.site-header.is-compact .header-utility {
    max-height: 0;
    opacity: 0;
    border-color: transparent;
}

.header-utility-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.38rem;
    overflow-x: auto;
    padding: 0.4rem 0;
    scrollbar-width: thin;
}

.header-utility-row::-webkit-scrollbar {
    height: 4px;
}

.utility-dot,
.utility-icon-link {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
    transition: transform 0.15s ease, background 0.2s ease;
}

.utility-icon-link:hover,
.utility-icon-link:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-1px);
}

.header-main {
    padding: 0.55rem 0 0.45rem;
}

.header-main-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 22px;
    padding: 0.75rem 0.95rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    transition: padding 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-compact .header-main-shell {
    padding-top: 0.58rem;
    padding-bottom: 0.58rem;
    border-color: rgba(148, 163, 184, 0.45);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.1);
}

.header-branding {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.header-menu-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    color: #0f172a;
}

.header-menu-btn:hover,
.header-menu-btn:focus-visible {
    border-color: rgba(33, 31, 32, 0.4);
    color: var(--brand);
    background: rgba(33, 31, 32, 0.08);
}

.header-menu-btn i {
    font-size: 1.2rem;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #ffffff;
    background: linear-gradient(135deg, #161518, #3c404a);
    box-shadow: 0 12px 20px rgba(20, 19, 21, 0.26);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.08rem;
    color: #0f172a;
    font-weight: 800;
}

.brand-copy small {
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-inline-start: auto;
}

.header-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.52rem 0.82rem;
    border-radius: 12px;
    font-weight: 700;
    color: #1f2937;
}

.header-nav-link:hover,
.header-nav-link:focus-visible {
    color: var(--brand);
    background: rgba(33, 31, 32, 0.09);
}

.header-nav-link.active {
    color: var(--brand);
    background: rgba(33, 31, 32, 0.14);
}

.header-search-shell {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-search-toggle {
    border-radius: 12px;
    border-color: rgba(15, 23, 42, 0.2);
    color: #334155;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-search-toggle:hover,
.header-search-toggle:focus-visible,
.header-search-shell.is-open .header-search-toggle {
    transform: translateY(-1px);
    color: var(--brand);
    border-color: rgba(33, 31, 32, 0.34);
    background: rgba(33, 31, 32, 0.1);
}

.header-search-panel {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: calc(100% + 0.58rem);
    z-index: 25;
    width: clamp(320px, 48vw, 580px);
    border: 1px solid #d6dbe3;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
    padding: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.24s ease, visibility 0.24s ease;
}

.header-search-shell.is-open .header-search-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: headerSearchReveal 0.24s ease;
}

.header-search-field {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    background: #fff;
    padding: 0.4rem 0.52rem 0.4rem 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-field:focus-within {
    border-color: rgba(33, 31, 32, 0.4);
    box-shadow: 0 0 0 4px rgba(33, 31, 32, 0.12);
}

.header-search-field i {
    color: #64748b;
    font-size: 0.88rem;
}

.header-search-field input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    background: transparent;
    color: #0f172a;
}

.header-search-field input::placeholder {
    color: #94a3b8;
}

.header-search-clear {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.86);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}

.header-search-shell.has-value .header-search-clear {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.header-search-clear:hover,
.header-search-clear:focus-visible {
    color: #0f172a;
    background: #eceff4;
}

.header-search-panel-actions {
    display: flex;
    justify-content: flex-end;
}

.header-search-live {
    border-top: 1px dashed #d4d9e2;
    padding-top: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-height: min(58vh, 440px);
    overflow: auto;
}

.header-search-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.77rem;
    font-weight: 700;
}

.header-search-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #6b7280;
    box-shadow: 0 0 0 0 rgba(107, 114, 128, 0.45);
}

.header-search-shell.is-loading .header-search-status::before {
    background: #2f343e;
    animation: headerSearchPulse 1s ease-in-out infinite;
}

.header-search-grid {
    display: grid;
    gap: 0.6rem;
}

.header-search-group {
    border: 1px solid #d4dae3;
    border-radius: 14px;
    background: linear-gradient(180deg, #f6f7f9, #ffffff);
    padding: 0.5rem;
}

.header-search-group h6 {
    margin: 0 0 0.42rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #334155;
}

.header-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}

.header-search-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    border-radius: 999px;
    border: 1px solid #d3d8e1;
    background: #ffffff;
    color: #334155;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.header-search-category-link:hover,
.header-search-category-link:focus-visible {
    color: var(--brand);
    border-color: #a5acb8;
    background: #f1f3f7;
}

.header-search-category-link span {
    color: #64748b;
    font-size: 0.68rem;
}

.header-search-products {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.header-search-product-link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.32rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-search-product-link:hover,
.header-search-product-link:focus-visible {
    transform: translateX(-1px);
    border-color: #c7ced8;
    background: #f4f6f9;
}

.header-search-product-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #d2d7e0;
    background: #f5f6f8;
}

.header-search-product-meta {
    min-width: 0;
}

.header-search-product-meta strong {
    display: block;
    color: #0f172a;
    font-size: 0.79rem;
    line-height: 1.3;
}

.header-search-product-meta small {
    display: block;
    color: #64748b;
    font-size: 0.7rem;
    margin-top: 0.06rem;
}

.header-search-product-price {
    color: #1f232c;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.header-search-all-results {
    align-self: flex-start;
    font-weight: 700;
}

@keyframes headerSearchReveal {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.975);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes headerSearchPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(47, 52, 62, 0.45);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(47, 52, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(47, 52, 62, 0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 10px 18px rgba(33, 31, 32, 0.23);
}

.icon-only-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-props-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.84));
    border-color: #d9dee7;
}

.value-props-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.pill-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #d5e5f0;
    background: #ffffff;
    color: var(--brand);
    font-weight: 800;
    font-size: 0.8rem;
}

.mega-menu {
    width: min(1080px, 96vw);
    margin-top: 0.65rem;
    border: 1px solid #d6e2ec;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12) !important;
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.mega-group {
    border: 1px solid #d9e4ed;
    border-radius: 16px;
    background: #fff;
    padding: 0.7rem;
}

.mega-group-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding-bottom: 0.42rem;
    margin-bottom: 0.55rem;
    border-bottom: 1px dashed #dce7f0;
}

.mega-group-head h6 {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 800;
}

.mega-group-head small {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
}

.mega-group-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 31, 32, 0.1);
    color: var(--brand);
}

.mega-sub-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mega-parent-link {
    font-weight: 800;
    color: #1e293b;
    font-size: 0.84rem;
}

.mega-parent-link:hover {
    color: var(--brand);
}

.mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.mega-link-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8e5ef;
    background: #f9fbff;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    font-size: 0.76rem;
    color: #334155;
    font-weight: 700;
}

.mega-link-chip:hover {
    border-color: #acb3be;
    color: var(--brand);
    background: rgba(33, 31, 32, 0.08);
}

.mega-link-chip.is-more {
    color: var(--brand);
    border-color: #b4ddd8;
}

.mega-link {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.mega-link:hover {
    background: rgba(33, 31, 32, 0.08);
    border-color: #c7ced8;
    color: var(--brand);
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

.mobile-menu .list-group-item {
    border: none;
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
}

.mobile-menu .offcanvas-header {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mobile-menu-tabs .nav-link {
    border-radius: 11px;
    font-weight: 800;
    color: #334155;
    background: #eef4f8;
    border: 1px solid #d7e2ec;
}

.mobile-menu-tabs .nav-link.active {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
}

.mobile-search-field {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d5e2ed;
    background: #fff;
    border-radius: 12px;
    padding: 0.45rem 0.65rem;
}

.mobile-search-field input {
    border: 0;
    outline: none;
    width: 100%;
    background: transparent;
}

.mobile-search-field i {
    color: #64748b;
}

.mobile-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.mobile-quick-link {
    text-align: center;
    border: 1px solid #d5e2ed;
    border-radius: 12px;
    padding: 0.52rem 0.45rem;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.mobile-quick-link.active {
    border-color: #a9b0bc;
    color: var(--brand);
    background: rgba(33, 31, 32, 0.08);
}

.mobile-group-card {
    border: 1px solid #d6e3ed;
    border-radius: 14px;
    background: #fff;
    padding: 0.65rem;
}

.mobile-group-head {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.48rem;
}

.mobile-group-head i {
    color: var(--brand);
}

.mobile-group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.mobile-group-links a {
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid #d9e6ef;
    background: #f8fbff;
    border-radius: 999px;
    padding: 0.2rem 0.54rem;
}

.mobile-group-links a:hover {
    color: var(--brand);
    border-color: #a9d8d2;
}

.mobile-menu .list-group-item:hover {
    background: rgba(33, 31, 32, 0.08);
    color: var(--brand);
}

.hero-shell {
    background: radial-gradient(circle at 14% 20%, rgba(33, 31, 32, 0.12), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(143, 148, 159, 0.12), transparent 30%),
        #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    box-shadow: var(--shadow);
}

.hero-swiper {
    --swiper-pagination-bullet-size: 9px;
}

.hero-swiper .swiper-slide {
    border-radius: 20px;
    padding: 1.1rem;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.hero-swiper .slide-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    background: linear-gradient(120deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.38));
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(33, 31, 32, 0.12);
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-metric {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    background: #0f172a;
    color: #e2e8f0;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.mini-metric {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: 0 10px 30px rgba(33, 31, 32, 0.06);
}

.section-head {
    margin-bottom: 1.1rem;
}

.section {
    margin-top: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin: 0;
    font-weight: 800;
    font-size: 1.3rem;
}

.section-head h2 {
    margin: 0;
    font-weight: 800;
    font-size: 1.5rem;
}

.section-head .lead {
    color: var(--muted);
    margin: 0.15rem 0 0;
}

.results-meta {
    border-inline-start: 3px solid rgba(33, 31, 32, 0.35);
    padding-inline-start: 0.55rem;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.product-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #dbe5ef !important;
}

.product-thumb {
    position: relative;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.product-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.product-thumb .badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    border-radius: 999px;
}

.product-badges {
    position: absolute;
    inset-inline-start: 10px;
    inset-block-start: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.58rem;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.product-badge-sale {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

.product-badge-sku {
    background: #eef1f5;
    color: #2f343e;
    border-color: #ccd2db;
}

.product-stock-pill {
    position: absolute;
    inset-inline-end: 10px;
    inset-block-start: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    border: 1px solid transparent;
}

.product-stock-pill.is-instock {
    background: #eef0f3;
    color: #2f343e;
    border-color: #cdd2db;
}

.product-stock-pill.is-outstock {
    background: #f8fafc;
    color: #475569;
    border-color: #dbe3ef;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1 1 48%;
    min-height: 34px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: 0.65rem;
}

.price-current {
    color: var(--brand);
    font-weight: 800;
    font-size: 1.1rem;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.badge-soft {
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.badge-soft-success {
    background: #eef0f3;
    color: #2f343e;
    border-color: #ccd2db;
}

.badge-soft-danger {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecdd3;
}

.badge-soft-info {
    background: #eef0f3;
    color: #303642;
    border-color: #c8ced8;
}

.filter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    border: 1px dashed var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--muted);
    font-weight: 700;
}

.category-hero {
    background: linear-gradient(120deg, rgba(33, 31, 32, 0.12), rgba(143, 148, 159, 0.08));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}

.page-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem;
    line-height: 1.8;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.pager {
    margin-top: 1rem;
}

.pager .page-link {
    border-radius: 10px;
}

.pager .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}

.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% -8%, rgba(143, 148, 159, 0.2), transparent 34%),
        radial-gradient(circle at 82% 0%, rgba(67, 73, 84, 0.2), transparent 36%),
        linear-gradient(180deg, #090a0d 0%, #101219 50%, #0a0c12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before,
.footer::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.footer::before {
    width: 280px;
    height: 280px;
    inset-inline-start: -120px;
    inset-block-end: -120px;
    background: radial-gradient(circle, rgba(143, 148, 159, 0.24), transparent 68%);
}

.footer::after {
    width: 260px;
    height: 260px;
    inset-inline-end: -115px;
    inset-block-start: -120px;
    background: radial-gradient(circle, rgba(143, 148, 159, 0.22), transparent 70%);
}

.footer-shell {
    position: relative;
    isolation: isolate;
    background: linear-gradient(145deg, rgba(14, 16, 21, 0.92), rgba(8, 10, 14, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 26px;
    padding: clamp(0.9rem, 1.7vw, 1.25rem);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.36);
}

.footer-shell::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), transparent 30%);
    z-index: -1;
}

.footer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
}

.footer-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.96));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.footer-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.footer-brand strong {
    display: block;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.footer-brand small {
    color: #d2ddef;
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(67, 73, 84, 0.3);
    color: #e7ebf2;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0.14rem 0.5rem;
    margin-top: 0.2rem;
    width: fit-content;
}

.footer-brand-badge i {
    color: #f8fafc;
}

.footer-icon-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-icon-links a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.45);
    color: #e2e8f0;
    transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-icon-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(148, 163, 184, 0.6);
    background: rgba(67, 73, 84, 0.35);
    color: #fff;
}

.footer-grid {
    margin-bottom: 0.85rem;
}

.footer-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.68));
    backdrop-filter: blur(8px);
    padding: 0.9rem;
    height: 100%;
}

.footer-panel h6 {
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 800;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #d2ddef;
    font-size: 0.84rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(-1px);
}

.footer-group-title {
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.footer-group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
    margin-top: 0.26rem;
}

.footer-group-tags a {
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 999px;
    padding: 0.14rem 0.55rem;
    font-size: 0.72rem;
    background: rgba(15, 23, 42, 0.32);
    color: #e1e5ec;
}

.footer-group-tags a:hover {
    border-color: rgba(148, 163, 184, 0.6);
    background: rgba(67, 73, 84, 0.35);
    color: #ffffff;
}

.footer-bottombar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    padding-top: 0.7rem;
    color: #d2ddef;
    font-size: 0.8rem;
}

.footer-address {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-address i {
    color: #c4cad4;
}

.section-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1rem, 1.5vw, 1.4rem);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.04);
}

.home-section {
    padding: clamp(1.1rem, 1.9vw, 1.6rem);
}

.home-section .section-head {
    margin-bottom: clamp(1rem, 1.7vw, 1.35rem);
}

.home-section .section-head h2 {
    font-size: clamp(1.24rem, 1.8vw, 1.72rem);
}

.home-section .section-head .lead {
    font-size: clamp(0.86rem, 1.1vw, 1rem);
    line-height: 1.7;
    max-width: 58ch;
}

.hero-shell {
    position: relative;
    overflow: hidden;
}

.home-hero-shell {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 245, 248, 0.99));
    border-color: #d6dbe2;
    padding: clamp(1rem, 2.1vw, 1.8rem);
}

.home-hero-shell .row {
    --bs-gutter-x: clamp(0.95rem, 1.8vw, 1.4rem);
    --bs-gutter-y: clamp(0.95rem, 1.6vw, 1.2rem);
}

.home-hero-shell::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(33, 31, 32, 0.12), transparent 70%);
    inset-inline-start: -95px;
    inset-block-start: -95px;
    pointer-events: none;
}

.hero-shell::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(143, 148, 159, 0.2), transparent 70%);
    inset-inline-end: -110px;
    inset-block-end: -120px;
    pointer-events: none;
}

.hero-shell-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 1.05rem;
}

.hero-shell-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    background: rgba(33, 31, 32, 0.1);
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.22rem 0.72rem;
    margin-bottom: 0.38rem;
}

.hero-shell-intro {
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-shell-note {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid #d4d8e0;
    background: linear-gradient(120deg, #f7f8fa, #eef0f4);
    color: #2f3440;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 0.34rem 0.75rem;
    white-space: nowrap;
}

.hero-shell-note i {
    color: #565b68;
}

.hero-slide {
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.14);
    border-radius: 22px;
}

.hero-slide-media {
    display: flex;
    align-items: flex-end;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active .hero-slide-image,
.hero-swiper .swiper-slide.is-current .hero-slide-image {
    transform: scale(1.08);
}

.hero-slide-products {
    background: linear-gradient(135deg, #f4f5f7 0%, #eaedf2 50%, #e4e8ef 100%);
}

.hero-slide-shipping {
    background: linear-gradient(135deg, #f7f7f8 0%, #eceff4 52%, #e8ebf0 100%);
}

.hero-slide-branches {
    background: linear-gradient(135deg, #f2f4f8 0%, #e8ebf1 48%, #e1e5ee 100%);
}

.hero-slide-offers {
    background: linear-gradient(135deg, #f5f6f8 0%, #e8ecf2 50%, #e2e6ed 100%);
}

.hero-swiper .swiper-slide {
    min-height: 360px;
    padding: clamp(1.02rem, 1.9vw, 1.45rem);
}

.hero-swiper .slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 540px;
    padding: 0.2rem 0.2rem 0.32rem;
}

.hero-swiper .slide-overlay {
    opacity: 1;
    background: linear-gradient(122deg, rgba(2, 6, 23, 0.84) 0%, rgba(2, 6, 23, 0.35) 72%);
}

.hero-swiper .swiper-slide h1,
.hero-swiper .swiper-slide h2 {
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    line-height: 1.35;
}

.hero-description {
    color: rgba(226, 232, 240, 0.94);
    font-size: 0.95rem;
    max-width: 43ch;
}

.hero-slide-metrics {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.hero-slide-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #f8fafc;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.24rem 0.62rem;
    backdrop-filter: blur(4px);
}

.hero-slide .hero-tag {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-swiper.is-ready .swiper-slide .slide-content > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.hero-swiper.is-ready .swiper-slide .slide-content > :nth-child(1) {
    transition-delay: 0.05s;
}

.hero-swiper.is-ready .swiper-slide .slide-content > :nth-child(2) {
    transition-delay: 0.12s;
}

.hero-swiper.is-ready .swiper-slide .slide-content > :nth-child(3) {
    transition-delay: 0.18s;
}

.hero-swiper.is-ready .swiper-slide .slide-content > :nth-child(4) {
    transition-delay: 0.24s;
}

.hero-swiper.is-ready .swiper-slide .slide-content > :nth-child(5) {
    transition-delay: 0.3s;
}

.hero-swiper.is-ready .swiper-slide.is-current .slide-content > *,
.hero-swiper.is-ready .swiper-slide.swiper-slide-active .slide-content > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-swiper-controls {
    position: relative;
    z-index: 2;
}

.hero-swiper-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-swiper .swiper-pagination {
    width: auto;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(15, 23, 42, 0.25);
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--brand);
    width: 24px;
    border-radius: 999px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    position: static;
    width: 36px;
    height: 36px;
    margin: 0;
    color: var(--brand);
    border-color: #d2d8e1 !important;
    background: #fff;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 12px;
    font-weight: 900;
}

.hero-progress {
    width: 96px;
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.16);
}

.hero-progress-value {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1f1d1e 0%, #656a77 100%);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.12s linear;
}

.hero-swiper-index {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    border-radius: 999px;
    border: 1px solid #d8e5ef;
    background: #fff;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.18rem 0.5rem;
}

.hero-side-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
    height: 100%;
}

.hero-side-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #d7e5ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    padding: 0.85rem 0.95rem;
}

.hero-side-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(143, 148, 159, 0.16), transparent 72%);
    inset-inline-end: -58px;
    inset-block-end: -70px;
    pointer-events: none;
}

.hero-side-label {
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.hero-side-card-overview {
    background: linear-gradient(140deg, #f7f8fa 0%, #eef1f5 50%, #f4f6fa 100%);
}

.hero-side-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.hero-side-stats div {
    border: 1px solid #d9e8f2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.46rem 0.4rem;
    text-align: center;
}

.hero-side-stats strong {
    display: block;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-side-stats span {
    color: #4b5563;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-side-head h3 {
    color: #0f172a;
}

.hero-side-head p {
    color: #64748b;
    font-size: 0.82rem;
}

.hero-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
    margin-top: 0.6rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border-radius: 999px;
    border: 1px solid #d9e6ef;
    background: #f8fbff;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.24rem 0.62rem;
}

.hero-chip:hover {
    border-color: #a8aeb9;
    color: var(--brand);
    transform: translateY(-1px);
}

.hero-chip i {
    color: var(--brand);
}

.hero-side-card-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
}

.hero-side-card-cta h3 {
    color: #0f172a;
}

.hero-side-card-cta p {
    color: #64748b;
    font-size: 0.82rem;
}

.category-swiper {
    padding-bottom: 1.2rem;
}

.category-swiper .swiper-slide {
    height: auto;
}

.category-swiper .swiper-pagination-bullet {
    background: rgba(15, 23, 42, 0.2);
}

.category-swiper .swiper-pagination-bullet-active {
    background: var(--brand);
}

.subcategory-swiper-shell {
    position: relative;
}

.subcategory-swiper {
    padding: 0.2rem 0.15rem 1.35rem;
    margin-inline: -0.15rem;
}

.subcategory-swiper .swiper-slide {
    height: auto;
}

.subcategory-swiper .swiper-pagination {
    inset-block-end: 0 !important;
}

.subcategory-swiper .swiper-pagination-bullet {
    background: rgba(15, 23, 42, 0.24);
}

.subcategory-swiper .swiper-pagination-bullet-active {
    background: var(--brand);
}

.subcategory-card {
    border-radius: 20px;
}

.subcategory-parent-chip {
    position: absolute;
    inset-inline-end: 0.72rem;
    inset-block-start: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(2, 6, 23, 0.58);
    color: #f8fafc;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.subcategory-swiper-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-top: 0.38rem;
}

.subcategory-swiper-actions .swiper-button-prev,
.subcategory-swiper-actions .swiper-button-next {
    position: static;
    width: 38px;
    height: 38px;
    margin: 0;
    color: #0f172a;
    border-color: #d6e2ec;
    background: #fff;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.subcategory-swiper-actions .swiper-button-prev::after,
.subcategory-swiper-actions .swiper-button-next::after {
    font-size: 0.9rem;
    font-weight: 700;
}

.subcategory-swiper-actions .swiper-button-disabled {
    opacity: 0.45;
}

.category-slide-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    min-height: 210px;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.category-slide-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-slide-card:hover img {
    transform: scale(1.05);
}

.category-slide-overlay {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    padding: 0.95rem 0.9rem;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.75) 75%);
    color: #f8fafc;
}

.category-slide-overlay h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.category-slide-overlay span {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.section-head-split {
    gap: 0.9rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    background: rgba(33, 31, 32, 0.08);
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.45rem;
}

.main-groups-section {
    position: relative;
    overflow: hidden;
}

.main-groups-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(33, 31, 32, 0.1), transparent 70%);
    inset-inline-end: -150px;
    inset-block-start: -150px;
    pointer-events: none;
}

.main-group-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.main-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.14);
}

.home-main-group-card {
    border: 0;
    border-radius: 24px;
    min-height: clamp(280px, 31vw, 362px);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.18);
}

.main-group-media {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.main-group-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.home-main-group-media {
    border-bottom: 0;
}

.home-main-group-cover {
    position: relative;
    display: block;
    min-height: inherit;
    height: 100%;
    overflow: hidden;
}

.home-main-group-cover img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.52s ease, filter 0.35s ease;
}

.home-main-group-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.72) 66%, rgba(2, 6, 23, 0.9) 100%),
        linear-gradient(120deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.2));
    z-index: 1;
}

.home-main-group-card:hover .home-main-group-cover img {
    transform: scale(1.08);
    filter: saturate(1.04);
}

.main-group-media-layer {
    position: absolute;
    inset-inline: 0;
    inset-block-start: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.72rem;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.5), transparent 70%);
    pointer-events: none;
}

.home-main-group-card .main-group-media-layer {
    z-index: 3;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.68), transparent 72%);
}

.main-group-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #f8fafc;
}

.home-main-group-count {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.56);
    color: #ffffff;
    font-size: 0.71rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.3rem 0.62rem;
    backdrop-filter: blur(3px);
}

.home-main-group-copy {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    z-index: 3;
    padding: clamp(0.85rem, 1.8vw, 1.1rem);
    color: #ffffff;
}

.home-main-group-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(148, 163, 184, 0.2);
    color: #f8fafc;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.2rem 0.56rem;
    margin-bottom: 0.45rem;
}

.home-main-group-copy h3 {
    margin: 0;
    font-size: clamp(1.18rem, 1.7vw, 1.38rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.home-main-group-copy p {
    margin: 0.44rem 0 0;
    color: rgba(226, 232, 240, 0.94);
    font-size: 0.82rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 34ch;
}

.home-main-group-meta {
    margin-top: 0.56rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.home-main-group-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.26rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(15, 23, 42, 0.5);
    color: #f8fafc;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.56rem;
    backdrop-filter: blur(3px);
}

.home-main-group-cta {
    margin-top: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
}

.home-main-group-cta i {
    transition: transform 0.24s ease;
}

.home-main-group-card:hover .home-main-group-cta i {
    transform: translateX(-2px);
}

.main-group-body {
    padding: 0.85rem 0.95rem;
    position: relative;
    z-index: 2;
}

.home-main-group-card .main-group-body {
    display: flex;
    flex-direction: column;
}

.main-group-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #d8e5ef;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

.main-group-desc {
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.main-group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.main-group-tags a {
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #d5e3ed;
    border-radius: 999px;
    padding: 0.18rem 0.56rem;
    background: #f8fbff;
    color: #334155;
}

.main-group-tags a:hover {
    color: var(--brand);
    border-color: #a8aeb9;
}

.main-group-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.main-group-actions .btn {
    flex: 1 1 46%;
}

.home-main-group-card .main-group-actions {
    margin-top: auto;
}

.home-section .category-card-media img {
    height: clamp(185px, 20.4vw, 226px);
}

.home-section .product-thumb img {
    height: clamp(212px, 21.5vw, 252px);
}

.mini-metric {
    position: relative;
    overflow: hidden;
}

.mini-metric::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(33, 31, 32, 0.08), transparent 72%);
    inset-inline-end: -45px;
    inset-block-end: -70px;
    pointer-events: none;
}

.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 35px rgba(15, 23, 42, 0.13);
}

.product-thumb {
    overflow: hidden;
}

.product-thumb img {
    transition: transform 0.35s ease;
    height: 245px;
}

.product-card:hover .product-thumb img {
    transform: scale(1.06);
}

.product-state-badge {
    inset-inline-end: 12px;
    top: 12px;
}

.product-title {
    font-size: 0.96rem;
    line-height: 1.5;
    min-height: 46px;
}

.product-teaser {
    color: #64748b;
    font-size: 0.84rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 20px;
}

.product-card .card-body {
    gap: 0.1rem;
}

.product-sku {
    font-size: 0.7rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.product-category-badge {
    font-weight: 700;
    font-size: 0.7rem;
}

.category-card {
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.1);
}

.category-card-overlay {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.category-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.category-card-layer {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.78rem;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.82) 75%);
    color: #f8fafc;
}

.category-card-layer h5,
.category-card-layer h2 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
}

.category-card-layer span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.76rem;
    color: #cbd5e1;
}

.category-card-layer i {
    font-size: 1.22rem;
    opacity: 0.96;
}

.category-card-overlay:hover .category-card-media img {
    transform: scale(1.06);
}

.category-hero-clean {
    background: linear-gradient(130deg, rgba(33, 31, 32, 0.12), rgba(143, 148, 159, 0.11));
}

.category-hero-image {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.category-hero-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.product-gallery-card {
    border: 1px solid var(--border);
}

.product-main-image-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.product-main-image {
    max-height: 480px;
    object-fit: cover;
}

.product-thumb-mini {
    height: 90px;
    object-fit: cover;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
    background: #f8fafc;
}

.product-image-thumb-btn {
    border: 0;
    background: transparent;
    padding: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.product-image-thumb-btn.is-active img {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 2px rgba(33, 31, 32, 0.15);
}

.product-summary-card {
    border: 1px solid #d8e5ef;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.product-summary-badges .badge-soft,
.product-summary-badges .badge {
    font-size: 0.75rem;
}

.product-selling-line {
    color: #475569;
    font-size: 0.94rem;
}

.product-feature-pills .feature-pill {
    background: #fff;
}

.quick-order-card {
    border: 1px solid #d7e4ee;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.quick-order-note {
    color: #64748b;
    font-size: 0.8rem;
}

.product-tabs {
    gap: 0.5rem;
}

.product-tabs .nav-link {
    border-radius: 11px;
    border: 1px solid #d7e4ee;
    background: #f7fafc;
    color: #334155;
    font-weight: 800;
    font-size: 0.83rem;
    padding: 0.45rem 0.75rem;
}

.product-tabs .nav-link.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.product-tabs-content {
    border: 1px solid #d7e4ee;
    border-radius: 16px;
    background: #fff;
    padding: 0.9rem;
}

.tab-info-card {
    border: 1px solid #dbe6ef;
    border-radius: 14px;
    background: #f8fbff;
    padding: 0.8rem;
}

.tab-info-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1rem;
    font-weight: 800;
}

.tab-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.tab-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: #334155;
    font-size: 0.88rem;
}

.tab-feature-list i {
    color: var(--brand);
    margin-top: 0.1rem;
}

.tab-kv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px dashed #d6e3ed;
    padding-bottom: 0.35rem;
}

.tab-kv-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.material-card {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    border: 1px solid #d7e4ee;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.62rem 0.72rem;
    color: #334155;
    font-size: 0.86rem;
}

.material-card i {
    color: var(--brand);
    margin-top: 0.06rem;
}

.size-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.size-chip {
    border: 1px solid #d7e4ee;
    background: #f8fbff;
    border-radius: 10px;
    min-width: 48px;
    text-align: center;
    padding: 0.36rem 0.68rem;
    font-weight: 800;
    color: #1f2937;
}

.product-media-grid img {
    height: 170px;
    object-fit: cover;
}

.product-video-frame {
    border: 1px solid #d7e4ee;
    border-radius: 14px;
    overflow: hidden;
    background: #020617;
}

.page-content-clean {
    background: linear-gradient(180deg, #fff 0%, #fdfefe 100%);
}

.page-content-clean h1,
.page-content-clean h2,
.page-content-clean h3,
.page-content-clean h4 {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
}

.page-content-clean p {
    color: #334155;
}

.about-us-shell {
    background: radial-gradient(circle at 86% 12%, rgba(143, 148, 159, 0.16), transparent 38%),
        radial-gradient(circle at 12% 88%, rgba(33, 31, 32, 0.14), transparent 40%),
        linear-gradient(130deg, #ffffff, #f4f6f9 62%, #eceff4 100%);
    border: 1px solid #dbe8f2;
}

.about-us-hero {
    display: grid;
    grid-template-columns: 1.35fr minmax(0, 1fr);
    gap: 1.15rem;
    align-items: center;
}

.about-us-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(33, 31, 32, 0.24);
    background: rgba(33, 31, 32, 0.08);
    color: #1f232b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.6rem;
}

.about-us-title {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #0f172a;
}

.about-us-lead {
    color: #475569;
    max-width: 62ch;
}

.about-us-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.about-us-stats > div {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #dce8f3;
    border-radius: 14px;
    padding: 0.7rem 0.6rem;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.about-us-stats strong {
    display: block;
    font-size: 1.08rem;
    color: #0f172a;
}

.about-us-stats span {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 700;
}

.about-us-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    grid-column: 1 / -1;
}

.about-us-branches {
    border: 1px solid #e2e8f0;
}

.about-branch-card {
    background: #fff;
    border: 1px solid #dce7f1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.about-branch-head {
    padding: 0.8rem 0.85rem 0.7rem;
}

.about-branch-map {
    position: relative;
    padding-top: 60%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.about-branch-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-branch-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.72rem 0.85rem 0.84rem;
}

.about-us-contact {
    border: 1px solid #dce8f3;
    background: linear-gradient(130deg, #ffffff, #f9fbff);
}

.about-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-team-quote {
    margin-top: 0.85rem;
    border-radius: 12px;
    border: 1px dashed rgba(67, 73, 84, 0.34);
    background: rgba(67, 73, 84, 0.08);
    color: #232831;
    font-weight: 800;
    text-align: center;
    padding: 0.58rem 0.7rem;
}

.breadcrumb-clean {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.55rem 0.85rem;
}

.breadcrumb-clean .breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

.breadcrumb-clean a {
    color: #475467;
}

.breadcrumb-clean .breadcrumb-item.active {
    color: #0f172a;
}

@media (max-width: 991.98px) {
    .header-main-shell {
        gap: 0.65rem;
        padding: 0.62rem 0.72rem;
        border-radius: 18px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .header-actions {
        margin-inline-start: auto;
    }

    .header-whatsapp {
        padding-inline: 0.68rem;
    }

    .value-props-track {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: thin;
    }

    .pill-highlight {
        white-space: nowrap;
        font-size: 0.75rem;
    }

    .hero-shell-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-shell-note {
        white-space: normal;
    }

    .about-us-hero {
        grid-template-columns: 1fr;
    }

    .about-us-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-us-actions {
        justify-content: flex-start;
    }

    .section-head-split {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .home-section {
        padding: 1.05rem;
    }

    .hero-swiper-controls {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .hero-swiper-meta {
        width: 100%;
        justify-content: space-between;
    }

    .hero-progress {
        width: min(42vw, 136px);
    }

    .hero-swiper .swiper-slide {
        min-height: 320px;
    }

    .hero-side-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-slide-card img {
        height: 200px;
    }

    .category-hero-image img {
        height: 170px;
    }

    .category-card-layer {
        padding: 0.64rem;
    }

    .category-card-layer h5,
    .category-card-layer h2 {
        font-size: 0.9rem;
    }

    .product-tabs {
        gap: 0.35rem;
    }

    .product-tabs .nav-link {
        font-size: 0.78rem;
        padding: 0.4rem 0.62rem;
    }

    .product-media-grid img {
        height: 150px;
    }

    .main-group-media img {
        height: 185px;
    }

    .home-main-group-cover img {
        height: 100%;
        min-height: inherit;
    }

    .home-main-group-card {
        min-height: 300px;
    }

    .home-main-group-copy p {
        max-width: 100%;
    }

    .home-section .category-card-media img {
        height: 206px;
    }

    .subcategory-swiper-actions {
        justify-content: flex-start;
    }

    .home-section .product-thumb img {
        height: 230px;
    }

    .footer-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .header-main {
        padding-top: 0.42rem;
    }

    .header-main-shell {
        gap: 0.5rem;
        padding: 0.48rem 0.54rem;
    }

    .header-utility {
        max-height: 50px;
    }

    .header-utility-row {
        gap: 0.3rem;
        padding-block: 0.34rem;
    }

    .utility-dot,
    .utility-icon-link {
        width: 28px;
        height: 28px;
    }

    .header-menu-btn {
        width: 36px;
        height: 36px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-copy small {
        display: none;
    }

    .header-actions .btn {
        font-size: 0.74rem;
    }

    .value-props-track {
        gap: 0.5rem;
    }

    .pill-highlight {
        font-size: 0.71rem;
        padding: 0.28rem 0.6rem;
    }

    .product-thumb img {
        height: 200px;
    }

    .category-card-media img {
        height: 200px;
    }

    .product-teaser {
        font-size: 0.79rem;
    }

    .product-stock-pill,
    .product-badge {
        font-size: 0.64rem;
    }

    .product-tabs-content {
        padding: 0.7rem;
    }

    .material-card {
        font-size: 0.81rem;
    }

    .product-media-grid img {
        height: 130px;
    }

    .hero-shell {
        padding: 1rem;
    }

    .hero-shell-intro {
        font-size: 0.86rem;
    }

    .about-us-title {
        font-size: 1.35rem;
    }

    .about-us-stats {
        grid-template-columns: 1fr;
    }

    .about-us-actions .btn {
        flex: 1 1 100%;
    }

    .about-branch-actions .btn {
        flex: 1 1 100%;
    }

    .about-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-contact-actions {
        width: 100%;
    }

    .about-contact-actions .btn {
        flex: 1 1 100%;
    }

    .home-section .section-head {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.55rem;
    }

    .home-section .section-head h2 {
        font-size: 1.22rem;
    }

    .home-section .section-head .lead {
        font-size: 0.84rem;
    }

    .hero-swiper-controls {
        flex-direction: column;
        align-items: stretch !important;
    }

    .hero-swiper-meta {
        width: 100%;
        justify-content: space-between;
        gap: 0.45rem;
    }

    .hero-progress {
        flex: 1;
        max-width: none;
    }

    .hero-swiper .swiper-slide {
        min-height: 292px;
        padding: 1rem;
    }

    .hero-description {
        font-size: 0.87rem;
    }

    .hero-slide-metrics span {
        font-size: 0.68rem;
    }

    .hero-side-stats {
        grid-template-columns: 1fr;
    }

    .hero-chip {
        font-size: 0.72rem;
    }

    .section-block {
        padding: 0.95rem;
    }

    .main-group-media img {
        height: 165px;
    }

    .home-main-group-cover img {
        height: 100%;
        min-height: inherit;
    }

    .home-main-group-card {
        min-height: 252px;
    }

    .home-main-group-copy {
        padding: 0.75rem;
    }

    .home-main-group-copy p {
        font-size: 0.78rem;
    }

    .home-main-group-meta span {
        font-size: 0.66rem;
    }

    .home-section .category-card-media img {
        height: 186px;
    }

    .subcategory-swiper-actions {
        justify-content: center;
    }

    .subcategory-swiper-actions .swiper-button-prev,
    .subcategory-swiper-actions .swiper-button-next {
        width: 34px;
        height: 34px;
    }

    .home-section .product-thumb img {
        height: 212px;
    }

    .main-group-meta {
        font-size: 0.68rem;
        padding: 0.15rem 0.46rem;
    }

    .main-group-actions .btn {
        flex: 1 1 100%;
    }

    .footer-shell {
        border-radius: 16px;
        padding: 0.75rem;
    }

    .footer-bottombar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-main-shell {
        gap: 0.75rem;
    }

    .header-search-panel {
        width: min(540px, 60vw);
    }

    .header-actions .btn {
        white-space: nowrap;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-nav-link {
        padding-inline: 0.64rem;
    }

    .header-search-panel {
        width: min(470px, 42vw);
    }

    .mega-menu-grid {
        gap: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
