body {
    background: var(--apt-page-bg);
}

.container {
    padding-inline: 5px;
}

a {
    color: inherit;
}

.btn-primary,
.btn-outline-primary {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--apt-primary);
    border-color: var(--apt-primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background: #01044f;
    border-color: #01044f;
    color: #fff;
    box-shadow: none;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--apt-primary);
    color: var(--apt-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    background: var(--apt-primary);
    border-color: var(--apt-primary);
    color: #fff;
    box-shadow: none;
}

.hero-shell {
    padding: 8px 0 10px;
}

.hero-slider,
.category-strip,
.brand-strip {
    display: grid;
    gap: 18px;
}

.hero-slide,
.promo-tile {
    display: block;
    overflow: hidden;
    border-radius: var(--apt-radius);
    box-shadow: 0 20px 60px rgba(31, 42, 55, 0.08);
}

.hero-slide img,
.promo-tile img {
    width: 100%;
    display: block;
}

.slider-active {
    opacity: 0;
}

.slider-active.is-initialized {
    opacity: 1;
}

.slider__inner {
    position: relative;
}

.slider__inner .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 3;
}

.slider__inner .slick-dots li {
    margin: 0;
}

.slider__inner .slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.45);
    font-size: 0;
    padding: 0;
}

.slider__inner .slick-dots .slick-active button {
    background: var(--apt-primary);
    border-color: var(--apt-primary);
}

.slider__area .single-slider picture.hero-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 1;
}

.slider__area .single-slider picture.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-features {
    padding: 22px 0 8px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.feature-card i {
    font-size: 20px;
    color: var(--apt-primary);
    flex: 0 0 auto;
}

.feature-card-text {
    color: var(--apt-primary);
    font-size: 13px;
    line-height: 1.35;
    display: inline-block;
}

.apt-mobile-categories-page {
    padding: 22px 0 34px;
}

.apt-mobile-categories-head {
    margin-bottom: 18px;
}

.apt-mobile-categories-head h1 {
    margin: 0;
    font-size: 28px;
    color: #172030;
}

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

.apt-mobile-category-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(31, 42, 55, 0.07);
}

.apt-mobile-category-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
    overflow: hidden;
}

.apt-mobile-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.apt-mobile-category-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #1d2735;
}

.apt-mobile-category-card__count {
    font-size: 12px;
    color: #677384;
}

.category-strip,
.brand-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(100px, 1fr);
    overflow-x: auto;
    padding-bottom: 8px;
}

.category-pill,
.brand-chip {
    text-align: center;
}

.category-pill-image {
    display: block;
    height: 70px;
    margin-bottom: 12px;
}

.category-pill-image img,
.brand-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-pill-text {
    font-size: 14px;
    color: #202734;
    font-weight: 200;
}
a.category-pill{
    text-decoration: none;
}

.categoryIcons__area {
    padding: 20px 0 0;
}

.categoryIcons__item {
    text-align: center;
}

.categoryIcons__item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.categoryIcons__imgWrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.categoryIcons__imgWrapper::after {
    content: "";
    position: absolute;
    bottom: -.2rem;
    left: 45%;
    width: 60%;
    height: .2rem;
    border-radius: 50%;
    background-color: #00000073;
    filter: blur(3px);
    transform: translateX(-50%);
    pointer-events: none;
    opacity: .5;
}

.categoryIcons__item:hover .categoryIcons__imgWrapper::after {
    opacity: 0.8;
}

.categoryIcons__item:hover img {
    transform: translateY(-8px);
}

.categoryIcons__item img {
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.categoryIcons-title {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 12px;
    color: #333;
    line-height: 16px;
}

.brand__area {
    padding: 20px 0 0;
}

.brand__slider.white-bg {
    padding: 8px 0;
}

.brand__slider .slick-track {
    display: flex;
    align-items: center;
}

.brand__slider .slick-slide {
    height: auto;
}

.brand__slider .slick-slide > div {
    height: 100%;
}
.brand__item{
    background: white;
    border: 1px solid #e7e7e7;
    margin: 5px;
}
.brand__item img{
    padding: 5px;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
    gap: 18px;
}

.promo-tile {
    position: relative;
}

.promo-tile span {
    position: absolute;
    inset-inline-start: 18px;
    inset-block-end: 18px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--apt-radius);
    font-weight: 700;
}

