/*
 * Seratin premium interaction layer
 * Motion is intentionally subtle and automatically reduced for accessibility.
 */
:root {
    --seratin-blue: #0d5aa7;
    --seratin-blue-dark: #123f78;
    --seratin-accent: #e44c4c;
    --seratin-ease: cubic-bezier(.22, .61, .36, 1);
    --seratin-ease-out: cubic-bezier(.16, 1, .3, 1);
    --seratin-shadow-sm: 0 8px 24px rgba(17, 48, 85, .09);
    --seratin-shadow-md: 0 18px 48px rgba(17, 48, 85, .15);
}

html.seratin-ux {
    scroll-behavior: smooth;
}

html.seratin-ux body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    animation: seratin-page-in .28s var(--seratin-ease-out) both;
    transition: opacity .12s ease;
}

html.seratin-page-leaving body {
    opacity: 0;
}

@keyframes seratin-page-in {
    from {
        opacity: .84;
    }
    to {
        opacity: 1;
    }
}

.seratin-scroll-progress {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--seratin-blue), #397ec3 70%, var(--seratin-accent));
    box-shadow: 0 1px 7px rgba(13, 90, 167, .25);
    will-change: transform;
}

html[dir="rtl"] .seratin-scroll-progress {
    transform-origin: right center;
}

/* Scroll reveal */
html.seratin-motion .seratin-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(.985);
    transition:
        opacity .48s var(--seratin-ease-out),
        transform .48s var(--seratin-ease-out),
        box-shadow .42s ease,
        border-color .42s ease;
    transition-delay: var(--seratin-reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.seratin-motion .seratin-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Navigation and header micro interactions */
.seratin-ux .navbar-area {
    transition:
        background-color .3s ease,
        box-shadow .3s ease,
        transform .3s var(--seratin-ease);
}

.seratin-ux body.seratin-nav-scrolled .navbar-area {
    box-shadow: 0 12px 34px rgba(16, 45, 78, .12);
}

.seratin-ux .navbar-area .logo img,
.seratin-ux .navbar-area .site-title {
    transition: transform .35s var(--seratin-ease-out), filter .35s ease;
}

@media (hover: hover) {
    .seratin-ux .navbar-area .logo:hover img,
    .seratin-ux .navbar-area .logo:hover .site-title {
        transform: translateY(-2px) scale(1.02);
        filter: saturate(1.06);
    }
}

.seratin-ux .navbar-area .navbar-nav > li > a {
    position: relative;
    transition: color .25s ease, transform .25s var(--seratin-ease);
}

.seratin-ux .navbar-area .navbar-nav > li:not(.current-menu-item) > a::before {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 5px;
    left: 12%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: .8;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s var(--seratin-ease-out);
}

@media (hover: hover) and (min-width: 992px) {
    .seratin-ux .navbar-area .navbar-nav > li:not(.current-menu-item) > a:hover::before {
        transform: scaleX(1);
    }

    .seratin-ux .navbar-area .navbar-nav > li > a:hover {
        transform: translateY(-1px);
    }
}

.seratin-ux .navbar-area .sub-menu {
    border: 1px solid rgba(23, 63, 122, .08);
    border-radius: 12px;
    box-shadow: var(--seratin-shadow-md);
    overflow: hidden;
}

.seratin-ux .navbar-area .sub-menu a {
    transition: color .22s ease, background-color .22s ease, padding-left .22s ease;
}

@media (hover: hover) {
    .seratin-ux .navbar-area .sub-menu a:hover {
        padding-left: 24px;
        background: rgba(13, 90, 167, .06);
    }
}

/* Buttons */
.seratin-ux :where(
    .boxed-btn,
    .btn-boxed,
    .btn-dagency,
    .addtocart,
    button[type="submit"],
    input[type="submit"]
) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform: translateZ(0);
    transition:
        transform .28s var(--seratin-ease-out),
        box-shadow .28s ease,
        background-color .28s ease,
        border-color .28s ease,
        color .28s ease;
}

.seratin-ux :where(
    .boxed-btn,
    .btn-boxed,
    .btn-dagency,
    .addtocart,
    button[type="submit"]
)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -60%;
    bottom: -60%;
    left: -45%;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    transform: translateX(-190%) rotate(14deg);
    transition: transform .62s var(--seratin-ease);
}

