@import url("../fonts/fonts.css");
@import url("https://fonts.googleapis.com/css2?family=Caramel&family=Inter:wght@400;500;600&display=swap");

:root {
    --bg-header-top: #ebebeb;
    --bg-footer: #ebebeb;
    --bg-copyright: #ebebeb;
    --bg-body: #ffffff;
    --bg-menu: #ffffff;
    --bg-white: #ffffff;
    --color-red: #e60023;
    --color-body: #343a40;
    --color-white: #ffffff;
    --header-primary: #00d0c2;
    --header-primary-dark: #00b298;
    --header-text: #313b3c;
    --header-muted: #909090;
    --header-border: #ebf4f3;
    --header-tagline: #b3b7ba;
    --header-lang-bg: #eaf4f6;
    --header-badge: #a0ce52;
    --home-feature-card-bg: #eaf4f5;
    --home-news-card-hover-bg: #d8f3ef;
    --mega-pill-border: #d1d1d1;
    --mega-pill-text: #757575;
    --mega-gap-media-categories: 80px;
    --mega-gap-l1-l2: 40px;
    --container-max-width: 1440px;
    --container-sm-max-width: 1140px;
    --container-padding-inline: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #4CC2B4 #f1f1f1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(146, 22, 30);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43e97b, #38f9d7);
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-body);
    color: var(--color-body);
    font-size: 1rem;
    top: 0 !important;
}

.container {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
}

.container-sm {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--container-sm-max-width);
    margin-inline: auto;
}

.grecaptcha-badge {
    display: none !important;
}

/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Header **/
.header {
    position: relative;
    background: transparent;
}

.header-top {
    padding: 6px 0;
    background: var(--bg-header-top);
    font-size: 15px;
}

.flex-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-header-top-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.flex-header-top-right a {
    line-height: 1;
    display: inline-block;
}

.flex-header-top-right img {
    transition: all 0.3s;
}

.flex-header-top-right a:hover img {
    opacity: 0.7;
}

.flex-header-top-left {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.header-top-info {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
}

/** Header bottom **/
.header-bottom {
    display: none;
}

.flex-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-cart {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 20px;
    transition: color 0.3s ease;
    color: #333;
}

.header-cart i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translate(50%, -50%);
    background-color: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}

.site-header {
    position: relative;
    z-index: 20;
    overflow-x: clip;
    overflow-y: visible;
}