.brand-surface {
    background: rgba(244, 247, 255, 0.92);
    border-radius: var(--apt-radius);
    padding-top: 28px;
    padding-bottom: 28px;
}

.hero-card,
.tile-card,
.product-card,
.store-card,
.catalog-sidebar,
.totals-box,
.account-panel,
.empty-state {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(195, 127, 45, 0.12);
    border-radius: var(--apt-radius);
    box-shadow: 0 20px 60px rgba(31, 42, 55, 0.06);
}

.hero-card img,
.product-image-link img,
.product-main-image {
    width: 100%;
    display: block;
    border-radius: var(--apt-radius);
}

.section-block {
    padding: 22px 0 34px;
}

.section__head {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(2, 6, 110, 0.12);
    position: relative;
    margin-bottom: 28px;
}

.section__head::after {
    position: absolute;
    content: "";
    bottom: -1px;
    inset-inline-start: 0;
    height: 2px;
    width: 56px;
    background: var(--apt-primary);
}

.section__title h3 {
    margin: 0;
    color: var(--apt-primary);
    font-size: 24px;
    font-weight: 700;
}

.section-heading,
.page-headline {
    text-align: center;
    margin-bottom: 18px;
}

.home-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    text-align: start;
}

.home-section-heading::before,
.home-section-heading::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
}

.home-section-heading::before {
    background: linear-gradient(90deg, rgba(2, 6, 110, 0), rgba(2, 6, 110, 0.24));
}

.home-section-heading::after {
    background: linear-gradient(90deg, rgba(2, 6, 110, 0.24), rgba(2, 6, 110, 0));
}

html[dir="rtl"] .home-section-heading::before,
html[dir="rtl"] .home-section-heading::after {
    background: none;
}

html[dir="rtl"] .home-section-heading::before {
    background: linear-gradient(90deg, rgba(2, 6, 110, 0.24), rgba(2, 6, 110, 0));
}

html[dir="rtl"] .home-section-heading::after {
    background: linear-gradient(90deg, rgba(2, 6, 110, 0), rgba(2, 6, 110, 0.24));
}

