/*
 * Home-only presentation layer.
 * The body class is added by the home view so internal pages keep their
 * original layout and components.
 */
body.home-page {
    --home-ink: var(--heading_color, #010d4c);
    --home-text: var(--text_color, #2b2b2b);
    --home-muted: var(--text_muted, #8e9cba);
    --home-border: var(--border_color, #ececec);
    --home-accent: var(--primary_color, #09a18c);
    --home-accent-soft: var(--swiper_background_color, #ecf5f8);
    --home-surface: #ffffff;
    --home-radius: 18px;
    --home-shadow: 0 14px 34px rgba(15, 39, 56, .07);
    overflow-x: hidden;
}

body.home-page a:focus-visible,
body.home-page button:focus-visible,
body.home-page input:focus-visible,
body.home-page [tabindex]:focus-visible {
    outline: 3px solid rgba(9, 161, 140, .65);
    outline-offset: 3px;
}

/* Hero */
body.home-page .home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(390px, 31vw, 460px);
    background-position: center center;
    background-size: cover;
}

body.home-page .home-hero::before {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(1, 7, 25, .96) 0%, rgba(1, 10, 32, .84) 38%, rgba(1, 12, 31, .52) 70%, rgba(1, 6, 20, .68) 100%),
        linear-gradient(180deg, rgba(1, 7, 25, .18) 0%, rgba(1, 7, 25, .12) 55%, rgba(1, 7, 25, .62) 100%);
}

body.home-page .home-hero::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image:
        linear-gradient(rgba(112, 228, 215, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 228, 215, .09) 1px, transparent 1px),
        radial-gradient(circle at 72% 33%, rgba(9, 161, 140, .22), transparent 27%),
        radial-gradient(circle at 18% 90%, rgba(33, 70, 205, .25), transparent 30%);
    background-position: center center, center center, center center, center center;
    background-size: 72px 72px, 72px 72px, auto, auto;
    content: '';
    opacity: .52;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 5%, #000 38%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 5%, #000 38%, #000 100%);
}

body.home-page .home-hero > .container,
body.home-page .home-hero .header-inner,
body.home-page .home-hero-content {
    position: relative;
    z-index: 1;
}

body.home-page .home-hero .header-inner {
    align-items: center;
    min-height: clamp(390px, 31vw, 460px);
    padding: clamp(34px, 4vw, 54px) 16px clamp(32px, 3.7vw, 50px);
}

body.home-page .home-hero-content {
    max-width: 1040px;
}

body.home-page .home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 7px 13px 7px 8px;
    border: 1px solid rgba(141, 239, 226, .34);
    border-radius: 999px;
    background: rgba(3, 24, 48, .54);
    color: rgba(229, 255, 251, .9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

body.home-page .home-hero-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--home-accent);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0;
}

body.home-page .home-hero-title {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto 19px;
    color: #fff;
    font-size: clamp(32px, 4.25vw, 60px);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.14;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28);
}

body.home-page .home-hero-text {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(242, 248, 255, .86);
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.75;
}

body.home-page .home-hero-search {
    width: 100%;
    max-width: 860px;
    margin-top: clamp(27px, 3vw, 37px);
    margin-right: auto;
    margin-left: auto;
}

body.home-page .home-hero-search .search {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

body.home-page .home-hero-search .search-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 16px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .25), 0 0 0 5px rgba(255, 255, 255, .06);
}

body.home-page .home-hero-search .search-input input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 48px;
    padding: 0 16px 0 18px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    color: var(--home-text);
    font-size: 14px;
}

body.home-page .home-hero-search .search-input input::placeholder {
    color: #71809b;
    opacity: 1;
}

body.home-page .home-hero-search .search-input input:focus-visible {
    outline: 3px solid rgba(9, 161, 140, .6);
    outline-offset: -3px;
}

body.home-page .home-hero-search .search-input .btn {
    position: static;
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 48px;
    padding: 0 22px;
    transform: none;
    border: 1px solid var(--home-accent);
    border-radius: 11px;
    background: var(--home-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.home-page .home-hero-search .search-input .btn:hover {
    border-color: var(--home-accent);
    background: var(--home-accent);
    box-shadow: 0 8px 18px rgba(9, 161, 140, .25);
    opacity: 1;
    transform: translateY(-1px);
}

body.home-page .home-hero-search .search-input .btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .9);
    outline-offset: 3px;
}

body.home-page .home-hero-search .search-input .btn i {
    margin-inline-end: 2px;
}

body.home-page .home-categories-section,
body.home-page .home-featured-author-section,
body.home-page .home-latest-section,
body.home-page .home-faq-section,
body.home-page .home-testimonials-section,
body.home-page .home-footer {
    position: relative;
}

body.home-page .home-section-header {
    margin-bottom: 30px;
    text-align: start;
}

body.home-page .home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

body.home-page .home-section-heading-copy {
    min-width: 0;
}

body.home-page .home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--home-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.home-page .home-section-kicker i {
    font-size: 12px;
}

body.home-page .home-section-header .section-title {
    margin-bottom: 0;
}