.site-header__desktop {
    overflow: visible;
    border-bottom: 1px solid var(--header-border);
    background: var(--bg-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__grid {
    position: relative;
    z-index: 30;
    display: grid;
    align-items: stretch;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    row-gap: 0;
    overflow: visible;
}

.site-header__grid-logo {
    display: flex;
    grid-column: 1;
    grid-row: 1 / -1;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
}

.site-header__grid-top {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 3rem;
    padding-left: 1.5rem;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #fff, #d7d7d7) 1;
}

.site-header__grid-nav {
    display: flex;
    grid-column: 2;
    grid-row: 2;
    align-items: stretch;
    align-self: stretch;
    justify-content: flex-end;
    min-height: 0;
    padding: 0 0 0 1.5rem;
    overflow: visible;
}

.site-header__top-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem 1.5rem;
}

.site-header__contact {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    color: var(--header-muted);
}

.site-header__contact-phone {
    font-weight: 500;
    color: var(--header-primary);
    text-decoration: none;
}

.site-header__contact-phone:hover {
    text-decoration: underline;
}

.site-header__cta {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 23px;
    min-width: 8rem;
    width: max-content;
    max-width: 100%;
    min-height: 44px;
    background: #00b298;
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px 0 0 0;
    white-space: normal;
    transition: background 0.2s ease;
}

.site-header__cta:hover {
    background: #009986;
    color: #fff;
}

.site-header__cta--account {
    background: none;
}

.site-header__cta--account {
    min-width: 90px;
    padding: 13px 14px;
    gap: 8px;
}

.site-header__account-avatar {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e9ecef;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.site-header__account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-header__account-name {
    font-size: 1rem;
    line-height: 1;
    color: #313b3c;
    font-weight: 400;
    white-space: nowrap;
}

.site-header__cta--account:hover .site-header__account-name {
    color: #ffffff;
}

.site-header__cta-lang {
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0;
}

.site-header__google-translate-wrap {
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 23px;
    background: var(--header-lang-bg);
    border-radius: 0 8px 0 0;
    pointer-events: auto;
}

.site-header__google-translate-trigger {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--header-primary);
    pointer-events: auto;
}

.site-header__google-translate-label {
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.site-header__google-translate-caret {
    font-size: 0.625rem;
    line-height: 1;
}

.site-header__google-translate-engine {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.site-header__google-translate-engine .goog-te-gadget,
.site-header__google-translate-engine .goog-te-gadget-simple {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.site-header__google-translate-wrap .goog-te-combo {
    font-family: "Inter", system-ui, sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    color: var(--header-primary) !important;
}

.site-header__google-translate-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 72px;
    background: #fff;
    border: 1px solid var(--header-border);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 4px;
    display: none;
    z-index: 50;
}

.site-header__google-translate-wrap.is-open .site-header__google-translate-dropdown {
    display: block;
}

.site-header__google-translate-option {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--header-text);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    border-radius: 6px;
    padding: 0.5rem 0.625rem;
    cursor: pointer;
}

.site-header__google-translate-option:hover {
    background: var(--header-lang-bg);
    color: var(--header-primary);
}

.site-header__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.site-header__logo {
    display: block;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    max-height: 4.25rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-header__tagline {
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(0.6875rem, 1.1vw, 1.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--header-tagline);
    max-width: 15rem;
}

.site-header__end {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 1.5rem 2rem;
    flex: 1;
    min-width: 0;
    height: 100%;
}

.site-header__nav {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
    height: 100%;
}

.site-header__nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-end;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.site-header__nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.site-header__nav-item--mega-host {
    position: static;
}

.site-header__nav-link {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    box-sizing: border-box;
    gap: 0.375rem;
    padding: 0.5rem 0.625rem;
    height: 100%;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--header-text);
    text-decoration: none;
    white-space: nowrap;
}

.site-header__nav-link:hover {
    color: var(--header-primary);
}

.site-header__nav-item.is-active>.site-header__nav-link {
    color: var(--header-primary);
    font-weight: 500;
}

.site-header__nav-caret {
    font-size: 0.5rem;
    color: #94a3b8;
    margin-top: 0.125rem;
}

.site-header__sub {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 40;
    min-width: 14rem;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--header-border);
    border-radius: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.site-header__nav-item--has-sub:hover>.site-header__sub,
.site-header__nav-item--has-sub:focus-within>.site-header__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header__sub:not(.site-header__sub--mega) a {
    display: block;
    padding: 0.5rem 1rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9375rem;
    color: var(--header-text);
    text-decoration: none;
}

.site-header__sub:not(.site-header__sub--mega) a:hover {
    color: var(--header-primary);
    background: var(--header-lang-bg);
}

.site-header__sub-item--has-sub {
    position: relative;
}

.site-header__sub--nested {
    top: 0;
    left: 100%;
    margin-left: 0.125rem;
}

.site-header__sub-item--has-sub:hover>.site-header__sub--nested,
.site-header__sub-item--has-sub:focus-within>.site-header__sub--nested {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header__sub--mega {
    left: 50%;
    right: auto;
    width: 100dvw;
    max-width: 100dvw;
    padding: 0;
    border: none;
    border-top: 1px solid #eaf4f5;
    border-bottom: 1px solid #eaf4f5;
    border-radius: 0;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transform: translateX(-50%) translateY(0.5rem);
}

.site-header__nav-item--has-sub:hover>.site-header__sub--mega,
.site-header__nav-item--has-sub:focus-within>.site-header__sub--mega {
    transform: translateX(-50%) translateY(0);
}

@supports not (width: 100dvw) {
    .site-header__sub--mega {
        width: 100vw;
        max-width: 100vw;
    }
}

.site-header__mega {
    display: grid;
    width: 100%;
    align-items: start;
    align-content: start;
    justify-content: start;
    column-gap: 0;
    row-gap: 1rem;
    padding: 1.25rem 0;
    grid-template-columns: auto auto auto;
}

.site-header__mega-media {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-right: var(--mega-gap-media-categories);
    overflow: hidden;
    line-height: 0;
    border-radius: 0.75rem;
}

.site-header__mega-media img {
    display: block;
    width: 191px;
    height: 232px;
    max-width: none;
    object-fit: cover;
}

.site-header__mega-categories {
    display: grid;
    width: auto;
    justify-items: start;
    margin-right: var(--mega-gap-l1-l2);
    gap: 1rem;
}

.site-header__mega-list {
    display: grid;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-items: start;
    gap: 0.5rem;
}

.site-header__mega-rail {
    display: grid;
    width: auto;
    min-height: 100%;
    justify-items: start;
}

.site-header__mega-rail--empty {
    min-height: 0;
    padding-left: 0;
    border-left: none;
    pointer-events: none;
}

.site-header__mega-panel {
    display: none;
    gap: 0.5rem;
}

.site-header__mega-panel.is-active {
    display: grid;
}

.site-header__mega-level2 {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.35rem;
}

.site-header__mega-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--mega-pill-text);
    text-decoration: none;
    background-color: transparent;
    transition: border-color 0.2s ease;
}

.site-header__mega-pill:hover,
.site-header__mega-pill:focus-visible,
.site-header__mega-pill.is-active {
    border-color: var(--mega-pill-border);
}

.site-header__mega-pill--sm {
    font-size: 0.9375rem;
}

.site-header__tools {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 1rem;
    flex-shrink: 0;
}

.site-header__tool {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 0.25rem;
    background: transparent;
    color: var(--header-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.15s ease;
}

.site-header__tool:hover {
    color: var(--header-primary-dark);
    opacity: 0.92;
    transform: scale(1.06);
}

.site-header__tool i {
    font-size: 1.125rem;
}

.site-header__cart-badge {
    position: absolute;
    top: -0.125rem;
    right: -0.125rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.35rem;
    border-radius: 0.5rem;
    background: var(--header-badge);
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1rem;
    text-align: center;
}

.site-header__cart-badge.is-empty {
    display: none;
}

@media (max-width: 991px) {
    .site-header__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 0;
    }

    .site-header__grid-logo {
        grid-column: 1;
        grid-row: 1;
        padding-bottom: 0.5rem;
    }

    .site-header__grid-top {
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }

    .site-header__grid-nav {
        grid-column: 1;
        grid-row: 3;
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }

    .site-header__end {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .site-header__nav {
        flex: 1 1 auto;
        min-width: min(100%, 20rem);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-header__nav-list {
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .site-header__tools {
        flex-shrink: 0;
    }

    .site-header__mega {
        grid-template-columns: 1fr;
        justify-items: stretch;
        padding: 1rem 0;
    }

    .site-header__mega-media {
        margin-right: 0;
    }

    .site-header__mega-categories {
        margin-right: 0;
        width: 100%;
    }

    .site-header__mega-list {
        width: 100%;
    }

    .site-header__mega-media img {
        width: min(100%, 191px);
        height: auto;
        aspect-ratio: 191 / 232;
    }

    .site-header__mega-rail {
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding-left: 0;
        padding-top: 0.75rem;
    }

    .site-header__mega--about .site-header__mega-rail--empty {
        display: none;
    }
}

/* menu */
.mobile-menu,
.mobile-header,
.mobile-menu-overlay {
    display: none;
}

.menu {
    background-color: var(--bg-menu);
    position: relative;
    z-index: 2;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.flex-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 100px;
    gap: 20px;
}

.menu-right ul {
    list-style: none;
}

.menu-right .level-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    width: 100%;
    gap: 1px;
}

.level-1>li {
    flex: 1;
    text-align: center;
    position: relative;
}

.level-1>li>a.menu-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 4px;
}

.level-1>li:hover>a.menu-item,
.level-1>li.active>a.menu-item {
    background-color: #f2f2f2;
    color: #000;
}

.submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    z-index: 999;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.level-1>li,
.submenu li {
    position: relative;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    background: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
}

.submenu li a:hover {
    background: #f5f5f5;
}

.level-3,
.level-4,
.level-5 {
    top: 0;
    left: 100%;
}

.menu__icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 30px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.menu__icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
    color: #000;
}

.menu__icon i {
    pointer-events: none;
}

.menu__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 0 2px #fff;
    transition: transform 0.2s ease;
}