@media (hover: hover) {
    .seratin-ux :where(
        .boxed-btn,
        .btn-boxed,
        .btn-dagency,
        .addtocart,
        button[type="submit"],
        input[type="submit"]
    ):hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(13, 90, 167, .22);
    }

    .seratin-ux :where(
        .boxed-btn,
        .btn-boxed,
        .btn-dagency,
        .addtocart,
        button[type="submit"]
    ):hover::after {
        transform: translateX(520%) rotate(14deg);
    }
}

.seratin-ux :where(
    .boxed-btn,
    .btn-boxed,
    .btn-dagency,
    .addtocart,
    button,
    input[type="submit"]
):active {
    transform: translateY(0) scale(.975);
}

.seratin-ripple {
    position: absolute;
    z-index: 2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, .46);
    transform: translate(-50%, -50%) scale(0);
    animation: seratin-ripple .58s ease-out forwards;
}

@keyframes seratin-ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

/* Product and content cards */
.seratin-ux :where(
    .single-product-item-3,
    .single-grocery-product-item,
    .single-fruit-product-item,
    .single-product-cat-item
) {
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--seratin-shadow-sm);
    transition:
        transform .42s var(--seratin-ease-out),
        box-shadow .42s ease,
        border-color .42s ease;
}

.seratin-ux .single-product-item-3 {
    border-color: rgba(13, 90, 167, .09);
}

.seratin-ux :where(
    .single-product-item-3,
    .single-grocery-product-item,
    .single-fruit-product-item,
    .single-product-cat-item
) .thumb,
.seratin-ux .single-product-item-3 .img-wrapper {
    overflow: hidden;
}

/*
 * Seratin: uploaded product/category photos come in whatever aspect
 * ratio the source image happened to be, so letting height follow
 * "auto" made cards in the same row sit at different heights (title
 * lines landing at different Y positions). Force a consistent frame
 * and crop-to-fill instead.
 */
.seratin-ux :where(
    .single-product-item-3,
    .single-grocery-product-item,
    .single-fruit-product-item,
    .single-product-cat-item
) .thumb {
    aspect-ratio: 3 / 2;
}

/*
 * .single-product-item-3 nests the <img> inside an extra unstyled
 * .img-wrapper div. Without this, "height: 100%" on the img resolves
 * against that wrapper's own auto height (not the aspect-ratio'd
 * .thumb), which collapses to a sliver a few px tall instead of
 * filling the frame.
 */
.seratin-ux .single-product-item-3 .img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.seratin-ux :where(
    .single-product-item-3,
    .single-grocery-product-item,
    .single-fruit-product-item,
    .single-product-cat-item
) .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f2f2f2;
}

.seratin-ux :where(
    .single-product-item-3,
    .single-grocery-product-item,
    .single-fruit-product-item,
    .single-product-cat-item
) .thumb img,
.seratin-ux .single-product-item-3 .img-wrapper img {
    transition: transform .7s var(--seratin-ease-out), filter .45s ease;
    will-change: transform;
}

@media (hover: hover) {
    .seratin-ux :where(
        .single-product-item-3,
        .single-grocery-product-item,
        .single-fruit-product-item,
        .single-product-cat-item
    ):hover {
        transform: translateY(-9px);
        border-color: rgba(13, 90, 167, .16);
        box-shadow: var(--seratin-shadow-md);
    }

    html.seratin-motion .seratin-reveal.is-visible:is(
        .single-product-item-3,
        .single-grocery-product-item,
        .single-fruit-product-item,
        .single-product-cat-item
    ):hover {
        transform: translateY(-9px);
    }

    .seratin-ux :where(
        .single-product-item-3,
        .single-grocery-product-item,
        .single-fruit-product-item,
        .single-product-cat-item
    ):hover .thumb img,
    .seratin-ux .single-product-item-3:hover .img-wrapper img {
        transform: scale(1.055);
        filter: saturate(1.05) contrast(1.015);
    }
}

.seratin-ux .single-product-item-3 .content .title {
    transition: color .25s ease, transform .25s var(--seratin-ease);
}

.seratin-ux .single-product-item-3:hover .content .title {
    transform: translateX(3px);
}

.seratin-ux .single-product-item-3 .tag,
.seratin-ux .single-grocery-product-item .tag,
.seratin-ux .single-fruit-product-item .tag {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .13);
}