body.home-page .home-section-header .section-title-text {
    color: var(--home-ink);
    font-size: clamp(24px, 2.1vw, 31px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
}

body.home-page .home-section-header .section-title-divider {
    width: 48px;
    height: 3px;
    margin-top: 12px;
    margin-inline: 0;
    border-radius: 99px;
    background: var(--home-accent);
}

body.home-page .home-section-header .section-text {
    max-width: 720px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.75;
}

body.home-page .home-section-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    color: var(--home-accent);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

body.home-page .home-section-link:hover {
    color: var(--home-ink);
    transform: translateX(3px);
}

body.home-page .home-section-link i {
    font-size: 11px;
}

body.home-page .home-mobile-section-link {
    margin-top: 18px;
    text-align: center;
}

/* Categories */
body.home-page .home-categories-section {
    padding-top: 66px;
    padding-bottom: 52px;
    background: var(--home-surface);
}

body.home-page .home-categories-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.home-page .home-categories-slider .categoriesSwiper {
    min-width: 0;
    flex: 1 1 auto;
    padding: 5px 2px 12px;
}

body.home-page .home-categories-slider .swiper-wrapper {
    align-items: stretch;
}

body.home-page .home-categories-slider .swiper-slide {
    height: auto !important;
}

body.home-page .home-categories-slider .swiper-actions {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
}

body.home-page .home-categories-slider .swiper-actions .swiper-button-prev,
body.home-page .home-categories-slider .swiper-actions .swiper-button-next {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid var(--home-border);
    border-radius: 50%;
    background: var(--home-surface);
    color: var(--home-accent);
    font-size: 12px;
    box-shadow: 0 5px 16px rgba(15, 39, 56, .06);
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

body.home-page .home-categories-slider .swiper-actions .swiper-button-prev::after,
body.home-page .home-categories-slider .swiper-actions .swiper-button-next::after {
    display: none;
    content: none;
}

body.home-page .home-categories-slider .swiper-actions .swiper-button-prev:hover,
body.home-page .home-categories-slider .swiper-actions .swiper-button-next:hover {
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #fff;
    transform: translateY(-2px);
}

body.home-page .home-category-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 178px;
    padding: 23px 16px 20px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    background: linear-gradient(160deg, #fff 0%, #fff 72%, var(--home-accent-soft) 160%);
    box-shadow: 0 8px 24px rgba(15, 39, 56, .035);
    text-align: center;
    text-decoration: none;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.home-page .home-category-card::before {
    position: absolute;
    top: -34px;
    right: -28px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--home-accent-soft);
    content: '';
    opacity: .65;
    transition: transform .25s ease;
}

body.home-page .home-category-card:hover {
    border-color: var(--home-accent);
    box-shadow: var(--home-shadow);
    transform: translateY(-5px);
}

body.home-page .home-category-card:hover::before {
    transform: scale(1.35);
}

body.home-page .home-category-card .home-category-img {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 17px;
    border: 1px solid rgba(9, 161, 140, .11);
    border-radius: 50%;
    background: var(--home-accent-soft);
    transition: background-color .25s ease, transform .25s ease;
}

body.home-page .home-category-card .home-category-img img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

body.home-page .home-category-card:hover .home-category-img {
    background: #fff;
    transform: scale(1.06);
}

body.home-page .home-category-card .home-category-title {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home-page .home-category-card:hover .home-category-title {
    color: var(--home-accent);
}

body.home-page .home-category-arrow {
    position: absolute;
    right: 13px;
    bottom: 13px;
    color: var(--home-accent);
    font-size: 10px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

body.home-page .home-category-card:hover .home-category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Featured author */
body.home-page .home-featured-author-section {
    padding-top: 18px;
    padding-bottom: 58px;
    background: var(--background_color, #f8f8f8);
}

body.home-page .home-featured-author-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(9, 161, 140, .15);
    border-radius: 24px;
    background: linear-gradient(132deg, #fff 0%, #fff 62%, var(--home-accent-soft) 145%);
    box-shadow: var(--home-shadow);
}

body.home-page .home-featured-author-card::after {
    position: absolute;
    right: -78px;
    bottom: -95px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(9, 161, 140, .13);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

body.home-page .home-featured-author-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

body.home-page .home-featured-author-title {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(23px, 2.2vw, 31px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.2;
}

body.home-page .home-featured-author-description {
    max-width: 700px;
    margin: 10px 0 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
}

body.home-page .home-featured-author-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(9, 161, 140, .16);
    border-radius: 16px;
    background: var(--home-accent-soft);
    color: var(--home-accent);
    font-size: 21px;
}

body.home-page .home-featured-author-profile {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .75);
}

body.home-page .home-featured-author-avatar {
    display: block;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 3px;
    border: 2px solid var(--home-accent);
    border-radius: 50%;
    background: var(--home-surface);
}

body.home-page .home-featured-author-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

body.home-page .home-featured-author-info {
    min-width: 0;
}

body.home-page .home-featured-author-name {
    display: block;
    overflow: hidden;
    color: var(--home-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home-page .home-featured-author-name:hover {
    color: var(--home-accent);
}

body.home-page .home-featured-author-meta {
    margin: 4px 0 12px;
    color: var(--home-muted);
    font-size: 12px;
}

body.home-page .home-featured-author-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

body.home-page .home-featured-author-actions .btn {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
}

body.home-page .home-featured-author-profile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-inline-start: auto;
    border: 1px solid var(--home-border);
    border-radius: 50%;
    color: var(--home-accent);
    font-size: 12px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

body.home-page .home-featured-author-profile-arrow:hover {
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #fff;
    transform: translate(2px, -2px);
}

body.home-page .home-featured-author-products {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--home-border);
}

body.home-page .home-featured-author-products-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 700;
}

body.home-page .home-featured-author-products-line {
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: var(--home-accent);
}

body.home-page .home-featured-author-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.home-page .home-featured-author-item,
body.home-page .home-latest-item {
    min-width: 0;
}

/* Latest items */
body.home-page .home-latest-section {
    padding-top: 62px;
    padding-bottom: 66px;
    background: var(--home-surface);
}

body.home-page .home-latest-section .home-section-header {
    text-align: center;
}

body.home-page .home-latest-section .home-section-heading {
    justify-content: center;
}

body.home-page .home-latest-section .home-section-heading-copy {
    max-width: 760px;
}

body.home-page .home-latest-section .home-section-header .section-title-divider {
    margin-inline: auto;
}

body.home-page .home-latest-section .home-section-header .section-text {
    margin-inline: auto;
}

body.home-page .home-latest-tabs {
    margin: 0 auto 25px;
}

body.home-page .home-latest-tabs-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    padding: 4px 2px 7px;
    overflow-x: auto;
    scrollbar-width: thin;
}

body.home-page .home-latest-tabs-scroll > .col {
    flex: 0 0 auto;
    padding: 0;
}

body.home-page .home-latest-tabs .custom-tabs-item {
    min-height: 38px;
    padding: 9px 15px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    background: var(--home-surface);
    color: var(--home-text);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

body.home-page .home-latest-tabs .custom-tabs-item:hover,
body.home-page .home-latest-tabs .custom-tabs-item.active {
    border-color: var(--home-accent);
    background: var(--home-accent-soft);
    color: var(--home-accent);
    box-shadow: none;
}

body.home-page .home-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.home-page .home-latest-item .item,
body.home-page .home-featured-author-item .item {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    background: var(--home-surface);
    box-shadow: 0 7px 22px rgba(15, 39, 56, .045);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.home-page .home-latest-item .item:hover,
body.home-page .home-featured-author-item .item:hover {
    border-color: rgba(9, 161, 140, .45);
    box-shadow: var(--home-shadow);
    transform: translateY(-4px);
}

body.home-page .home-latest-item .item .item-img,
body.home-page .home-featured-author-item .item .item-img {
    display: block;
    height: 185px;
    object-fit: cover;
}

body.home-page .home-latest-item .item .item-body,
body.home-page .home-featured-author-item .item .item-body {
    padding: 17px;
}

body.home-page .home-latest-item .item .item-title,
body.home-page .home-featured-author-item .item .item-title {
    margin-bottom: 7px;
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 700;
}

body.home-page .home-latest-item .item .item-text,
body.home-page .home-featured-author-item .item .item-text {
    min-height: 34px;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.55;
}

body.home-page .home-latest-item .item .item-ratings,
body.home-page .home-featured-author-item .item .item-ratings {
    margin-bottom: 10px;
}

body.home-page .home-latest-item .item .item-price,
body.home-page .home-featured-author-item .item .item-price {
    font-size: 16px;
}

body.home-page .home-latest-item .item .item-sales,
body.home-page .home-featured-author-item .item .item-sales {
    color: var(--home-muted);
    font-size: 10px;
}

body.home-page .home-latest-item .item .item-badge,
body.home-page .home-featured-author-item .item .item-badge {
    top: 14px;
    padding: 7px 10px;
    border-radius: 0 8px 8px 0;
    font-size: 9px;
}

body.home-page .home-latest-item .item .item-purchase .btn,
body.home-page .home-featured-author-item .item .item-purchase .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 9px;
    font-size: 11px;
}

body.home-page .home-empty-state {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 20px 24px;
    border: 1px dashed rgba(9, 161, 140, .35);
    border-radius: 16px;
    background: linear-gradient(110deg, var(--home-accent-soft), #fff 75%);
}

body.home-page .home-empty-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--home-surface);
    color: var(--home-accent);
    font-size: 18px;
}

body.home-page .home-empty-state-copy {
    min-width: 0;
}

body.home-page .home-empty-state-copy h3,
body.home-page .home-empty-state-copy p {
    margin: 0;
}

body.home-page .home-empty-state-copy h3 {
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 700;
}

body.home-page .home-empty-state-copy p {
    margin-top: 4px;
    color: var(--home-muted);
    font-size: 11px;
}

body.home-page .home-empty-state .btn {
    margin-inline-start: auto;
    flex: 0 0 auto;
    border-radius: 9px;
    font-size: 11px;
    white-space: nowrap;
}

/* FAQ */
body.home-page .home-faq-section {
    padding-top: 65px;
    padding-bottom: 62px;
    background: var(--background_color, #f8f8f8);
}

body.home-page .home-faq-section .home-section-header {
    text-align: center;
}

body.home-page .home-faq-section .home-section-heading {
    justify-content: center;
}

body.home-page .home-faq-section .home-section-header .section-title-divider {
    margin-inline: auto;
}

body.home-page .home-faq-section .home-section-header .section-text {
    margin-inline: auto;
}

body.home-page .home-faq-list .row {
    row-gap: 12px;
}

body.home-page .home-faq-col {
    display: flex;
}

body.home-page .home-faq-item {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 14px;
    background: var(--home-surface);
    box-shadow: 0 6px 20px rgba(15, 39, 56, .035);
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.home-page .home-faq-item:focus-within {
    border-color: rgba(9, 161, 140, .42);
    box-shadow: 0 9px 24px rgba(9, 161, 140, .08);
}

body.home-page .home-faq-item .accordion-button {
    min-height: 64px;
    padding: 15px 17px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: start;
}

body.home-page .home-faq-item .accordion-button:not(.collapsed) {
    color: var(--home-accent);
    box-shadow: none;
}

body.home-page .home-faq-item .accordion-button:focus {
    box-shadow: none;
}

body.home-page .home-faq-item .accordion-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    margin-inline-end: 12px;
    border-radius: 9px;
    background: var(--home-accent-soft);
    color: var(--home-accent);
}

body.home-page .home-faq-item .accordion-button-icon i {
    font-size: 10px;
}

body.home-page .home-faq-item .accordion-body {
    padding: 0 18px 18px 58px;
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.75;
}

body.home-page .home-faq-item .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Testimonials */
body.home-page .home-testimonials-section {
    padding-top: 63px;
    padding-bottom: 70px;
    background: var(--home-surface);
}

body.home-page .home-testimonials-header {
    margin-bottom: 24px;
}

body.home-page .home-testimonials-header .row {
    row-gap: 18px;
}

body.home-page .home-testimonials-header .section-text {
    margin-inline: 0;
}

body.home-page .home-testimonials-header .testimonials-swiper-actions {
    gap: 8px;
}

body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-prev,
body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-next {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    background: var(--home-surface);
    color: var(--home-accent);
    font-size: 11px;
    box-shadow: 0 5px 14px rgba(15, 39, 56, .06);
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-prev::after,
body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-next::after {
    display: none;
    content: none;
}

body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-prev:hover,
body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-next:hover {
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #fff;
    transform: translateY(-2px);
}

body.home-page .home-testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

body.home-page .home-testimonials-slider .swiper-slide {
    height: auto;
}

body.home-page .home-testimonial-card {
    position: relative;
    align-items: flex-start;
    min-height: 270px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff 0%, #fff 70%, var(--home-accent-soft) 160%);
    box-shadow: 0 8px 24px rgba(15, 39, 56, .045);
    text-align: start;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.home-page .home-testimonial-card::before {
    position: absolute;
    top: 0;
    left: 28px;
    width: 42px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: var(--home-accent);
    content: '';
}

body.home-page .home-testimonial-card:hover {
    border-color: rgba(9, 161, 140, .35);
    box-shadow: var(--home-shadow);
    transform: translateY(-4px);
}

body.home-page .home-testimonial-card .testimonial-img {
    width: 64px;
    height: 64px;
    margin: 0 0 20px;
}

body.home-page .home-testimonial-card .testimonial-img img {
    border: 3px solid var(--home-accent-soft);
    object-fit: cover;
}

body.home-page .home-testimonial-card .testimonial-quote {
    right: -3px;
    bottom: -3px;
    width: 26px;
    height: 26px;
    font-size: 10px;
}

body.home-page .home-testimonial-card .testimonial-text {
    margin-bottom: 22px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.75;
}

body.home-page .home-testimonial-card .testimonial-author {
    align-items: flex-start;
}

body.home-page .home-testimonial-card .testimonial-author::before {
    width: 34px;
    height: 2px;
    margin: 0 0 12px;
}

body.home-page .home-testimonial-card .testimonial-name {
    margin-bottom: 4px;
    color: var(--home-ink);
    font-size: 13px;
}

body.home-page .home-testimonial-card .testimonial-place {
    color: var(--home-muted);
    font-size: 11px;
}

/* Footer: presentation is home-only; all existing links/settings remain intact. */
body.home-page .home-footer {
    background: var(--footer_background_color, #222222);
    color: #fff;
}

body.home-page .home-footer .footer-upper {
    padding-top: 62px;
    padding-bottom: 48px;
    background: linear-gradient(150deg, var(--footer_background_color, #222222), #17232b);
}

body.home-page .home-footer .footer-upper > .container > .row {
    align-items: flex-start;
}

body.home-page .home-footer .logo img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 36px;
}

body.home-page .home-footer .footer-text {
    color: var(--footer_text_color, #888);
    font-size: 12px;
    line-height: 1.7;
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 .footer-text {
    max-width: 330px;
}

body.home-page .home-footer .socials-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.home-page .home-footer .socials-footer .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 11px;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

body.home-page .home-footer .socials-footer .social-btn:hover {
    border-color: var(--home-accent);
    background: var(--home-accent);
    transform: translateY(-2px);
}

body.home-page .home-footer .footer-counter {
    min-width: 100px;
    padding-inline-end: 18px;
    border-inline-end: 1px solid rgba(255, 255, 255, .14);
}

body.home-page .home-footer .footer-counter:last-child {
    padding-inline-start: 2px;
    border-inline-end: 0;
}

body.home-page .home-footer .footer-counter-text {
    margin-bottom: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

body.home-page .home-footer .footer-counter-title {
    color: var(--footer_text_color, #888);
    font-size: 10px;
    font-weight: 500;
}

body.home-page .home-footer .footer-title .h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

body.home-page .home-footer .footer-title-divider {
    width: 32px;
    height: 3px;
    margin-top: 8px;
    border-radius: 99px;
    background: var(--home-accent);
}

body.home-page .home-footer .footer-links .footer-link:not(:last-child) {
    margin-bottom: 10px;
}

body.home-page .home-footer .footer-link,
body.home-page .home-footer .footer-link a {
    color: var(--footer_text_color, #888);
    font-size: 11px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s ease;
}

body.home-page .home-footer .footer-link:hover,
body.home-page .home-footer .footer-link a:hover {
    color: #fff;
}

body.home-page .home-footer .footer-payment {
    max-width: 215px;
}

body.home-page .home-footer .footer-lower {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--footer_border_color, #292929);
    background: rgba(0, 0, 0, .12);
}

body.home-page .home-footer .footer-copyright {
    color: var(--footer_text_color, #888);
    font-size: 11px;
}

/* Responsive behavior */
@media (max-width: 1199.98px) {
    body.home-page .home-latest-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body.home-page .home-categories-section,
    body.home-page .home-faq-section,
    body.home-page .home-testimonials-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    body.home-page .home-featured-author-section,
    body.home-page .home-latest-section {
        padding-top: 12px;
        padding-bottom: 48px;
    }

    body.home-page .home-featured-author-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-page .home-latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-page .home-footer .footer-upper {
        padding-top: 48px;
        padding-bottom: 38px;
    }
}

@media (max-width: 767.98px) {
    body.home-page .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    body.home-page .home-section-header {
        margin-bottom: 22px;
    }

    body.home-page .home-section-header .section-text {
        font-size: 13px;
    }

    body.home-page .home-categories-slider {
        gap: 6px;
    }

    body.home-page .home-categories-slider .swiper-actions {
        flex-basis: 32px;
    }

    body.home-page .home-categories-slider .swiper-actions .swiper-button-prev,
    body.home-page .home-categories-slider .swiper-actions .swiper-button-next {
        width: 32px;
        height: 32px;
    }

    body.home-page .home-category-card {
        min-height: 160px;
        padding: 19px 12px 18px;
        border-radius: 14px;
    }

    body.home-page .home-category-card .home-category-img {
        width: 60px;
        height: 60px;
        margin-bottom: 13px;
    }

    body.home-page .home-category-card .home-category-img img {
        width: 45px;
        height: 45px;
    }

    body.home-page .home-category-card .home-category-title {
        font-size: 11px;
    }

    body.home-page .home-featured-author-card {
        padding: 23px 18px;
        border-radius: 19px;
    }

    body.home-page .home-featured-author-mark {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 16px;
    }

    body.home-page .home-featured-author-profile {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 15px;
    }

    body.home-page .home-featured-author-profile-arrow {
        margin-inline-start: auto;
    }

    body.home-page .home-featured-author-info {
        flex: 1 1 calc(100% - 90px);
    }

    body.home-page .home-featured-author-items,
    body.home-page .home-latest-grid {
        gap: 13px;
    }

    body.home-page .home-latest-tabs-scroll {
        justify-content: flex-start;
    }

    body.home-page .home-empty-state {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 18px;
    }

    body.home-page .home-empty-state-copy {
        flex: 1 1 calc(100% - 62px);
    }

    body.home-page .home-empty-state .btn {
        margin-inline-start: 60px;
    }

    body.home-page .home-faq-item .accordion-button {
        min-height: 58px;
        padding: 13px 14px;
        font-size: 12px;
    }

    body.home-page .home-faq-item .accordion-body {
        padding: 0 15px 16px 55px;
        font-size: 11px;
    }

    body.home-page .home-testimonials-header .row > .col:last-child {
        width: 100%;
    }

    body.home-page .home-testimonials-header .testimonials-swiper-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    body.home-page .home-section-header .section-title-text,
    body.home-page .home-featured-author-title {
        font-size: 23px;
    }

    body.home-page .home-categories-slider .swiper-actions {
        display: none;
    }

    body.home-page .home-featured-author-heading {
        gap: 10px;
    }

    body.home-page .home-featured-author-description {
        font-size: 12px;
    }

    body.home-page .home-featured-author-items,
    body.home-page .home-latest-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .home-latest-item .item .item-img,
    body.home-page .home-featured-author-item .item .item-img {
        height: 205px;
    }

    body.home-page .home-testimonial-card {
        min-height: 245px;
        padding: 23px;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 .footer-text {
        max-width: none;
    }

    body.home-page .home-footer .footer-counter {
        min-width: 90px;
    }

    body.home-page .home-footer .footer-payment {
        margin-inline: auto;
    }
}

/* Hero responsive behavior */
@media (max-width: 991.98px) {
    body.home-page .home-hero {
        background-position: 58% center;
    }

    body.home-page .home-hero-search .search-input .btn {
        min-width: 60px;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 767.98px) {
    body.home-page .home-hero {
        min-height: 430px;
        background-position: 63% center;
    }

    body.home-page .home-hero::before {
        background:
            linear-gradient(180deg, rgba(1, 7, 25, .82) 0%, rgba(1, 8, 27, .88) 55%, rgba(1, 7, 25, .94) 100%),
            linear-gradient(90deg, rgba(1, 7, 25, .9), rgba(1, 10, 32, .56));
    }

    body.home-page .home-hero .header-inner {
        min-height: 430px;
        padding: 44px 8px 42px;
    }

    body.home-page .home-hero-eyebrow {
        margin-bottom: 16px;
        padding: 6px 11px 6px 7px;
        font-size: 10px;
    }

    body.home-page .home-hero-eyebrow-icon {
        flex-basis: 23px;
        width: 23px;
        height: 23px;
        font-size: 10px;
    }

    body.home-page .home-hero-title {
        margin-bottom: 16px;
        font-size: clamp(29px, 7.2vw, 42px);
        letter-spacing: -.035em;
        line-height: 1.18;
    }

    body.home-page .home-hero-text {
        max-width: 560px;
        font-size: 13px;
        line-height: 1.7;
    }

    body.home-page .home-hero-search {
        margin-top: 24px;
    }

    body.home-page .home-hero-search .search-input {
        gap: 5px;
        padding: 6px;
        border-radius: 13px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .24), 0 0 0 4px rgba(255, 255, 255, .05);
    }

    body.home-page .home-hero-search .search-input input {
        height: 48px;
        padding-right: 9px;
        padding-left: 11px;
        font-size: 13px;
    }

    body.home-page .home-hero-search .search-input .btn {
        min-width: 52px;
        min-height: 48px;
        width: 52px;
        padding-right: 0;
        padding-left: 0;
        border-radius: 9px;
    }

    body.home-page .home-hero-search .search-input .btn i {
        margin-inline-end: 0;
    }
}

@media (max-width: 399.98px) {
    body.home-page .home-hero .header-inner {
        padding-right: 4px;
        padding-left: 4px;
    }

    body.home-page .home-hero-title {
        font-size: 28px;
    }

    body.home-page .home-hero-text {
        font-size: 12px;
    }

    body.home-page .home-hero-search .search-input input {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page *,
    body.home-page *::before,
    body.home-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    body.home-page [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Desktop readability: keep the mobile/tablet scale and home behaviour intact. */
@media (min-width: 992px) {
    body.home-page .home-hero-eyebrow {
        font-size: 12px;
    }

    body.home-page .home-hero-text {
        font-size: clamp(15px, 1.2vw, 18px);
    }

    body.home-page .home-hero-search .search-input input {
        font-size: 15px;
    }

    body.home-page .home-hero-search .search-input .btn {
        font-size: 14px;
    }

    body.home-page .home-section-kicker {
        font-size: 12px;
    }

    body.home-page .home-section-kicker i {
        font-size: 13px;
    }

    body.home-page .home-section-header .section-title-text {
        font-size: clamp(25px, 2.2vw, 33px);
    }

    body.home-page .home-section-header .section-text {
        font-size: 15px;
    }

    body.home-page .home-section-link {
        font-size: 13px;
    }

    body.home-page .home-section-link i {
        font-size: 12px;
    }

    body.home-page .home-category-card .home-category-title {
        font-size: 14px;
    }

    body.home-page .home-category-arrow {
        font-size: 11px;
    }

    body.home-page .home-featured-author-title {
        font-size: clamp(24px, 2.25vw, 33px);
    }

    body.home-page .home-featured-author-description {
        font-size: 15px;
    }

    body.home-page .home-featured-author-name {
        font-size: 19px;
    }

    body.home-page .home-featured-author-meta,
    body.home-page .home-featured-author-actions .btn,
    body.home-page .home-featured-author-products-heading {
        font-size: 13px;
    }

    body.home-page .home-latest-tabs .custom-tabs-item {
        font-size: 12px;
    }

    body.home-page .home-latest-item .item .item-title,
    body.home-page .home-featured-author-item .item .item-title {
        font-size: 15px;
    }

    body.home-page .home-latest-item .item .item-text,
    body.home-page .home-featured-author-item .item .item-text {
        font-size: 12px;
    }

    body.home-page .home-latest-item .item .item-price,
    body.home-page .home-featured-author-item .item .item-price {
        font-size: 17px;
    }

    body.home-page .home-latest-item .item .item-sales,
    body.home-page .home-featured-author-item .item .item-sales {
        font-size: 11px;
    }

    body.home-page .home-latest-item .item .item-badge,
    body.home-page .home-featured-author-item .item .item-badge {
        font-size: 10px;
    }

    body.home-page .home-latest-item .item .item-purchase .btn,
    body.home-page .home-featured-author-item .item .item-purchase .btn {
        font-size: 12px;
    }

    body.home-page .home-empty-state-copy h3 {
        font-size: 15px;
    }

    body.home-page .home-empty-state-copy p,
    body.home-page .home-empty-state .btn {
        font-size: 12px;
    }

    body.home-page .home-faq-item .accordion-button {
        font-size: 14px;
    }

    body.home-page .home-faq-item .accordion-button-icon i {
        font-size: 11px;
    }

    body.home-page .home-faq-item .accordion-body {
        font-size: 13px;
    }

    body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-prev,
    body.home-page .home-testimonials-header .testimonials-swiper-actions .swiper-button-next {
        font-size: 12px;
    }

    body.home-page .home-testimonial-card .testimonial-quote {
        font-size: 11px;
    }

    body.home-page .home-testimonial-card .testimonial-text {
        font-size: 14px;
    }

    body.home-page .home-testimonial-card .testimonial-name {
        font-size: 14px;
    }

    body.home-page .home-testimonial-card .testimonial-place {
        font-size: 12px;
    }

    body.home-page .home-footer .footer-text {
        font-size: 13px;
    }

    body.home-page .home-footer .socials-footer .social-btn {
        font-size: 12px;
    }

    body.home-page .home-footer .footer-counter-text {
        font-size: 16px;
    }

    body.home-page .home-footer .footer-counter-title {
        font-size: 11px;
    }

    body.home-page .home-footer .footer-title .h5 {
        font-size: 14px;
    }

    body.home-page .home-footer .footer-link,
    body.home-page .home-footer .footer-link a {
        font-size: 12px;
    }

    body.home-page .home-footer .footer-copyright {
        font-size: 12px;
    }
}

/* Premium public header: visual-only layer for the home page. */
body.home-page > .announcement {
    position: relative;
    z-index: 60;
    isolation: isolate;
    min-height: 45px;
    padding: 8px 54px 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .08), 0 5px 18px rgba(0, 0, 0, .11);
}

body.home-page > .announcement::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(circle at 14% 50%, rgba(255, 255, 255, .17), transparent 24%),
        linear-gradient(100deg, rgba(255, 255, 255, .08), transparent 38%, rgba(0, 0, 0, .08));
    content: '';
    pointer-events: none;
}

body.home-page > .announcement .container-custom {
    position: relative;
    z-index: 1;
    min-height: 27px;
    justify-content: center;
    gap: 8px;
}

body.home-page > .announcement .announcement-text {
    width: min(100%, 980px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .01em;
    text-align: center;
}

body.home-page > .announcement .announcement-text::before {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .12), 0 0 14px rgba(255, 255, 255, .5);
    content: '';
}

body.home-page > .announcement .announcement-text > span {
    display: inline-block;
    max-width: min(100%, 760px);
    text-wrap: balance;
}

body.home-page > .announcement .announcement-text .btn {
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin: 0 !important;
    min-height: 28px;
    padding: 5px 13px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.home-page > .announcement .announcement-text .btn::after {
    position: absolute;
    z-index: -1;
    top: -20%;
    bottom: -20%;
    left: -45%;
    width: 34%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .3), transparent);
    content: '';
    pointer-events: none;
    transform: skewX(-18deg);
    transition: left .55s ease;
}

body.home-page > .announcement .announcement-text .btn:hover {
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .18);
    transform: translateY(-1px);
}

body.home-page > .announcement .announcement-text .btn:hover::after {
    left: 118%;
}

body.home-page > .announcement .announcement-close {
    right: auto;
    left: auto;
    inset-inline-end: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .08);
    color: inherit;
    cursor: pointer;
    font-size: 11px;
    line-height: 1;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.home-page > .announcement .announcement-close:hover {
    border-color: rgba(255, 255, 255, .55);
    background-color: rgba(255, 255, 255, .14);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
    transform: translateY(-1px);
}

body.home-page > .announcement .announcement-close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .95);
    outline-offset: 3px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) {
    position: relative;
    top: 0;
    z-index: 50;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background-color: var(--navbar1_background_color);
    box-shadow: 0 8px 24px rgba(2, 14, 27, .14);
}

body.home-page > .nav-bar:not(.nav-bar-sm)::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(105deg, rgba(9, 161, 140, .12), transparent 36%, rgba(255, 255, 255, .035) 100%);
    content: '';
    pointer-events: none;
}

body.home-page > .nav-bar:not(.nav-bar-sm) > .container {
    position: relative;
    z-index: 1;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-container {
    min-height: 76px;
    height: 76px;
    gap: 16px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .logo {
    flex: 0 0 auto;
    height: 38px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu {
    min-width: 0;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu-inner {
    gap: 8px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links {
    gap: 5px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .link,
body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .drop-down {
    margin-inline: 0;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .link,
body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .drop-down .drop-down-btn {
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .link:hover,
body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-links > .drop-down .drop-down-btn:hover {
    border-color: rgba(255, 255, 255, .14);
    background-color: rgba(255, 255, 255, .07);
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons {
    flex: 0 0 auto;
    gap: 8px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons .link-btn:not(:last-child) {
    margin-inline-end: 0;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons .cart-btn .btn {
    width: 42px;
    padding: 0;
    border-color: rgba(255, 255, 255, .36);
    background-color: rgba(255, 255, 255, .06);
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons .cart-btn .btn:hover {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
    color: #fff;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-buttons .btn-outline-primary {
    background-color: transparent;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions {
    flex: 0 0 auto;
    gap: 8px;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu {
    margin: 0;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu > .drop-down-btn {
    min-height: 42px;
    padding: 4px 9px 4px 5px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 11px;
    color: #fff;
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu > .drop-down-btn:hover {
    border-color: rgba(255, 255, 255, .34);
    background-color: rgba(255, 255, 255, .07);
}

body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu .user-img {
    width: 32px;
    height: 32px;
    margin-inline-end: 8px;
    border: 2px solid rgba(255, 255, 255, .24);
}

body.home-page > .nav-bar:not(.nav-bar-sm) .cart-btn .cart-counter {
    top: -6px;
    inset-inline-end: -6px;
    min-width: 20px;
    padding: 2px 5px;
    border: 2px solid var(--navbar1_background_color);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

body.home-page > .nav-bar.nav-bar-sm {
    position: relative;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--border_color);
    background-color: var(--navbar2_background_color);
    box-shadow: 0 8px 22px rgba(18, 38, 63, .08);
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-container {
    height: 64px;
    min-height: 64px;
    gap: 14px;
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu {
    min-width: 0;
    flex: 1 1 auto;
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-inner {
    min-width: 0;
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-links {
    gap: 3px;
}

@media (min-width: 1200px) {
    body.home-page > .nav-bar.nav-bar-sm .nav-bar-links {
        margin-inline-start: 0;
        flex-wrap: nowrap;
    }
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .link,
body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .drop-down {
    margin: 0 1px;
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .link,
body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .drop-down .drop-down-btn {
    padding: 10px 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text_muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .link:hover,
body.home-page > .nav-bar.nav-bar-sm .nav-bar-links > .drop-down .drop-down-btn:hover {
    border-color: var(--border_color);
    background-color: var(--swiper_background_color);
    color: var(--primary_color);
}

body.home-page > .nav-bar.nav-bar-sm .ms-auto {
    flex: 0 0 auto;
}

body.home-page > .nav-bar.nav-bar-sm .form-search {
    width: clamp(220px, 22vw, 300px);
}

body.home-page > .nav-bar.nav-bar-sm .form-search .form-control {
    height: 42px;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid var(--border_color);
    border-radius: 11px;
    background-color: var(--navbar2_background_color);
    color: var(--text_color);
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(18, 38, 63, .04);
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.home-page > .nav-bar.nav-bar-sm .form-search .form-control::placeholder {
    color: var(--text_muted);
    opacity: .9;
}

body.home-page > .nav-bar.nav-bar-sm .form-search .form-control:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 0 4px rgba(9, 161, 140, .12);
}

body.home-page > .nav-bar.nav-bar-sm .form-search .icon {
    width: 42px;
    color: var(--text_muted);
    transition: color .2s ease;
}

body.home-page > .nav-bar.nav-bar-sm .form-search:focus-within .icon {
    color: var(--primary_color);
}

body.home-page .nav-bar .drop-down .drop-down-menu {
    margin-top: 8px;
    padding: 6px;
    border: 1px solid var(--border_color);
    border-radius: 13px;
    box-shadow: 0 16px 34px rgba(9, 31, 54, .16);
}

body.home-page .nav-bar .drop-down .drop-down-menu .drop-down-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color .2s ease, color .2s ease;
}

body.home-page .nav-bar .drop-down .drop-down-menu .drop-down-item:hover,
body.home-page .nav-bar .drop-down .drop-down-menu .drop-down-item.active {
    background-color: var(--primary_color);
}

@media (max-width: 1199.98px) {
    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-container {
        height: 68px;
        min-height: 68px;
        gap: 10px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .logo {
        height: 33px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions {
        margin-inline-start: auto;
        gap: 7px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu,
    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu .user-img {
        margin: 0 !important;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions .user-menu .user-img {
        width: 34px;
        height: 34px;
    }

    body.home-page .nav-bar .nav-bar-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 11px;
        background-color: rgba(255, 255, 255, .06);
        color: #fff;
        transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    body.home-page .nav-bar .nav-bar-menu-btn:hover {
        border-color: var(--primary_color);
        background-color: var(--primary_color);
        opacity: 1;
        transform: translateY(-1px);
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-btn {
        border-color: var(--border_color);
        background-color: var(--swiper_background_color);
        color: var(--primary_color);
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-btn:hover {
        border-color: var(--primary_color);
        background-color: var(--primary_color);
        color: #fff;
    }

    body.home-page .nav-bar .nav-bar-menu-inner {
        width: min(300px, calc(100vw - 24px));
        padding: 20px 17px;
        box-shadow: 18px 0 42px rgba(0, 0, 0, .2);
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu-inner {
        background-color: var(--navbar1_background_color);
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-inner {
        background-color: var(--navbar2_background_color);
        box-shadow: 18px 0 42px rgba(18, 38, 63, .15);
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-menu-header {
        min-height: 39px;
        margin-bottom: 17px;
        padding-bottom: 13px;
        border-bottom: 1px solid var(--border_color);
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-menu-header .nav-bar-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin: 0;
        border: 1px solid var(--border_color);
        border-radius: 10px;
        background-color: transparent;
        color: var(--primary_color);
        transition: background-color .2s ease, color .2s ease;
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-menu-header .nav-bar-menu-close:hover {
        background-color: var(--primary_color);
        color: #fff;
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .link,
    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .drop-down,
    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .link-btn {
        width: 100%;
        margin: 0 !important;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu .nav-bar-links > .link,
    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu .nav-bar-links > .drop-down .drop-down-btn {
        border-color: rgba(255, 255, 255, .1);
        color: #fff;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu .nav-bar-links > .link:hover,
    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-menu .nav-bar-links > .drop-down .drop-down-btn:hover {
        border-color: rgba(255, 255, 255, .2);
        background-color: rgba(255, 255, 255, .08);
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu .nav-bar-links > .link,
    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu .nav-bar-links > .drop-down .drop-down-btn {
        border-color: var(--border_color);
        color: var(--text_color);
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .link,
    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .drop-down .drop-down-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 43px;
        padding: 10px 12px;
        font-size: 14px;
    }

    body.home-page .nav-bar .nav-bar-menu .nav-bar-links > .link-btn .btn {
        width: 100%;
        min-height: 43px;
        border-radius: 10px;
        font-weight: 700;
    }

    body.home-page .nav-bar .nav-bar-menu .drop-down .drop-down-menu {
        position: static;
        width: 100%;
        margin: 6px 0 0;
        transform: none;
        box-shadow: none;
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container {
        gap: 10px;
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-btn {
        flex-basis: 40px;
    }

    body.home-page > .nav-bar.nav-bar-sm .ms-auto {
        width: 100%;
        min-width: 0;
    }

    body.home-page > .nav-bar.nav-bar-sm .form-search {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    body.home-page > .announcement {
        padding: 8px 48px 8px 10px;
    }

    body.home-page > .announcement .announcement-text {
        gap: 5px;
        font-size: 11px;
    }

    body.home-page > .announcement .announcement-text .btn {
        min-height: 25px;
        padding: 4px 10px;
        font-size: 10px;
    }

    body.home-page > .announcement .announcement-close {
        inset-inline-end: 9px;
        width: 30px;
        height: 30px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-container,
    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container {
        padding-inline: 10px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .logo {
        height: 30px;
    }

    body.home-page > .nav-bar:not(.nav-bar-sm) .nav-bar-actions {
        gap: 5px;
    }

    body.home-page .nav-bar .nav-bar-menu-btn {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-menu-btn {
        width: 38px;
        flex-basis: 38px;
    }

    body.home-page > .nav-bar.nav-bar-sm .form-search .form-control {
        height: 40px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page > .announcement .announcement-close,
    body.home-page .nav-bar .nav-bar-menu-btn,
    body.home-page .nav-bar .nav-bar-menu .nav-bar-menu-header .nav-bar-menu-close,
    body.home-page > .nav-bar.nav-bar-sm .form-search .form-control,
    body.home-page > .nav-bar.nav-bar-sm .form-search .icon,
    body.home-page .nav-bar .drop-down .drop-down-menu .drop-down-item {
        transition: none;
    }
}

/* Premium public footer: visual-only layer for the home page. */
body.home-page .home-footer {
    isolation: isolate;
    overflow: hidden;
    border-top: 0;
}

body.home-page .home-footer::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 12%;
    left: 12%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--home-accent), transparent);
    content: '';
    opacity: .9;
    pointer-events: none;
}

body.home-page .home-footer::after {
    position: absolute;
    z-index: 0;
    top: 0;
    right: -12%;
    width: 58%;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 161, 140, .13), transparent 68%);
    content: '';
    pointer-events: none;
}

body.home-page .home-footer .footer-upper,
body.home-page .home-footer .footer-lower {
    position: relative;
    z-index: 1;
}

body.home-page .home-footer .footer-upper {
    padding: 68px 0 54px;
    background:
        radial-gradient(circle at 78% 16%, rgba(9, 161, 140, .12), transparent 25%),
        linear-gradient(135deg, rgba(255, 255, 255, .035), transparent 42%),
        var(--footer_background_color, #222222);
}

body.home-page .home-footer .footer-upper > .container,
body.home-page .home-footer .footer-lower > .container {
    position: relative;
    z-index: 1;
}

body.home-page .home-footer .footer-upper > .container > .row {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 3.25rem;
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 {
    position: relative;
}

body.home-page .home-footer .logo {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 22px !important;
}

body.home-page .home-footer .logo img {
    max-width: 164px;
    max-height: 40px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .16));
}

body.home-page .home-footer .footer-text {
    max-width: 365px;
    color: var(--footer_text_color, #a5a5a5);
    font-size: 13px;
    line-height: 1.78;
}

body.home-page .home-footer .socials-footer {
    gap: 9px;
    margin-top: 25px !important;
}

body.home-page .home-footer .socials-footer .social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 5px 14px rgba(0, 0, 0, .1);
    font-size: 12px;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.home-page .home-footer .socials-footer .social-btn:hover,
body.home-page .home-footer .socials-footer .social-btn:focus-visible {
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    transform: translateY(-2px);
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 > .mt-4 > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 12px 5px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 > .mt-4 > .row > .col {
    min-width: 0;
    padding: 0 15px;
}

body.home-page .home-footer .footer-counter {
    min-width: 108px;
    padding-inline-end: 18px;
    border-inline-end: 1px solid rgba(255, 255, 255, .16);
}

body.home-page .home-footer .footer-counter:last-child {
    padding-inline-start: 0;
    padding-inline-end: 0;
    border-inline-end: 0;
}

body.home-page .home-footer .footer-counter-text {
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.2;
}

body.home-page .home-footer .footer-counter-title {
    color: var(--footer_text_color, #a5a5a5);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 2.75rem;
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col {
    min-width: 0;
}

body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col:not(:first-child) {
    border-inline-start: 1px solid rgba(255, 255, 255, .09);
    padding-inline-start: 2rem;
}

body.home-page .home-footer .footer-title {
    margin-bottom: 21px;
}

body.home-page .home-footer .footer-title .h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .04em;
    line-height: 1.3;
}

body.home-page .home-footer .footer-title-divider {
    width: 38px;
    height: 3px;
    margin-top: 9px;
    background: var(--home-accent);
    box-shadow: 0 0 12px rgba(9, 161, 140, .34);
}

body.home-page .home-footer .footer-links .footer-link:not(:last-child) {
    margin-bottom: 11px;
}

body.home-page .home-footer .footer-link,
body.home-page .home-footer .footer-link a {
    color: var(--footer_text_color, #a5a5a5);
    font-size: 12px;
    line-height: 1.55;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

body.home-page .home-footer .footer-links .footer-link a,
body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col > a.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.home-page .home-footer .footer-links .footer-link a::before,
body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col > a.footer-link::before {
    flex: 0 0 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--home-accent);
    content: '';
    opacity: .72;
    transition: transform .2s ease, opacity .2s ease;
}

body.home-page .home-footer .footer-link:hover,
body.home-page .home-footer .footer-link a:hover,
body.home-page .home-footer .footer-link:focus-visible,
body.home-page .home-footer .footer-link a:focus-visible {
    color: #fff;
    transform: translateX(2px);
}

body.home-page .home-footer .footer-link:hover::before,
body.home-page .home-footer .footer-link a:hover::before,
body.home-page .home-footer .footer-link:focus-visible::before,
body.home-page .home-footer .footer-link a:focus-visible::before {
    opacity: 1;
    transform: scale(1.45);
}

body.home-page .home-footer .footer-subscribe {
    margin-bottom: 42px;
    padding-bottom: 32px;
    border-bottom-color: rgba(255, 255, 255, .12);
}

body.home-page .home-footer .footer-lower {
    padding: 21px 0;
    border-top: 1px solid var(--footer_border_color, #292929);
    background: rgba(0, 0, 0, .18);
}

body.home-page .home-footer .footer-copyright {
    color: var(--footer_text_color, #a5a5a5);
    font-size: 12px;
    line-height: 1.5;
}

body.home-page .home-footer .footer-payment {
    width: min(215px, 100%);
    max-width: 215px;
}

body.home-page .home-footer .footer-payment img {
    display: block;
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, .18));
}

body.home-page .home-footer .footer-payment img:focus-visible {
    outline: 3px solid rgba(9, 161, 140, .7);
    outline-offset: 4px;
}

@media (max-width: 1199.98px) {
    body.home-page .home-footer .footer-upper > .container > .row {
        --bs-gutter-x: 2.5rem;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row {
        --bs-gutter-x: 2rem;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col:not(:first-child) {
        padding-inline-start: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    body.home-page .home-footer .footer-upper {
        padding: 54px 0 42px;
    }

    body.home-page .home-footer .footer-upper > .container > .row {
        --bs-gutter-y: 2.75rem;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col:not(:first-child) {
        border-inline-start: 0;
        padding-inline-start: calc(var(--bs-gutter-x) * .5);
    }
}

@media (max-width: 767.98px) {
    body.home-page .home-footer .footer-upper {
        padding: 44px 0 34px;
    }

    body.home-page .home-footer .footer-upper > .container > .row {
        --bs-gutter-y: 2.25rem;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 .footer-text {
        max-width: 520px;
        font-size: 13px;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row {
        --bs-gutter-y: 2.25rem;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-7 > .row > .col:not(:first-child) {
        padding-inline-start: calc(var(--bs-gutter-x) * .5);
    }

    body.home-page .home-footer .footer-link,
    body.home-page .home-footer .footer-link a {
        font-size: 12.5px;
    }

    body.home-page .home-footer .footer-lower {
        padding: 18px 0 22px;
    }
}

@media (max-width: 575.98px) {
    body.home-page .home-footer::before {
        right: 8%;
        left: 8%;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 > .mt-4 > .row {
        width: 100%;
        justify-content: center;
    }

    body.home-page .home-footer .footer-upper > .container > .row > .col-lg-5 > .mt-4 > .row > .col {
        padding: 0 10px;
    }

    body.home-page .home-footer .footer-counter {
        min-width: 0;
        padding-inline-end: 12px;
    }

    body.home-page .home-footer .footer-counter-text {
        font-size: 16px;
    }

    body.home-page .home-footer .footer-counter-title {
        font-size: 10px;
    }

    body.home-page .home-footer .footer-payment {
        width: min(190px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page .home-footer .socials-footer .social-btn,
    body.home-page .home-footer .footer-link,
    body.home-page .home-footer .footer-link a,
    body.home-page .home-footer .footer-link::before,
    body.home-page .home-footer .footer-link a::before {
        transition: none;
    }
}

/* Premium catalog sections: presentation-only styles for the home page. */
body.home-page .home-categories-section,
body.home-page .home-featured-author-section,
body.home-page .home-latest-section,
body.home-page .home-featured-items-section {
    overflow: hidden;
}

body.home-page .home-categories-section {
    background:
        radial-gradient(circle at 6% 14%, rgba(9, 161, 140, .055), transparent 24%),
        var(--home-surface);
}

body.home-page .home-categories-section .home-section-header {
    margin-bottom: 27px;
}

body.home-page .home-categories-slider .categoriesSwiper {
    padding-top: 7px;
    padding-bottom: 15px;
}

body.home-page .home-categories-slider .swiper-actions .swiper-button-prev,
body.home-page .home-categories-slider .swiper-actions .swiper-button-next {
    border-color: rgba(9, 161, 140, .16);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 9px 22px rgba(15, 39, 56, .08);
}

body.home-page .home-category-card {
    min-height: 188px;
    padding: 24px 17px 21px;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .98) 62%, var(--home-accent-soft) 150%);
    box-shadow: 0 10px 28px rgba(15, 39, 56, .05);
}

body.home-page .home-category-card:focus-visible {
    border-color: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(9, 161, 140, .14), 0 10px 28px rgba(15, 39, 56, .08);
}

body.home-page .home-category-card .home-category-img {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    border-color: rgba(9, 161, 140, .18);
    box-shadow: 0 0 0 7px rgba(9, 161, 140, .045);
}

body.home-page .home-category-card .home-category-img img {
    width: 56px;
    height: 56px;
}

body.home-page .home-category-card .home-category-title {
    font-size: 14px;
    letter-spacing: -.01em;
}

body.home-page .home-category-card .home-category-arrow {
    right: 15px;
    bottom: 14px;
    opacity: .45;
    transform: none;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

body.home-page .home-category-card:hover .home-category-arrow,
body.home-page .home-category-card:focus-visible .home-category-arrow {
    opacity: 1;
    transform: translateX(2px);
}

body.home-page .home-featured-author-section {
    background:
        radial-gradient(circle at 92% 14%, rgba(9, 161, 140, .08), transparent 28%),
        linear-gradient(180deg, var(--background_color, #f8f8f8), rgba(248, 250, 251, .82));
}

body.home-page .home-featured-author-card {
    padding: 36px;
    border-color: rgba(9, 161, 140, .2);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 62%, var(--home-accent-soft) 150%);
    box-shadow: 0 18px 44px rgba(15, 39, 56, .09);
}

body.home-page .home-featured-author-card::before {
    position: absolute;
    top: -80px;
    right: 20%;
    width: 240px;
    height: 150px;
    border: 1px solid rgba(9, 161, 140, .09);
    border-radius: 50%;
    content: '';
    pointer-events: none;
    transform: rotate(-14deg);
}

body.home-page .home-featured-author-heading,
body.home-page .home-featured-author-profile,
body.home-page .home-featured-author-products {
    position: relative;
    z-index: 1;
}

body.home-page .home-featured-author-mark {
    border-color: rgba(9, 161, 140, .22);
    border-radius: 17px;
    background: rgba(236, 245, 248, .78);
    box-shadow: 0 8px 18px rgba(9, 161, 140, .08);
}

body.home-page .home-featured-author-profile {
    margin-top: 29px;
    padding: 19px 22px;
    border-color: rgba(20, 54, 76, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 22px rgba(15, 39, 56, .045);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

body.home-page .home-featured-author-avatar {
    box-shadow: 0 0 0 5px rgba(9, 161, 140, .07);
}

body.home-page .home-featured-author-profile-arrow:focus-visible {
    border-color: var(--home-accent);
    outline: 3px solid rgba(9, 161, 140, .28);
    outline-offset: 3px;
}

body.home-page .home-featured-author-products {
    margin-top: 30px;
    padding-top: 27px;
    border-top-color: rgba(20, 54, 76, .1);
}

body.home-page .home-featured-author-products-heading {
    margin-bottom: 19px;
    color: var(--home-ink);
    font-size: 14px;
    letter-spacing: .02em;
}

body.home-page .home-featured-author-products-line {
    width: 42px;
    height: 3px;
}

body.home-page .home-latest-section {
    background:
        linear-gradient(180deg, var(--home-surface), rgba(255, 255, 255, .96)),
        var(--home-surface);
}

body.home-page .home-latest-section .home-section-header {
    margin-bottom: 25px;
}

body.home-page .home-latest-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

body.home-page .home-latest-tabs-scroll {
    width: max-content;
    max-width: 100%;
    padding: 5px;
    border: 1px solid rgba(9, 161, 140, .12);
    border-radius: 999px;
    background: rgba(247, 251, 252, .86);
    box-shadow: 0 7px 18px rgba(15, 39, 56, .04);
}

body.home-page .home-latest-tabs .custom-tabs-item {
    min-height: 37px;
    padding: 8px 16px;
    border-color: transparent;
    background: transparent;
    border-radius: 999px;
    font-size: 12px;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.home-page .home-latest-tabs .custom-tabs-item:hover {
    border-color: rgba(9, 161, 140, .16);
    background: rgba(255, 255, 255, .85);
    color: var(--home-accent);
}

body.home-page .home-latest-tabs .custom-tabs-item.active {
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #fff;
    box-shadow: 0 6px 14px rgba(9, 161, 140, .18);
}

body.home-page .home-latest-tabs .custom-tabs-item:focus-visible {
    outline: 3px solid rgba(9, 161, 140, .3);
    outline-offset: 2px;
}

body.home-page .home-latest-grid,
body.home-page .home-featured-author-items {
    gap: 21px;
}

body.home-page .home-latest-item .item,
body.home-page .home-featured-author-item .item,
body.home-page .home-featured-items-section .item {
    overflow: hidden;
    border: 1px solid rgba(20, 54, 76, .1);
    border-radius: 18px;
    background: var(--home-surface);
    box-shadow: 0 9px 26px rgba(15, 39, 56, .055);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.home-page .home-latest-item .item:hover,
body.home-page .home-featured-author-item .item:hover,
body.home-page .home-featured-items-section .item:hover {
    border-color: rgba(9, 161, 140, .42);
    box-shadow: 0 16px 34px rgba(15, 39, 56, .12);
    transform: translateY(-5px);
}

body.home-page .home-latest-item .item:focus-within,
body.home-page .home-featured-author-item .item:focus-within,
body.home-page .home-featured-items-section .item:focus-within {
    border-color: rgba(9, 161, 140, .55);
    box-shadow: 0 0 0 4px rgba(9, 161, 140, .1), 0 14px 30px rgba(15, 39, 56, .1);
}

body.home-page .home-latest-item .item .item-header,
body.home-page .home-featured-author-item .item .item-header,
body.home-page .home-featured-items-section .item .item-header {
    overflow: hidden;
    background: var(--home-accent-soft);
}

body.home-page .home-latest-item .item .item-img,
body.home-page .home-featured-author-item .item .item-img,
body.home-page .home-featured-items-section .item .item-img {
    height: clamp(172px, 14vw, 205px);
    object-fit: cover;
    transition: transform .35s ease;
}

body.home-page .home-latest-item .item:hover .item-img,
body.home-page .home-featured-author-item .item:hover .item-img,
body.home-page .home-featured-items-section .item:hover .item-img {
    transform: scale(1.035);
}

body.home-page .home-latest-item .item .item-badge,
body.home-page .home-featured-author-item .item .item-badge,
body.home-page .home-featured-items-section .item .item-badge {
    z-index: 2;
    top: 14px;
    padding: 7px 11px;
    border-radius: 0 9px 9px 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .12);
    font-size: 10px;
    letter-spacing: .02em;
}

body.home-page .home-latest-item .item .item-body,
body.home-page .home-featured-author-item .item .item-body,
body.home-page .home-featured-items-section .item .item-body {
    padding: 18px;
}

body.home-page .home-latest-item .item .item-title,
body.home-page .home-featured-author-item .item .item-title,
body.home-page .home-featured-items-section .item .item-title {
    display: -webkit-box;
    min-height: 2.7em;
    margin-bottom: 7px;
    overflow: hidden;
    color: var(--home-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.home-page .home-latest-item .item .item-title:hover,
body.home-page .home-featured-author-item .item .item-title:hover,
body.home-page .home-featured-items-section .item .item-title:hover {
    color: var(--home-accent);
}

body.home-page .home-latest-item .item .item-text,
body.home-page .home-featured-author-item .item .item-text,
body.home-page .home-featured-items-section .item .item-text {
    min-height: 2.8em;
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
}

body.home-page .home-latest-item .item .item-text a,
body.home-page .home-featured-author-item .item .item-text a,
body.home-page .home-featured-items-section .item .item-text a {
    color: inherit;
    text-decoration: none;
}

body.home-page .home-latest-item .item .item-text a:hover,
body.home-page .home-featured-author-item .item .item-text a:hover,
body.home-page .home-featured-items-section .item .item-text a:hover {
    color: var(--home-accent);
}

body.home-page .home-latest-item .item .item-ratings,
body.home-page .home-featured-author-item .item .item-ratings,
body.home-page .home-featured-items-section .item .item-ratings {
    min-height: 18px;
    margin-bottom: 11px;
}

body.home-page .home-latest-item .item .item-price,
body.home-page .home-featured-author-item .item .item-price,
body.home-page .home-featured-items-section .item .item-price {
    font-size: 17px;
    font-weight: 750;
}

body.home-page .home-latest-item .item .item-price .item-price-number,
body.home-page .home-featured-author-item .item .item-price .item-price-number,
body.home-page .home-featured-items-section .item .item-price .item-price-number {
    letter-spacing: -.015em;
}

body.home-page .home-latest-item .item .item-sales,
body.home-page .home-featured-author-item .item .item-sales,
body.home-page .home-featured-items-section .item .item-sales {
    color: var(--home-muted);
    font-size: 11px;
}

body.home-page .home-latest-item .item .item-purchase .btn,
body.home-page .home-featured-author-item .item .item-purchase .btn,
body.home-page .home-featured-items-section .item .item-purchase .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    font-size: 12px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.home-page .home-latest-item .item .item-purchase .btn:hover,
body.home-page .home-featured-author-item .item .item-purchase .btn:hover,
body.home-page .home-featured-items-section .item .item-purchase .btn:hover {
    box-shadow: 0 6px 13px rgba(9, 161, 140, .15);
    transform: translateY(-1px);
}

body.home-page .home-featured-items-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(9, 161, 140, .06), transparent 26%),
        var(--background_color, #f8f8f8);
}

body.home-page .home-featured-items-section > .container > .section-header {
    margin-bottom: 28px;
}

body.home-page .home-featured-items-section .section-title-text {
    color: var(--home-ink);
    font-size: clamp(24px, 2.1vw, 31px);
    font-weight: 700;
    letter-spacing: -.025em;
}

body.home-page .home-featured-items-section .section-title-divider {
    width: 48px;
    height: 3px;
    margin-top: 12px;
    margin-inline: 0;
    border-radius: 999px;
    background: var(--home-accent);
}

body.home-page .home-featured-items-section .section-text {
    color: var(--home-muted);
    font-size: 14px;
}

body.home-page .home-featured-items-section .section-body > .row {
    --bs-gutter-x: 1.35rem;
    --bs-gutter-y: 1.35rem;
}

body.home-page .home-featured-items-section .card-v.border-dashed {
    padding: 14px !important;
    border-color: rgba(9, 161, 140, .3) !important;
    border-radius: 24px;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 12px 28px rgba(15, 39, 56, .055);
}

body.home-page .home-featured-items-section .card-v.border-dashed > .card-bg {
    border: 1px solid rgba(9, 161, 140, .1);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), var(--home-accent-soft));
}

body.home-page .home-featured-items-section .card-v.border-dashed h2 {
    color: var(--home-ink);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.03em;
}

body.home-page .home-featured-items-section .card-v.border-dashed p {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    body.home-page .home-featured-author-card {
        padding: 30px;
    }

    body.home-page .home-featured-items-section .section-body > .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

@media (max-width: 767.98px) {
    body.home-page .home-category-card {
        min-height: 166px;
        padding: 20px 13px 18px;
        border-radius: 17px;
    }

    body.home-page .home-category-card .home-category-img {
        width: 64px;
        height: 64px;
        margin-bottom: 13px;
        box-shadow: 0 0 0 5px rgba(9, 161, 140, .045);
    }

    body.home-page .home-category-card .home-category-img img {
        width: 48px;
        height: 48px;
    }

    body.home-page .home-category-card .home-category-title {
        font-size: 12px;
    }

    body.home-page .home-featured-author-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    body.home-page .home-featured-author-profile {
        gap: 13px;
        padding: 16px;
        border-radius: 16px;
    }

    body.home-page .home-featured-author-products {
        margin-top: 25px;
        padding-top: 23px;
    }

    body.home-page .home-latest-tabs {
        justify-content: flex-start;
    }

    body.home-page .home-latest-tabs-scroll {
        width: 100%;
        justify-content: flex-start;
        border-radius: 15px;
        overflow-x: auto;
    }

    body.home-page .home-latest-tabs .custom-tabs-item {
        padding-right: 13px;
        padding-left: 13px;
    }

    body.home-page .home-latest-grid,
    body.home-page .home-featured-author-items {
        gap: 15px;
    }

    body.home-page .home-latest-item .item .item-img,
    body.home-page .home-featured-author-item .item .item-img,
    body.home-page .home-featured-items-section .item .item-img {
        height: 205px;
    }

    body.home-page .home-latest-item .item .item-body,
    body.home-page .home-featured-author-item .item .item-body,
    body.home-page .home-featured-items-section .item .item-body {
        padding: 16px;
    }

    body.home-page .home-featured-items-section .section-title-text {
        font-size: 25px;
    }
}

@media (max-width: 575.98px) {
    body.home-page .home-category-card {
        min-height: 158px;
    }

    body.home-page .home-featured-author-card {
        padding: 23px 16px;
    }

    body.home-page .home-featured-author-heading {
        gap: 12px;
    }

    body.home-page .home-featured-author-mark {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 17px;
    }

    body.home-page .home-featured-author-profile {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    body.home-page .home-featured-author-avatar {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    body.home-page .home-featured-author-info {
        flex: 1 1 calc(100% - 78px);
    }

    body.home-page .home-featured-author-profile-arrow {
        margin-inline-start: auto;
    }

    body.home-page .home-latest-item .item .item-img,
    body.home-page .home-featured-author-item .item .item-img,
    body.home-page .home-featured-items-section .item .item-img {
        height: 200px;
    }

    body.home-page .home-latest-item .item .item-title,
    body.home-page .home-featured-author-item .item .item-title,
    body.home-page .home-featured-items-section .item .item-title {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page .home-category-card .home-category-arrow,
    body.home-page .home-latest-tabs .custom-tabs-item,
    body.home-page .home-latest-item .item,
    body.home-page .home-featured-author-item .item,
    body.home-page .home-featured-items-section .item,
    body.home-page .home-latest-item .item .item-img,
    body.home-page .home-featured-author-item .item .item-img,
    body.home-page .home-featured-items-section .item .item-img,
    body.home-page .home-latest-item .item .item-purchase .btn,
    body.home-page .home-featured-author-item .item .item-purchase .btn,
    body.home-page .home-featured-items-section .item .item-purchase .btn {
        transition: none;
    }
}

/* Mobile overflow guard: keep the existing menus and search usable at narrow widths. */
@media (max-width: 991.98px) {
    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container > .ms-auto {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        margin-inline-start: 0 !important;
    }

    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container > .ms-auto form,
    body.home-page > .nav-bar.nav-bar-sm .nav-bar-container > .ms-auto .form-search {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    body.home-page .home-latest-grid,
    body.home-page .home-featured-author-items {
        grid-template-columns: minmax(0, 1fr);
    }

    body.home-page .home-hero-search,
    body.home-page .home-hero-search .search,
    body.home-page .home-hero-search .search-input {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.home-page .home-hero-search .search-input input {
        min-width: 0;
    }

    body.home-page .home-footer::after {
        right: 0;
    }
}

/* Some mobile browsers expose a 768px CSS viewport; keep that portrait layout single-column. */
@media (max-width: 800px) {
    body.home-page .home-latest-grid,
    body.home-page .home-featured-author-items {
        grid-template-columns: minmax(0, 1fr);
    }

    body.home-page .home-featured-items-section .section-header {
        margin-bottom: 25px;
        text-align: center;
    }

    body.home-page .home-featured-items-section .section-title-divider,
    body.home-page .home-featured-items-section .section-text {
        margin-inline: auto;
    }

    body.home-page .home-featured-items-section .section-title-text {
        font-size: clamp(25px, 5vw, 30px);
    }

    body.home-page .home-featured-items-section .section-text {
        max-width: 620px;
        font-size: 14px;
        line-height: 1.7;
    }

    body.home-page .home-featured-items-section .section-body > .row > .col-12 > .row > .col {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    body.home-page .home-featured-items-section .item .item-img {
        height: clamp(190px, 42vw, 235px);
    }

    body.home-page .home-featured-items-section .item .item-body {
        padding: 18px;
    }
}