.menu__icon--cart:hover .menu__cart-count {
    transform: scale(1.08);
}

.nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.menu-style-one {
    padding: 10px 0;
}

.menu-style-two {
    padding: 10px 0;
    display: none;
}

.menu-style-two .menu-right {
    margin-left: 0px;
}

/** Profile menu **/
.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    justify-content: center;
    align-items: center;
}

.menu__icon--user .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 9999;
}

.dropdown-user-menu li {
    list-style: none;
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 15px;
    font-weight: normal;
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2;
}

.menu__icon--user:hover .dropdown-user-menu {
    display: block;
}

/* Slider / hero */
.hero-slider.slideshow {
    position: relative;
    z-index: 1;
}

.hero-slider__viewport.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.hero-slider__slide {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 489;
    max-height: 31rem;
    min-height: 17.5rem;
    overflow: hidden;
}

.hero-slider__media {
    position: absolute;
    inset: 0;
}

.hero-slider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.28) 42%,
            rgba(0, 0, 0, 0.12) 100%);
}

.hero-slider__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 100%;
    padding-block: clamp(1.5rem, 4vw, 3rem);
    pointer-events: none;
}

.hero-slider__inner .container {
    width: 100%;
}

.hero-slider__content {
    max-width: 42rem;
    pointer-events: none;
    padding: 0 1.5rem;
}

.hero-slider__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0 0.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-slider__eyebrow-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: #fff;
}

.hero-slider__eyebrow-chevron {
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.95;
}

.hero-slider__eyebrow-text {
    white-space: nowrap;
}

.hero-slider__title {
    margin: 0 0 1.5rem;
    font-family: "Caramel", cursive;
    font-weight: 400;
    font-size: clamp(3.25rem, 11vw, 6.25rem);
    line-height: 0.85;
    color: #fff;
}

.hero-slider__title-line {
    display: block;
}

.hero-slider__desc {
    margin: 0;
    max-width: 41rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-slider__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-promo-bar {
    position: relative;
    z-index: 2;
    background: var(--header-primary-dark);
}

.hero-promo-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5rem;
    padding-block: 0.625rem;
}