.seratin-ux :where(
    .single-blog-grid-01,
    .single-service-item,
    .single-team-member,
    .single-testimonial-item,
    .single-price-plan-01,
    .product-widget-area .widget,
    .blog-widget-area .widget
) {
    transition: transform .38s var(--seratin-ease-out), box-shadow .38s ease;
}

@media (hover: hover) {
    .seratin-ux :where(
        .single-blog-grid-01,
        .single-service-item,
        .single-team-member,
        .single-testimonial-item,
        .single-price-plan-01
    ):hover {
        transform: translateY(-6px);
        box-shadow: var(--seratin-shadow-md);
    }

    html.seratin-motion .seratin-reveal.is-visible:is(
        .single-blog-grid-01,
        .single-service-item,
        .single-team-member,
        .single-testimonial-item,
        .single-price-plan-01
    ):hover {
        transform: translateY(-6px);
    }
}

/* Form focus states */
.seratin-ux :where(
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
) {
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.seratin-ux :where(
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
):focus {
    border-color: rgba(13, 90, 167, .66);
    box-shadow: 0 0 0 4px rgba(13, 90, 167, .1);
    outline: none;
}

.seratin-ux :where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(13, 90, 167, .46);
    outline-offset: 3px;
}

/* Slider motion and controls */
.seratin-ux .manual-header-slider .owl-stage {
    transition-timing-function: var(--seratin-ease-out) !important;
}

.seratin-ux .manual-header-slider .owl-item .header-inner > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .58s ease, transform .7s var(--seratin-ease-out);
}

.seratin-ux .manual-header-slider .owl-item.active .header-inner > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.seratin-ux .manual-header-slider .owl-item.active .header-inner > *:nth-child(2) {
    transition-delay: 70ms;
}

.seratin-ux .manual-header-slider .owl-item.active .header-inner > *:nth-child(3) {
    transition-delay: 140ms;
}

.seratin-ux .manual-header-slider .owl-nav div {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    transition:
        transform .28s var(--seratin-ease-out),
        background-color .28s ease,
        box-shadow .28s ease;
}

@media (hover: hover) {
    .seratin-ux .manual-header-slider .owl-nav div:hover {
        transform: scale(1.08);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    }
}

.seratin-ux .manual-header-slider .owl-dot {
    transition:
        width .26s var(--seratin-ease-out),
        height .26s var(--seratin-ease-out),
        transform .26s var(--seratin-ease-out),
        background-color .26s ease;
}

/* Image loading polish */
.seratin-ux img.seratin-image {
    opacity: 0;
    transition: opacity .25s ease, transform .55s var(--seratin-ease-out);
}

.seratin-ux img.seratin-image.is-loaded {
    opacity: 1;
}

/* Small screens */
@media (max-width: 991px) {
    .seratin-scroll-progress {
        height: 2px;
    }

    .seratin-ux .navbar-area .navbar-nav > li:not(.current-menu-item) > a::before {
        display: none;
    }

    .seratin-ux :where(
        .single-product-item-3,
        .single-grocery-product-item,
        .single-fruit-product-item,
        .single-product-cat-item
    ) {
        border-radius: 13px;
    }
}

@media (max-width: 575px) {
    html.seratin-motion .seratin-reveal {
        transform: translate3d(0, 18px, 0) scale(.992);
    }

    .seratin-ux .manual-header-slider .owl-item .header-inner > * {
        transform: translate3d(0, 12px, 0);
    }
}

/* Responsive layout safety */
html {
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html {
        overflow-x: clip;
    }
}