.home-section-heading h3 {
    margin: 0;
    padding: 10px 18px;
    color: var(--apt-dark-gray);
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.home-section-heading a {
    color: var(--apt-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.home-section-heading a:hover {
    color: var(--apt-primary);
}

.tile-grid,
.product-grid,
.store-grid {
    display: grid;
    gap: 18px;
}

.tile-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product__electronic-3 .owl-stage {
    display: flex;
}

.product__electronic-3 .owl-item {
    display: flex;
    height: auto;
}

.product__electronic-3 .owl-item .product-card {
    width: 100%;
}

.t-nav .owl-nav {
    position: absolute;
    inset-block-start: 50%;
    inset-inline: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.t-nav .owl-nav .owl-prev,
.t-nav .owl-nav .owl-next {
    position: absolute;
    pointer-events: auto;
}

.t-nav .owl-nav .owl-prev {
    inset-inline-start: -18px;
}

.t-nav .owl-nav .owl-next {
    inset-inline-end: -18px;
}

.t-nav .owl-nav div button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #5f6675;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    border: none;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.6;
}

.t-nav .owl-nav div button:hover {
    color: #3f4654;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0.9;
    transform: scale(1.04);
}

.store-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tile-card,
.store-card,
.totals-box,
.account-panel,
.empty-state {
    padding: 20px;
}

.catalog-layout,
.checkout-grid,
.product-layout,
.footer-grid {
    display: grid;
    gap: 24px;
}

.catalog-layout {
    grid-template-columns: 300px 1fr;
}

.product__electronic-item {
    height: 100%;
}

.product-card {
    position: relative;
    padding: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 0 20px 0 rgba(155, 166, 200, 0.2);
}

.product__thumb {
    position: relative;
}

.product-image-link {
    display: block;
}

.productCardImg {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

.product__offer {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.product__offer .discount,
.product__offer .express,
.product__offer .out-of-stock {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 4px;
}

.product__offer .discount {
    background: var(--apt-red);
    color: #fff;
}

.product__offer .express {
    background: rgba(2, 6, 110, 0.92);
    color: #fff;
}

.product__offer .out-of-stock {
    background: rgba(180, 35, 24, 0.92);
    color: #fff;
}

.product__action {
    position: absolute;
    z-index: 3;
}

.product__action--wishlist {
    top: 10px;
    inset-inline-end: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.product__action--cart {
    bottom: 10px;
    inset-inline-end: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 1px solid var(--apt-light-gray);
}

.product__action > a {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    
    text-align: center;
    font-size: 28px;
    color: #222;
    text-decoration: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.5;
    z-index: 3;
}

.product__action > a:hover {
    opacity: 0.92;
    background: rgba(255, 255, 255, 1);
}

.product-action-btn {
    border: 0;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    text-align: center;
    font-size: 28px;
    color: #222;
    text-decoration: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
    opacity: 0.5;
    z-index: 3;
}

.product-action-btn:hover,
.product-action-btn.is-active {
    opacity: 0.92;
    background: rgba(255, 255, 255, 1);
}

.product-action-btn.is-active {
    color: #d12f43;
}

.product-action-btn:focus,
.product-action-btn:focus-visible,
.product-action-btn:active {
    outline: none;
    box-shadow: none;
}

.product-action-btn[disabled] {
    cursor: wait;
}

.product-card-body {
    padding: 8px 10px 12px;
}

.product__content h6 {
    padding-top: 8px;
    font-size: 13px;
    font-weight: 300;
    color: var(--apt-primary);
    line-height: 18px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

.product__content h6 a {
    color: inherit;
    text-decoration: none;
}

.product__content h6:hover a {
    text-decoration: none;
}

.product__price-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.product__price-stack--sale {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.product__price-stack .price-old {
    font-size: 13px;
    font-weight: 300;
    color: #a9a9a9;
    line-height: 1.2;
    min-height: 16px;
}

.product__price-stack .price-current {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 1.2;
}

.product__price-stack--sale .price-old {
    min-height: 0;
    order: 2;
}

.product__price-stack--sale .price-current {
    order: 1;
}

.product__price-stack .price-old .price-with-symbol {
    text-decoration: line-through;
}

.price-with-symbol {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-with-symbol .icon-riyal {
    font-size: 14px;
    line-height: 1;
}

.product__price-stack .price-old .icon-riyal {
    font-size: 13px;
}

.product__price-stack .price-current .icon-riyal {
    color: var(--apt-primary);
}

.price-with-symbol .price-amount {
    direction: ltr;
    unicode-bidi: isolate;
}

.product__price-spacer {
    text-decoration: none;
}

.checkout-grid,
.product-layout {
    grid-template-columns: 1fr 360px;
}

.catalog-sidebar form,
.auth-form,
.checkout-form,
.add-to-cart-form {
    display: grid;
    gap: 12px;
}

.price-row,
.action-row,
.hero-actions,
.gallery-strip {
    display: flex;
    gap: 12px;
}

.gallery-strip img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--apt-radius);
}

.table {
    background: #fff;
}

.flash {
    padding: 14px 16px;
    border-radius: var(--apt-radius);
    margin-bottom: 16px;
}

.flash-success {
    background: #e8f6ee;
    color: #135c3d;
}

.flash-error {
    background: #fdecec;
    color: #902b2b;
}

.site-footer {
    padding: 40px 0;
    background: #1f2a37;
    color: #f8f5ee;
}

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

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.narrow-shell {
    max-width: 960px;
}

.page-hero {
    padding: 46px 0;
    background: linear-gradient(120deg, rgba(31, 42, 55, 0.94), rgba(2, 6, 110, 0.88));
    color: #fff;
}

.page-hero-store {
    background: linear-gradient(120deg, rgba(31, 42, 55, 0.92), rgba(89, 101, 112, 0.82));
}

.page-hero-copy {
    max-width: 720px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.75rem);
    margin: 0;
}

.page-hero p {
    margin: 0 0 12px;
}

.content-card,
.contact-box-card,
.form-card,
.store-entry,
.about-stat,
.logo-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(195, 127, 45, 0.12);
    border-radius: var(--apt-radius);
    box-shadow: 0 20px 60px rgba(31, 42, 55, 0.06);
}

.content-card,
.contact-box-card,
.form-card,
.about-stat,
.logo-card {
    padding: 24px;
}

.content-split,
.vision-grid,
.contact-grid,
.store-entry,
.about-stats,
.logo-grid {
    display: grid;
    gap: 24px;
}

.content-split,
.vision-grid,
.contact-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-stats {
    grid-template-columns: repeat(4, 1fr);
}

.about-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--apt-primary);
}

.underlined-accent {
    width: 72px;
    height: 4px;
    border-radius: var(--apt-radius);
    background: var(--apt-primary);
    margin: 12px 0 18px;
}

.logo-grid {
    grid-template-columns: repeat(4, 1fr);
}

.logo-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.contact-box-card h3,
.form-card h2,
.store-body h2 {
    margin-bottom: 12px;
}

.contact-list,
.store-body {
    display: grid;
    gap: 10px;
}

.contact-list__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    text-decoration: none;
}

.contact-list__item i {
    color: var(--apt-primary);
    font-size: 16px;
    flex: 0 0 auto;
}

.contact-list--conversation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.contact-social-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.contact-social-row__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 110, 0.22);
    color: var(--apt-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-social-row__icon:hover {
    background: #f4f7ff;
    color: var(--apt-primary);
}

.contact-map iframe,
.store-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--apt-radius);
}