.hero-promo-bar__text {
    flex: 1 1 20rem;
    max-width: 42rem;
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-promo-bar__btn {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    background: var(--header-badge);
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.hero-promo-bar__btn:hover {
    color: #fff;
    filter: brightness(1.05);
}

.hero-promo-bar__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.hero-promo-bar__btn-icon {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}

.hero-promo-bar__btn-icon svg {
    display: block;
}

@media (max-width: 767px) {
    .hero-promo-bar__inner {
        align-items: stretch;
        text-align: center;
    }

    .hero-promo-bar__text {
        max-width: none;
    }

    .hero-promo-bar__btn {
        width: 100%;
        justify-content: center;
    }
}

.home-herbal-hero {
    --home-herbal-hero-bg: var(--header-primary-dark);
    --home-herbal-hero-text: var(--home-feature-card-bg);
    --home-herbal-hero-height: 400px;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

.home-herbal-hero__shell {
    width: min(100%, 100vw);
    margin-inline: auto;
}

.home-herbal-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    width: min(100%, 100vw);
    max-width: 100%;
    align-items: stretch;
    height: var(--home-herbal-hero-height);
    min-height: var(--home-herbal-hero-height);
    max-height: var(--home-herbal-hero-height);
}

.home-herbal-hero__col--text {
    background: var(--home-herbal-hero-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
}

.home-herbal-hero__text-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--container-sm-max-width);
    margin-inline: 0 auto;
    padding-left: max(var(--container-padding-inline),
            calc((100vw - min(100vw, var(--container-sm-max-width))) / 2));
    padding-right: var(--container-padding-inline);
    padding-block: clamp(1rem, 2.5vw, 1.5rem);
}

.home-herbal-hero__title {
    margin: 0 0 1.25rem;
    font-family: "Caramel", cursive;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    line-height: 1.15;
    color: var(--home-herbal-hero-text);
    white-space: pre-line;
}

.home-herbal-hero__desc {
    margin: 0 0 1.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--home-herbal-hero-text);
}

.home-herbal-hero__body {
    margin: 0 0 1.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--home-herbal-hero-text);
}

.home-herbal-hero__body p {
    margin: 0 0 0.75rem;
}

.home-herbal-hero__body p:last-child {
    margin-bottom: 0;
}

.home-herbal-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: fit-content;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    background: var(--header-badge);
    color: var(--home-herbal-hero-text);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.home-herbal-hero__btn:hover {
    color: var(--home-herbal-hero-text);
    filter: brightness(1.05);
}

.home-herbal-hero__btn:focus-visible {
    outline: 2px solid var(--home-herbal-hero-text);
    outline-offset: 2px;
}

.home-herbal-hero__btn-icon {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}

.home-herbal-hero__btn-icon svg {
    display: block;
}

.home-herbal-hero__col--slider {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    min-width: 0;
}

.home-herbal-hero__slider-wrap {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    align-self: stretch;
}

.home-herbal-slider__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.home-herbal-slider__carousel.owl-carousel .owl-stage-outer {
    height: 100%;
}

.home-herbal-slider__carousel.owl-carousel .owl-stage,
.home-herbal-slider__carousel.owl-carousel .owl-item {
    height: 100%;
}

.home-herbal-slider__slide {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.home-herbal-slider__media {
    position: absolute;
    inset: 0;
}

.home-herbal-slider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-herbal-slider__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.12) 45%,
            rgba(0, 0, 0, 0.2) 100%);
}

.home-herbal-hero__nav {
    position: absolute;
    z-index: 3;
    right: max(var(--container-padding-inline),
            calc((100vw - min(100vw, var(--container-sm-max-width))) / 2));
    bottom: clamp(1rem, 3vw, 1.75rem);
    left: auto;
    top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

.home-herbal-hero__nav-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.home-herbal-hero__nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.home-herbal-hero__nav-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots {
    position: absolute;
    z-index: 2;
    left: clamp(1rem, 3vw, 1.75rem);
    right: auto;
    bottom: clamp(1rem, 3vw, 1.75rem);
    top: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots .owl-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots .owl-dot span {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0;
    border-radius: 0;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots .owl-dot.active span {
    background: var(--header-badge);
    transform: scale(1.05);
}

.home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots .owl-dot:not(.active):hover span {
    background: rgba(255, 255, 255, 0.85);
}

.home-product-grid {
    padding-block: 3rem;
    background: var(--bg-body);
}

.home-product-grid__header {
    margin-bottom: 1.5rem;
}

.home-product-grid__title {
    margin: 0 0 1.5rem;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--header-text);
}

.home-product-grid__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-product-grid__tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.home-product-grid__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #909090;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-product-grid__tab.is-active,
.home-product-grid__tab:hover {
    color: var(--header-badge);
    border-color: var(--header-badge);
}

.home-product-grid__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    color: var(--header-text);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.home-product-grid__view-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--header-text);
    color: #fff;
    font-size: 0.625rem;
}

.home-product-grid__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.4375rem;
}

.home-news {
    padding: 1.5rem 0 3.5rem;
    background: var(--bg-body);
}

.home-news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-news__title {
    margin: 0;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--header-text);
}

.home-news__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--header-text);
}

.home-news__view-all-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--header-text);
    color: #fff;
    font-size: 0.625rem;
}

.home-news__slider-wrap {
    position: relative;
}

.home-news__carousel .owl-stage {
    display: flex;
}

.home-news__carousel .owl-item {
    display: flex;
    height: auto;
}

.home-news__item {
    width: 100%;
    height: 100%;
}

.home-news__nav-btn {
    position: absolute;
    top: calc(50% - 2.5rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--header-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--header-primary-dark);
    z-index: 5;
    cursor: pointer;
}

.home-news__nav-btn--prev {
    left: -3.75rem;
}