body {
    min-width: 0;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img,
video {
    height: auto;
}

.container,
.container-fluid,
.row,
[class*="col-"],
.owl-carousel,
.owl-stage-outer,
.slick-list {
    min-width: 0;
}

.header-slider-wrapper.grocery-home,
.header-slider-wrapper.grocery-home .owl-stage-outer,
.header-slider-wrapper.grocery-home .owl-item,
.header-slider-wrapper.grocery-home .header-area.grocery-home {
    width: 100%;
    max-width: 100%;
}

.header-slider-wrapper.grocery-home .owl-stage-outer {
    overflow: hidden;
}

.header-area.grocery-home {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-area.grocery-home .header-inner {
    max-width: 640px;
}

.header-area.grocery-home :where(.title, .subtitle, .description) {
    max-width: 100%;
    overflow-wrap: break-word;
}

.header-area.grocery-home .btn-wrapper,
.header-area.grocery-home .btn-dagency {
    max-width: 100%;
}

@media (min-width: 992px) {
    .header-style-03.header-variant-18 .navbar-area .nav-container,
    .header-area.grocery-home .container {
        width: calc(100% - 48px);
        max-width: 1320px;
    }

    .header-slider-wrapper.grocery-home,
    .header-slider-wrapper.grocery-home .owl-stage-outer,
    .header-slider-wrapper.grocery-home .owl-item,
    .header-area.grocery-home {
        min-height: clamp(390px, 32vw, 650px);
    }

    .header-area.grocery-home {
        display: flex;
        padding: clamp(64px, 6vw, 120px) 0;
        align-items: center;
        background-position: center center;
    }
}

/*
 * Seratin: the hero slides carry admin-configured top/bottom padding
 * (data-padding-top/bottom, e.g. 225px + 220px) sized for tall desktop
 * monitors. On shorter laptop screens (~13-14"), where the visible
 * browser viewport is often well under 850px after browser chrome,
 * that fixed padding pushes half the slide below the fold. Scale it
 * down on short viewports instead.
 */
@media (min-width: 992px) and (max-height: 860px) {
    .header-slider-wrapper .header-area.header-bg[data-padding-top] {
        padding-top: clamp(40px, 9vh, 110px) !important;
    }

    .header-slider-wrapper .header-area.header-bg[data-padding-bottom] {
        padding-bottom: clamp(40px, 9vh, 110px) !important;
    }
}

/*
 * Bootstrap's 960px container is too narrow for the full desktop navigation
 * between 992px and 1199px. Keep that range desktop-like without allowing
 * either the menu or the banner copy to wrap unexpectedly.
 */
@media (min-width: 992px) and (max-width: 1399px) {
    .navbar-area .nav-container {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        padding-inline: 12px;
        flex-wrap: nowrap;
    }

    .navbar-area .responsive-mobile-menu {
        flex: 0 0 126px;
        min-width: 0;
    }

    .navbar-area .nav-container .logo-wrapper {
        width: 126px;
        max-width: 126px;
    }

    .navbar-area .nav-container .logo-wrapper img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 64px;
        object-fit: contain;
    }

    .navbar-area .navbar-collapse {
        min-width: 0;
    }

    .navbar-area .navbar-nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav > li {
        flex: 0 0 auto;
        font-size: 13px;
        line-height: 82px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav > li + li {
        margin-left: 8px;
    }

    .navbar-area .nav-right-content ul {
        margin-left: 8px;
    }

    .header-area.grocery-home .row > .col-lg-6 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .header-area.grocery-home .title {
        font-size: clamp(42px, 4.25vw, 50px);
        line-height: 1.12;
    }

    .header-area.grocery-home .subtitle {
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.5;
    }

    .header-area.grocery-home .description {
        font-size: 15px;
        line-height: 1.55;
    }
}

@media (min-width: 992px) and (max-width: 1099px) {
    .navbar-area .responsive-mobile-menu {
        flex-basis: 112px;
    }

    .navbar-area .nav-container .logo-wrapper {
        width: 112px;
        max-width: 112px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav > li {
        font-size: 11px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav > li + li {
        margin-left: 5px;
    }
}

.single-product-details,
.single-product-details .top-content,
.single-product-details .product-gallery,
.single-product-details .slider-gallery-slider,
.single-product-details .slider-gallery-nav,
.single-product-details .extra-content-wrap,
.single-product-details .tab-content {
    max-width: 100%;
}

.single-product-details :where(.thumb, .slider-gallery-slider) img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}

@media (max-width: 991px) {
    .navbar-area .nav-container {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin-inline: auto;
        padding-inline: 12px;
    }

    .navbar-area .responsive-mobile-menu {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .navbar-area .responsive-mobile-menu .logo-wrapper,
    .navbar-area .responsive-mobile-menu .logo {
        min-width: 0;
        max-width: min(170px, 48vw);
    }

    .navbar-area .responsive-mobile-menu .logo img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 58px;
        object-fit: contain;
    }

    .navbar-area .navbar-collapse {
        width: 100%;
        max-width: 100%;
        max-height: calc(100dvh - 90px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .navbar-area .navbar-nav,
    .navbar-area .navbar-nav > li,
    .navbar-area .navbar-nav > li > a {
        max-width: 100%;
    }

    .navbar-area .navbar-nav > li > a {
        overflow-wrap: anywhere;
    }

    .header-area.grocery-home {
        display: flex;
        min-height: clamp(470px, 68svh, 600px);
        padding: clamp(82px, 12vw, 125px) 0 105px;
        align-items: center;
        background-position: 58% center;
    }

    .header-area.grocery-home .container,
    .header-area.grocery-home .row,
    .header-area.grocery-home .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }

    .header-area.grocery-home .header-inner {
        width: min(620px, 82vw);
        max-width: 100%;
    }

    .header-area.grocery-home .title {
        margin-bottom: 16px;
        font-size: clamp(34px, 6vw, 48px);
        line-height: 1.12;
    }

    .header-area.grocery-home .description {
        width: min(100%, 44rem);
        font-size: 16px;
        line-height: 1.65;
    }

    .header-slider-wrapper.manual-header-slider .owl-nav div {
        width: 42px;
        height: 42px;
        line-height: 40px;
    }

    .categories-area-wrap,
    .product-area-wrap,
    .featured-product-area,
    .process-area-wrap {
        overflow: hidden;
    }

    .categories-area-wrap {
        padding-top: 72px;
        padding-bottom: 42px;
    }

    .single-product-cat-item,
    .single-grocery-product-item,
    .single-product-item-3 {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .single-product-details .extra-content-wrap {
        margin-top: 42px;
        margin-bottom: 64px;
    }

    .single-product-details .extra-content-wrap .nav-tabs {
        display: flex;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .single-product-details .extra-content-wrap .nav-tabs .nav-item {
        min-width: 0;
        flex: 1 1 33.333%;
        padding: 12px 16px;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .single-product-details .extra-content-wrap .tab-content {
        padding: 24px;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575px) {
    .navbar-area .nav-container {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        padding-inline: 8px;
    }

    .header-area.grocery-home {
        min-height: clamp(420px, 66svh, 520px);
        padding: 66px 0 84px;
        background-position: 62% center;
    }

    .header-area.grocery-home::after {
        position: absolute;
        z-index: 0;
        inset: 0;
        content: "";
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, .22) 0%,
            rgba(0, 0, 0, .12) 58%,
            rgba(0, 0, 0, .03) 100%
        );
    }

    .header-area.grocery-home .container {
        position: relative;
        z-index: 1;
        padding-inline: 20px;
    }

    .header-area.grocery-home .header-inner {
        width: 100%;
    }

    .header-area.grocery-home .subtitle {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.45;
    }

    .header-area.grocery-home .title {
        font-size: clamp(29px, 9vw, 38px);
        line-height: 1.1;
    }

    .header-area.grocery-home .description {
        display: -webkit-box;
        max-width: 34rem;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .header-area.grocery-home .btn-wrapper {
        margin-top: 22px;
    }

    .header-area.grocery-home .btn-dagency {
        padding: 9px 10px 9px 22px;
        font-size: 14px;
    }

    .header-area.grocery-home .btn-dagency i {
        margin-left: 12px;
    }

    .header-slider-wrapper.manual-header-slider .owl-nav div {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }

    .header-slider-wrapper.grocery-home .owl-nav div {
        left: 8px;
    }

    .header-slider-wrapper.grocery-home .owl-nav div.owl-next {
        right: 8px;
    }

    .categories-area-wrap {
        padding-top: 54px;
        padding-bottom: 30px;
    }

    .section-title .title,
    .section-title.grocery-home .title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .single-product-details .extra-content-wrap .nav-tabs .nav-item {
        flex-basis: 50%;
        font-size: 14px;
        line-height: 1.35;
    }

    .single-product-details .extra-content-wrap .tab-content {
        padding: 20px 16px;
    }
}

@media (max-width: 380px) {
    .header-area.grocery-home {
        min-height: 410px;
        padding-top: 58px;
    }

    .single-product-details .extra-content-wrap .nav-tabs .nav-item {
        flex-basis: 100%;
    }
}

/* Accessibility and low-power preference */
@media (prefers-reduced-motion: reduce) {
    html.seratin-ux {
        scroll-behavior: auto;
    }

    html.seratin-ux body {
        animation: none;
        transition: none;
    }

    html.seratin-motion .seratin-reveal,
    html.seratin-motion .seratin-reveal.is-visible,
    .seratin-ux *,
    .seratin-ux *::before,
    .seratin-ux *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0ms !important;
    }

    html.seratin-motion .seratin-reveal {
        opacity: 1;
        transform: none;
    }

    .seratin-scroll-progress {
        display: none;
    }
}