.form-card form {
    display: grid;
    gap: 14px;
}

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

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

.form-card textarea,
.form-card input,
.form-card select {
    width: 100%;
    border: 1px solid #d9dfe5;
    border-radius: var(--apt-radius);
    padding: 12px 14px;
    background: #fff;
}

.error-text {
    color: #b42318;
    font-size: 0.875rem;
}

.success-box {
    background: #e8f6ee;
    color: #135c3d;
    border-radius: var(--apt-radius);
    padding: 14px 16px;
}

.error-box {
    background: #fdecec;
    color: #b42318;
    border-radius: var(--apt-radius);
    padding: 14px 16px;
}

.home-tabbed-heading {
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.product-block-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
    margin-bottom: 22px;
}

.product-block-heading::before,
.product-block-heading::after {
    content: none;
}

.product-block-heading::after {
    content: "";
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    height: 1px;
    background: rgba(2, 6, 110, 0.18);
}

.product-block-heading h3 {
    flex: 0 0 auto;
    padding: 0;
    grid-column: 1;
    grid-row: 1;
}

.product-block-heading-trail {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

html[dir="rtl"] .product-block-heading {
    grid-template-columns: 1fr auto;
}

.home-tab-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-inline-start: 0;
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
}

.home-tab-btn {
    border: 0;
    background: transparent;
    color: #5f6980;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0 0 8px;
    transition: color 0.2s ease;
}

.home-tab-btn:focus,
.home-tab-btn:active,
.home-tab-btn:focus-visible {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.home-tab-btn:hover,
.home-tab-btn.is-active {
    color: var(--apt-primary);
}

.home-tab-content {
    position: relative;
}

.home-tab-pane {
    display: none;
}

.home-tab-pane.is-active {
    display: block;
}

.store-directory {
    display: grid;
    gap: 22px;
}

.store-entry {
    grid-template-columns: 1fr 1fr;
    padding: 22px;
}

.store-hours {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .catalog-layout,
    .checkout-grid,
    .product-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-row,
    .promo-grid,
    .content-split,
    .vision-grid,
    .contact-grid,
    .store-entry,
    .about-stats,
    .logo-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .category-strip,
    .brand-strip {
        grid-auto-columns: minmax(140px, 220px);
    }

    .home-tab-nav {
        grid-template-columns: 1fr;
        justify-content: flex-start;
    }

    .product-block-heading,
    html[dir="rtl"] .product-block-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .product-block-heading-trail {
        width: 100%;
    }

    .home-tabbed-heading {
        display: flex;
        align-items: stretch;
        gap: 12px;
    }

    .home-tabbed-heading h3,
    .home-tabbed-heading .product-block-heading-trail {
        width: 100%;
    }

    .home-tabbed-heading .product-block-heading-trail {
        justify-content: flex-start;
    }

    .home-tab-nav {
        width: 100%;
        gap: 10px;
    }

    .container {
        padding-inline: 14px;
    }

    .feature-row {
        display: block;
        min-height: 28px;
    }

    .feature-card {
        display: none;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .feature-card.is-active {
        display: flex;
    }

    .feature-card-text {
        font-size: 12px;
    }

    .contact-list--conversation {
        grid-template-columns: 1fr 1fr;
    }

    .slider__area .single-slider picture.hero-media {
        aspect-ratio: auto;
    }

    .slider__area .single-slider picture.hero-media img {
        height: auto;
        object-fit: contain;
    }
}