.home-news__nav-btn--next {
    right: -3.75rem;
}

.home-gallery {
    padding: 4.5rem 0 3.5rem;
}

.home-gallery__head {
    margin-bottom: 1.5rem;
}

.home-gallery__title {
    margin: 0;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--header-text);
}

.home-gallery__slider-wrap {
    position: relative;
}

.home-gallery__carousel {
    width: 100%;
}

.home-gallery__carousel .owl-stage {
    display: flex;
}

.home-gallery__carousel .owl-item {
    display: flex;
    height: auto;
}

.home-gallery__panel {
    display: grid;
    width: 100%;
    min-height: clamp(20rem, 42vw, 34.375rem);
    max-height: 550px;
}

.home-gallery__panel--mosaic {
    gap: 1rem;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
}

.home-gallery__right-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-gallery__card {
    display: block;
    position: relative;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
}

.home-gallery__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-gallery__overlay {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.home-gallery__card:hover .home-gallery__overlay,
.home-gallery__card:focus-visible .home-gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

.home-gallery__overlay-title {
    margin: 0 0 0.5rem;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
}

.home-gallery__overlay-desc {
    margin: 0 0 0.75rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.home-gallery__overlay-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    border-radius: 0.25rem;
    background: var(--header-badge);
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.2;
}

.home-gallery__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--header-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--header-primary-dark);
    z-index: 5;
    cursor: pointer;
}

.home-gallery__nav-btn--prev {
    left: -3.75rem;
}

.home-gallery__nav-btn--next {
    right: -3.75rem;
}

.home-gallery__carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.home-cta-banner {
    padding: 1.5rem 0 0rem;
    width: 100%;
    background: #4cc2b4;
}

.home-cta-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 14.3125rem;
    background-color: #4cc2b4;
    background-image: var(--home-cta-bg-image);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    overflow: hidden;
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
}

.home-cta-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
}

.home-cta-banner__title {
    margin: 0 0 0.5rem;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.home-cta-banner__subtitle {
    margin: 0 0 0.875rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.home-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    background: #ebf4f3;
    color: var(--header-primary-dark);
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.home-cta-banner__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--header-text);
    color: #fff;
    font-size: 0.625rem;
}

.cnt-photo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cnt-photo-slider__carousel,
.cnt-photo-slider__carousel .owl-stage-outer,
.cnt-photo-slider__carousel .owl-stage,
.cnt-photo-slider__carousel .owl-item {
    min-height: 17.5rem;
}

.cnt-photo-slider__carousel .owl-stage {
    display: flex;
}

.cnt-photo-slider__carousel .owl-item {
    display: flex;
}

.cnt-photo-slider__slide {
    position: relative;
    display: flex;
    flex: 1 0 100%;
    align-items: stretch;
    min-height: 17.5rem;
}

.cnt-photo-slider__media {
    position: absolute;
    inset: 0;
}

.cnt-photo-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cnt-photo-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.cnt-photo-slider__container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6.5vw, 6.5rem) 0;
}

.cnt-photo-slider__text {
    margin: 0;
    max-width: 36.25rem;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}

@media (max-width: 1199px) {
    .home-news__nav-btn--prev {
        left: -1rem;
    }

    .home-news__nav-btn--next {
        right: -1rem;
    }

}

@media (max-width: 991px) {
    .home-news__title {
        font-size: 2rem;
    }

    .home-news__nav-btn {
        display: none;
    }

    .home-gallery__title {
        font-size: 2rem;
    }

    .home-gallery__carousel {
        width: 100%;
    }

    .home-gallery__panel {
        min-height: clamp(18rem, 70vw, 30rem);
    }

    .home-gallery__nav-btn {
        display: none;
    }

    .home-gallery__overlay {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 575px) {
    .home-news {
        padding: 1.25rem 0 2.75rem;
    }

    .home-news__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .home-news__title {
        font-size: 1.75rem;
    }

    .home-gallery {
        padding: 1.25rem 0 2.75rem;
    }

    .home-gallery__title {
        font-size: 1.75rem;
    }

    .home-gallery__right-row {
        grid-template-columns: 1fr;
    }

    .home-gallery__overlay-title {
        font-size: 1.5rem;
    }

    .home-cta-banner__inner {
        min-height: 12rem;
        padding: 1.25rem;
    }

    .home-cta-banner__title {
        font-size: 1.75rem;
    }

    .home-cta-banner__subtitle {
        font-size: 0.75rem;
    }
}

.home-product-grid__item .product-card-f {
    gap: 0.75rem;
    height: 100%;
}

.home-product-grid__item .product-card-f__body {
    flex: 1 1 auto;
}

.home-product-grid__item .product-card-f__info {
    flex: 1 1 auto;
}

.home-product-grid.is-loading .home-product-grid__list {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .home-product-grid__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-product-grid {
        padding-block: 2.5rem;
    }

    .home-product-grid__title {
        font-size: 2rem;
    }

    .home-product-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .home-product-grid__title {
        font-size: 1.75rem;
    }

    .home-product-grid__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-product-grid__tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }

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

    .home-product-grid__tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .home-product-grid__view-all {
        width: 100%;
        justify-content: left;
    }

    .home-product-grid__list {
        grid-template-columns: 1fr;
    }

    .home-product-grid__item {
        width: 100%;
    }

    .home-product-grid__item .product-card-f {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .home-herbal-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .home-herbal-hero__text-inner {
        margin-inline: auto;
        padding-left: var(--container-padding-inline);
        padding-right: var(--container-padding-inline);
        max-width: var(--container-sm-max-width);
        padding-block: clamp(1.5rem, 4vw, 2rem);
    }

    .home-herbal-hero__col--text {
        overflow-y: visible;
        max-height: none;
    }

    .home-herbal-hero__col--slider {
        order: -1;
        height: var(--home-herbal-hero-height);
        min-height: var(--home-herbal-hero-height);
        max-height: var(--home-herbal-hero-height);
    }

    .home-herbal-hero__nav {
        right: max(var(--container-padding-inline),
                calc((100vw - min(100vw, var(--container-sm-max-width))) / 2));
        bottom: clamp(0.75rem, 3vw, 1.25rem);
    }

    .home-herbal-hero .home-herbal-slider__carousel.owl-theme .owl-dots {
        left: clamp(0.75rem, 3vw, 1.25rem);
        bottom: clamp(0.75rem, 3vw, 1.25rem);
    }
}

.home-features {
    padding-block: clamp(2rem, 5vw, 3rem);
    background: var(--bg-body);
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-features__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 13.5rem;
    padding: 1.5rem;
    background: var(--home-feature-card-bg);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--header-badge) 0%, var(--header-primary-dark) 100%) 1;
}

.home-features__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8125rem;
}

.home-features__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--header-primary-dark);
    border-radius: 2.5rem;
    background: var(--header-border);
    color: var(--header-primary-dark);
}

.home-features__icon-wrap .fas {
    font-size: 2.25rem;
    line-height: 1;
}

.home-features__icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-features__title-line {
    display: block;
}

.home-features__title {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--header-text);
}

.home-features__desc {
    margin: 0;
    max-width: 14rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.71;
    color: var(--header-text);
}

@media (max-width: 1199px) {
    .home-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-features .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home-features__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .home-features__item {
        width: 100%;
    }

    .home-features__desc {
        max-width: none;
    }
}

.home-features-cut {
    position: relative;
    width: 100%;
    height: 71px;
    overflow: hidden;
}

.home-features-cut__line {
    position: absolute;
    width: 1139.69px;
    height: 0;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 1px solid var(--home-feature-card-bg);
}

.home-features-cut__frame {
    position: absolute;
    width: 772px;
    height: 71px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.home-features-cut__ellipse {
    position: absolute;
    width: 675px;
    height: 62.22px;
    left: 50%;
    top: -62.19px;
    transform: translateX(-50%);
    background: rgba(158, 158, 158, 0.2);
    filter: blur(15.1px);
}

@media (max-width: 1199px) {
    .home-features-cut__line {
        width: calc(100% - 2rem);
    }

    .home-features-cut__frame {
        width: min(772px, 100%);
    }

    .home-features-cut__ellipse {
        width: min(675px, calc(100% - 2rem));
    }
}

.home-about-intro {
    padding: 1.875rem 0 3.75rem;
    text-align: center;
}

.home-about-intro__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

.home-about-intro__logo img {
    display: block;
}

.home-about-intro__title {
    margin: 0;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-style: normal;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--header-text);
}

.home-about-intro__content {
    max-width: 46rem;
    margin: 0 auto;
}

.home-about-intro__lead {
    margin: 0 0 0.75rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--header-primary-dark);
}

.home-about-intro__body {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--header-text);
}

.home-about-intro__body p {
    margin: 0;
}

.home-about-intro__actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.home-about-intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    min-width: 11.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #fff;
}

.home-about-intro__btn--secondary {
    background: var(--header-badge);
}

.home-about-intro__btn--primary {
    background: var(--header-primary-dark);
}

.home-about-intro__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    font-size: 0.875rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .home-about-intro {
        padding: 1.5rem 0 2.75rem;
    }

    .home-about-intro__actions {
        flex-direction: column;
    }

    .home-about-intro__btn {
        width: 100%;
    }
}

.home-certifications {
    padding-bottom: 3.75rem;
}

.home-certifications__note {
    margin: 0 0 1.875rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--header-primary);
    text-align: left;
}

.home-certifications__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.3125rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.home-certifications__item img {
    display: block;
    width: 9.5625rem;
    height: 9.5625rem;
    object-fit: contain;
}

@media (max-width: 767px) {
    .home-certifications {
        padding-bottom: 2.75rem;
    }

    .home-certifications__list {
        gap: 1rem;
    }

    .home-certifications__item img {
        width: 7.5rem;
        height: 7.5rem;
    }
}

.slideshow .owl-dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 12;
    margin: 0;
    background: transparent;
}

.slideshow .owl-dots .owl-dot.active span {
    background: var(--header-primary);
}

.slideshow .owl-dots .owl-dot span {
    width: 2.25rem;
    height: 0.1875rem;
    border-radius: 0.1875rem;
    background: rgba(255, 255, 255, 0.45);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 15;
    pointer-events: none;
    padding-left: clamp(0.5rem, 2vw, 1rem);
    padding-right: clamp(0.5rem, 2vw, 1rem);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn i {
    font-size: 1rem;
    color: var(--header-text);
}

.slider-item a img {
    display: block;
    width: 100%;
}

.product-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.slide img {
    padding: 20px 0px;
    width: 850px;
    height: 400px;
    border-radius: 4px;
    display: block;
}

/* Why choice us */
.why-choice-us {
    padding: 60px 0px;
}

.why-choice-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.why-choice-us-item {
    width: calc(25% - 18px);
    padding: 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choice-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-choice-us-item .thumb {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 50%;
    overflow: hidden;
}

.why-choice-us-item .thumb img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.why-choice-us-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choice-us-item h3 a {
    color: #222;
    text-decoration: none;
}

.why-choice-us-item:hover h3 a {
    color: #e60023;
}

.why-choice-us-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.banner1 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.news-video {
    flex: 1;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.news-list {
    width: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-header h3 {
    color: #c72323;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.view-all {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.news-category {
    color: #c72323;
    font-size: 13px;
}

.news-date {
    color: #666;
    font-size: 13px;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/** Footer **/
.footer {
    background: #eaf4f5;
    padding: 1.875rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer .container-sm {
    max-width: 76.25rem;
}

.footer-v2__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dfeff0;
}

.footer-v2__brand-link img {
    width: 5.166rem;
    height: 5.938rem;
    object-fit: cover;
}

.footer-v2__brand-title {
    margin: 0;
    font-family: "BD StreetSign Sans", "BD_StreetSign_Sans", "Inter", system-ui, sans-serif;
    font-size: 1.6875rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #4cc2b4;
}

.footer-v2__main {
    display: grid;
    grid-template-columns: 1.15fr 1.65fr 1fr 1fr 0.8fr;
    gap: 1rem 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #dfeff0;
}

.footer-v2__heading {
    margin: 0 0 1.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.33;
    color: var(--header-primary-dark);
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .footer-v2__main {
        grid-template-columns: minmax(12.5rem, 1.2fr) minmax(11rem, 1.55fr) minmax(9rem, 0.95fr) minmax(13.5rem, 1.1fr) minmax(6.5rem, 0.85fr);
    }

    .footer-v2__heading {
        font-size: clamp(0.8125rem, 0.65rem + 0.55vw, 1.125rem);
        letter-spacing: -0.02em;
        white-space: nowrap;
    }
}

.footer-v2__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-v2__list li {
    margin-bottom: 0.75rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
}

.footer-v2__list a {
    text-decoration: none;
    color: inherit;
}

.footer-v2__contact,
.footer-v2__bottom-rich {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
}

.footer-v2__contact :is(p, li),
.footer-v2__bottom-rich :is(p, li) {
    margin: 0 0 0.75rem;
}

.footer-v2__contact :is(ul, ol),
.footer-v2__bottom-rich :is(ul, ol) {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-v2__contact li:last-child,
.footer-v2__bottom-rich li:last-child {
    margin-bottom: 0;
}

.footer-v2__contact :is(p, li):last-child,
.footer-v2__bottom-rich :is(p, li):last-child {
    margin-bottom: 0;
}

.footer-v2__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-v2__socials a img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.footer-v2__badge img {
    max-width: 13.375rem;
    width: 100%;
    height: auto;
}

.footer-v2__bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 1.25rem;
}

.footer-v2__bottom-item {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 991px) {
    .footer-v2__brand {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-v2__bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-v2__brand-title {
        font-size: 1.375rem;
    }

    .footer-v2__main {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
    }

    .footer-v2__heading {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/** Heading title **/
.heading-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 15px;
}

.heading-title h2 {
    font-size: 28px;
    color: #e60023;
    position: relative;
    display: inline-block;
    padding: 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-title h2 span {
    position: relative;
    z-index: 2;
}

.heading-title h2::before,
.heading-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: #e60023;
    transform: translateY(-50%);
}

.heading-title h2::before {
    left: -70px;
}

.heading-title h2::after {
    right: -70px;
}

.heading-title p {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.85;
}

/** Partner **/
.partner {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.partner-wrapper {
    padding: 10px 0;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item a {
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    filter: grayscale(20%);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.partner-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
}

.partner-wrapper {
    position: relative;
}

.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.partner-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-prev {
    left: 10px;
}

.partner-next {
    right: 10px;
}

.partner-nav-btn i {
    font-size: 16px;
    color: #333;
}

/** Product Hot **/
.product-hot {
    padding: 60px 0px;
}

.product-hot-wrapper {
    position: relative;
}

/* Product Hot Navigation Styles */
.product-hot {
    position: relative;
}

.product-hot-wrapper {
    position: relative;
}

.product-hot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding-left: 16px;
    padding-right: 16px;
}

.product-hot-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-hot-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-hot-prev {
    left: 10px;
}

.product-hot-next {
    right: 10px;
}

.product-hot-nav-btn i {
    font-size: 16px;
    color: #333;
}

/* Existing Partner Navigation Styles */
.partner {
    position: relative;
}

.partner-wrapper {
    position: relative;
}

.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.partner-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-prev {
    left: 10px;
}

.partner-next {
    right: 10px;
}

.partner-nav-btn i {
    font-size: 16px;
    color: #333;
}

/** Product **/
.product-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-item .thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.product-item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .thumb img {
    transform: scale(1.1);
}

/* Product Overlay for Add to Cart */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-item:hover .add-to-cart-btn {
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Product Info */
.product-item .info {
    padding: 16px;
}

.product-item .info h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.product-item .info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-item .info h3 a:hover {
    color: #ff6b35;
}

.product-item .info p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Price Styles */
.price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-sale {
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}

.price-regular {
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

.price-contact {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/** Product category **/
.product-category {
    padding: 60px 0;
}

/** News Index **/
.news-index {
    padding: 60px 0;
}

.owl-news .owl-dots .owl-dot span {
    width: 36px;
    height: 3px;
    border-radius: 3px;
}

.owl-news .owl-dots .owl-dot.active span {
    background: #e60023;
}

.news-item-index {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-item-index:hover {
    transform: translateY(-4px);
}

.news-item-index .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-item-index .info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-index h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item-index h3 a {
    color: #333;
    text-decoration: none;
}

.news-item-index:hover h3 a {
    color: #e60023;
}

.news-item-index p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-read-more:hover {
    color: #007bff;
}

.btn-read-more:hover .arrow {
    transform: translateX(6px);
}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%) hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: #f8f9fa;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
}

.mobile-header-logo img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 2.75rem;
    height: auto;
    object-fit: contain;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px;
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 28px;
    color: #e60023;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 16px 0;
}

.breadcrumb-nav[class*="breadcrumb-nav--theme-"] .breadcrumb-link,
.breadcrumb-nav[class*="breadcrumb-nav--theme-"] .breadcrumb-current,
.breadcrumb-nav[class*="breadcrumb-nav--theme-"] .breadcrumb-separator,
.breadcrumb-nav[class*="breadcrumb-nav--theme-"] .breadcrumb-item {
    color: var(--breadcrumb-color);
}

.breadcrumb-nav[class*="breadcrumb-nav--theme-"] .breadcrumb-link:hover {
    color: var(--breadcrumb-color);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
    gap: 4px;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0;
    color: #999;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-icon-img,
.breadcrumb-separator-img {
    width: 24px;
    height: 24px;
    display: block;
}

.breadcrumb-main--hero .breadcrumb-nav {
    margin: 0;
}

.breadcrumb-main--hero .breadcrumb {
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.breadcrumb-main--hero .breadcrumb-item {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: var(--breadcrumb-color, var(--header-muted));
}

.breadcrumb-main--hero .breadcrumb-link,
.breadcrumb-main--hero .breadcrumb-current,
.breadcrumb-main--hero .breadcrumb-separator {
    color: var(--breadcrumb-color, var(--header-muted));
}

.breadcrumb-main--hero .breadcrumb-link {
    padding: 0;
}

.breadcrumb-main--hero .breadcrumb-current {
    font-weight: 400;
    padding: 0;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    right: 0.75rem;
    bottom: 4.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fixed-social .social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--bg-white);
    border: 0.03125rem solid #4cc2b4;
    border-radius: 50%;
    box-shadow: 0 0 0.25rem #faeac9;
    color: #4388b5;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-social .social-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.12);
}

.fixed-social .social-button img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.fixed-social .social-button svg {
    width: 1.625rem;
    height: 1.625rem;
    display: block;
}

.fixed-social .social-button--zalo {
    color: #248fcb;
}

@media (max-width: 575px) {
    .fixed-social {
        right: 0.5rem;
        bottom: 4.5rem;
        gap: 0.75rem;
    }

    .fixed-social .social-button {
        width: 2.75rem;
        height: 2.75rem;
    }

    .fixed-social .social-button img {
        width: 1.75rem;
        height: 1.75rem;
    }

    .fixed-social .social-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: center;
}

/** Go top **/
.go-top {
    position: fixed;
    bottom: 0.875rem;
    right: 0.875rem;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background: transparent;
}

.go-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 900;
    color: var(--header-primary-dark);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 400ms linear;
}

.go-top svg path {
    fill: none;
}

.go-top svg.progress-circle path {
    stroke: var(--header-primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/** CSS Content **/

.content-center-v1 {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.content-center-v1 img {
    height: auto !important;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100% !important;
}

.content-center-v1 p {
    word-spacing: 1.5px;
    text-align: justify;
    margin-bottom: 1rem;
}

.content-center-v1 p img {
    margin-bottom: 0px;
}

.content-center-v1 a:hover {
    text-decoration: underline;
}

.content-center-v1 ul,
.content-center-v1 ol {
    margin-left: 17px;
    margin-bottom: 1rem;
}

.content-center-v1 ul:last-child,
.content-center-v1 ol:last-child {
    margin-bottom: 0;
}

.coppy_right {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.coppy_right:hover {
    color: #0800e6;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(1, 129, 248, 0.7);
    transform: translateY(-2px);
}

.hidden-seo,
.h-card {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}