:root {
    --ani-main-color: #c4455a;
    --ani-main-color-dark: #a8384c;
    --ani-secondary-color: #f49c51;
    --ani-orange-soft: #fde9d4;
    --ani-text: #2c2c2c;
    --ani-muted: #9a9a9a;
    --ani-border: #ececec;
    --ani-bg: #fafafa;
    --ani-card: #ffffff;
    --ani-radius: 18px;
    --ani-header-h: 76px;
    --ani-mobile-header-h: 58px;
    --ani-tabbar-h: 68px;
}

body.ani-site {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: var(--ani-bg) !important;
    font-family: bakhFanum, bakh, tahoma, sans-serif;
    color: var(--ani-text);
    padding-bottom: 0;
}

@media (max-width: 767px) {
    body.ani-site {
        padding-bottom: calc(var(--ani-tabbar-h) + 12px);
    }

    body.ani-site.ani-has-sticky-cart {
        padding-bottom: calc(var(--ani-tabbar-h) + 78px);
    }
}


.ani-site .container-main > .col-12 {
    float: none !important;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* ========== HEADER ========== */
.ani-site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    float: none !important;
    width: 100%;
    clear: both;
}

.ani-site-header:before {
    display: none;
}

.ani-header {
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
}

.ani-header__desktop {
    display: none;
    align-items: center;
    gap: 18px;
    min-height: var(--ani-header-h);
    padding: 10px 0;
}

.ani-header__start {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.ani-header__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ani-header__logo span {
    font-weight: 700;
    font-size: 18px;
    color: var(--ani-text);
}

.ani-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ani-header,
.ani-header__desktop,
.ani-nav {
    overflow: visible;
}

.ani-nav > li {
    position: static;
    list-style: none;
}

.ani-nav > li > a {
    display: inline-flex;
    align-items: center;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 10px;
    white-space: nowrap;
    text-decoration: none;
}

.ani-nav > li > a:hover,
.ani-nav > li:hover > a {
    color: var(--ani-main-color);
    text-decoration: none;
}

.ani-header__search.header-right {
    flex: 1 1 auto;
    min-width: 220px;
    max-width: 520px;
    margin: 0 auto;
    width: auto;
    height: auto;
}

.ani-header__search .search-header,
.ani-search {
    width: 100%;
    height: 44px;
    margin: 0 !important;
    border-radius: 999px;
    position: relative;
    overflow: visible;
}

.ani-header__search .search-header form,
.ani-search form {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 44px;
    background: #f7f7f8;
    border: 1px solid #f0f0f0;
    border-radius: 999px;
    overflow: hidden;
}

.ani-header__search.header-right .search-header .search-input,
.ani-search .search-input {
    width: 100%;
    height: 44px !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 4px 0 16px !important;
    font-size: 16px;
    font-weight: 500;
}

.ani-header__search .search-input::placeholder,
.ani-search .search-input::placeholder {
    color: var(--ani-secondary-color) !important;
    opacity: 1;
}

.ani-header__search.header-right .search-header .button-search,
.ani-search .button-search {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 48px !important;
    height: 44px !important;
    background: transparent !important;
    border: 0;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ani-secondary-color);
    flex: 0 0 48px;
    order: 0;
}
.search-wrapper {
    position: relative;
    width: 100%;
}

.search-placeholder {
    position: absolute;
    top: 50%;
    right:3px;
    transform: translateY(-50%);
    pointer-events: none;
    white-space: nowrap;
}

.search-p1 {
    color: #848484;
    font-weight: 500;
}

.search-p2 {
    color: var(--ani-main-color);
    font-weight: 700;
}

.search-input:not(:placeholder-shown) + .search-placeholder {
    display: none;
}

.ani-search .search-result {
    top: calc(100% + 8px);
    padding: 8px;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(44, 20, 28, 0.1);
}

.ani-search-suggest {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow: auto;
}

.ani-search-suggest__item {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration: none;
}

.ani-search-suggest__item:hover,
.ani-search-suggest__item.is-active {
    background: #fff5f6;
    color: #2c2c2c;
    text-decoration: none;
}

.ani-search-hit {
    color: var(--ani-main-color, #c4455a);
    background: transparent;
    font-weight: 700;
}
.ani-header__search .button-search img {
    display: none;
}

.ani-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.ani-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 13px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.ani-account-btn:hover {
    color: #222;
    text-decoration: none;
    border-color: #ddd;
}

.ani-account-btn a {
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}

.ani-account-btn .ani-sep {
    color: #0a0a0a;
    font-weight: 500;
    padding: 0 2px;
}

.ani-icon-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ececec;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    background: #fff;
    position: relative;
    text-decoration: none;
}

.ani-icon-btn:hover {
    color: #323232;
    text-decoration: none;
    border-color: #ddd;
}

.ani-badge,
.ani-icon-btn .count,
.cart-list .count {
    position: absolute;
    top: -6px;
    left: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--ani-main-color);
    color: #fff !important;
    font-size: 11px !important;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

.ani-badge:empty,
.ani-icon-btn .count:empty {
    display: none;
}

/* Mega menu */
.ani-mega {
    position: absolute;
    top: calc(100% + 2px);
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(40, 40, 40, 0.1);
    padding: 18px 22px 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.18s ease;
    z-index: 1200;
    text-align: right;
}

.ani-nav > li:hover > .ani-mega,
.ani-nav > li:focus-within > .ani-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.ani-mega__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}

.ani-mega__parent {
    font-size: 16px;
    color: #0a0a0a;
    font-weight: 700;
}

.ani-mega__all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #8d8d8d;
    text-decoration: none;
}

.ani-mega__all:hover {
    color: var(--ani-main-color);
    text-decoration: none;
}

.ani-mega__body {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.ani-mega__list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 18px;
    align-content: start;
}

.ani-mega__item {
    display: block;
    padding: 8px 14px;
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 16px;
    text-decoration: none;
    transition: 0.15s ease;
}

.ani-mega__item.is-active,
.ani-mega__item:hover {
    background: #f7f7f8;
    color: var(--ani-main-color);
    font-weight: 600;
    text-decoration: none;
}

.ani-mega__list:hover .ani-mega__item.is-active:not(:hover) {
    background: transparent;
    color: #5c5c5c;
}

.ani-mega__media {
    width: 240px;
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 240px;
}

.ani-mega__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile header */
.ani-header__mobile {
    display: none;
    height: var(--ani-mobile-header-h);
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.ani-mheader__menu.nav-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;

    cursor: pointer;
}
.ani-mheader__menu.nav-btn span{
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500 !important;
}

.ani-mheader__menu .linee1,
.ani-mheader__menu .linee2,
.ani-mheader__menu .linee3 {
    display: none;
}

.ani-mheader__burger {
    width: 16px;
    height: 12px;
    position: relative;
}

.ani-mheader__burger span {
    position: absolute;
    right: 0;
    width: 16px;
    height: 2px;
    background: #222;
    border-radius: 2px;
}

.ani-mheader__burger span:nth-child(1) { top: 0; }
.ani-mheader__burger span:nth-child(2) { top: 5px; }
.ani-mheader__burger span:nth-child(3) { top: 10px; }

.ani-mheader__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ani-mheader__logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.ani-header__mobile .ani-icon-btn {
    width: 38px;
    height: 38px;
}

@media (min-width: 768px) {
    .ani-header__desktop {
        display: flex;
    }
}

@media (max-width: 767px) {
    .ani-header__mobile {
        display: flex;
        position: relative;
    }
}

/* Hide leftover old chrome */
.ani-site .adplacement-top-header {
    display: block;
}

/* ========== BOTTOM TABS ========== */
.ani-tabbar.container.tabs {
    display: none !important;
    visibility: hidden !important;
}

@media (max-width: 767px) {
    .ani-tabbar.container.tabs {
        display: block !important;
        visibility: visible !important;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1050;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: none;
        height: auto;
        background: #fff;
        box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.06);
    }

    .ani-tabbar #tabBar.tab-bar {
        height: var(--ani-tabbar-h);
        padding: 0 6px;
        justify-content: space-between;
    }

    .ani-tabbar #tabBar .tab {
        width: 20%;
        height: 100%;
        color: #b0b0b0;
        max-width: none;
        padding: 0;
    }

    .ani-tabbar #tabBar .tab.active,
    .ani-tabbar #tabBar .tab .inside.active,
    .ani-tabbar #tabBar .tab.active .inside {
        color: #2b2b2b;
        padding: 0;
        max-width: none;
    }

    .ani-tabbar #tabBar .tab .inside {
        gap: 4px;
    }

    .ani-tabbar #tabBar .tab .inside i,
    .ani-tabbar #tabBar .tab .inside svg {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }

    .ani-tabbar #tabBar .tab .inside span.title {
        font-size: 12px;
        font-weight: 500;
        margin: 0;
        color: #212529;
    }

    .ani-tabbar .tab-cart {
        position: relative;
    }

    .ani-tabbar .tab-cart .count {
        top: 4px;
        left: 50%;
        margin-left: 8px;
        background: var(--ani-main-color);
    }
}

/* ========== FOOTER ========== */
.ani-footer.footer {
    background: #fff;
    margin-top: 24px !important;
    padding: 28px 0 16px;
    color: var(--ani-text);
    border-top: 1px solid #f2f2f2;
}

.ani-footer .footer-jumpup,
.ani-footer .footer-feature-innerbox,
.ani-footer .footer-more-info {
    display: none !important;
}

.ani-footer__inner {
    max-width: 1340px;
    margin: 0 auto;
}

.ani-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px 24px;
    align-items: start;
}

.ani-footer__brand {
    text-align: right;
}

.ani-footer__logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.ani-footer__logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.ani-footer__desc {
    color: #0a0a0a !important;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0 0 8px;
}

.ani-footer.is-open .ani-footer__desc {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.ani-footer__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 0;
    color: var(--ani-main-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.ani-footer__toggle .ani-less {
    display: none;
}

.ani-footer.is-open .ani-footer__toggle .ani-more {
    display: none;
}

.ani-footer.is-open .ani-footer__toggle .ani-less {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ani-footer__col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.ani-footer__col h3:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--ani-main-color);
    border-radius: 4px;
}

.ani-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ani-footer__col li {
    margin: 0 0 8px;
}

.ani-footer__col a {
    color: #0a0a0a;
    text-decoration: none;
    line-height: 1.8;
}

.ani-footer__col a:hover {
    color: var(--ani-main-color);
}

.ani-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #0a0a0a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.ani-footer__contact i,
.ani-footer__contact svg {
    flex: 0 0 23px;
}

.ani-footer__contact a {
    color: inherit;
}

.ani-footer__social-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ani-footer__social-wrap .label {
    font-size: 13px;
    color: #666;
    margin-left: 6px;
}

.ani-social {
    width: 36px;
    height: 36px;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
}

.ani-social:hover {
    color: var(--ani-main-color);
    border-color: var(--ani-main-color);
    text-decoration: none;
}
.ani-social:hover svg {
    fill: var(--ani-main-color);
}

.ani-social img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.ani-footer__copy {
    text-align: center;
    color: #0a0a0a;
    font-size: 12px;
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid #efefef
}

@media (max-width: 991px) {
    .ani-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ani-footer__brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .ani-footer__logo {
        justify-content: center;
    }

    .ani-footer__toggle {
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .ani-footer.footer {
        padding-bottom: 24px;
    }

    .ani-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 12px;
        text-align: center;
    }

    .ani-footer__col h3:after {
        right: 50%;
        transform: translateX(50%);
    }

    .ani-footer__contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .ani-footer__contact li {
        justify-content: center;
    }

    .ani-footer__social-wrap {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 8px;
    }
}

@media (min-width: 768px) {
    .ani-footer:not(.is-user-toggled) .ani-footer__desc {
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }

    .ani-footer:not(.is-user-toggled) .ani-footer__toggle .ani-more {
        display: none;
    }

    .ani-footer:not(.is-user-toggled) .ani-footer__toggle .ani-less {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .ani-footer:not(.is-user-toggled).is-collapsed .ani-footer__desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    .ani-footer:not(.is-user-toggled).is-collapsed .ani-footer__toggle .ani-more {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .ani-footer:not(.is-user-toggled).is-collapsed .ani-footer__toggle .ani-less {
        display: none;
    }
}

/* ========== BREADCRUMB ========== */
.ani-site .new-breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 8px 4px;
    padding: 0 4px 12px;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 14px;
    color: #5c5c5c;
}

.ani-site .new-breadcrumb-container p {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.ani-site .ani-breadcrumb-sep {
    color: #b5b5b5;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.ani-site .new-breadcrumb-container p + p:before,
.ani-site .new-breadcrumb-container a + a:before,
.ani-site .new-breadcrumb-container a + span:before,
.ani-site .new-breadcrumb-link::before {
    content: none !important;
    display: none !important;
}

.ani-site .breadcrumb-link,
.ani-site .new-breadcrumb-link {
    color: #4f4f4f !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.ani-site .breadcrumb-link:hover,
.ani-site .new-breadcrumb-link:hover {
    color: var(--ani-main-color) !important;
}

.ani-site .new-breadcrumb-link::before {
    content: none !important;
    display: none !important;
}

.ani-site .new-breadcrumb-container .new-active-breadcrumb {
    color: var(--ani-main-color, #c4455a) !important;
    font-weight: 700;
    cursor: default;
}

/* ========== PRODUCT PAGE ========== */
.ani-pdp {
    padding-bottom: 24px;
}

.ani-pdp > .product {
    background: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 22px;
    padding: 20px 20px 28px;
    margin-bottom: 16px;
}

.ani-pdp .product .col-lg-4,
.ani-pdp .product .col-lg-8 {
    padding: 8px 12px;
}

.ani-pdp .gallery-options {
    display: none;
}

.ani-pdp .product-gallery {
    position: relative;
    background: #fff;
}

.ani-pdp .product-gallery .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background: var(--ani-main-color);
    color: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
}

.ani-pdp .product-gallery-carousel img,
.ani-pdp .gallery-item img {
    border-radius: 12px;
    object-fit: contain;
    max-height: 460px;
    margin: 0 auto;
}

.ani-pdp .product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.ani-pdp .product-gallery .product-thumbnails li a {
    width: 64px;
    height: 64px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.ani-pdp .product-gallery .product-thumbnails li.active a {
    border-color: var(--ani-main-color);
}

.ani-pdp .product-gallery .product-thumbnails li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ani-pdp .product-headline h1 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.6;
}

.ani-pdp .product-headline h1 span,
.ani-pdp .product .product-headline h1 span {
    position: static !important;
    display: block;
    font-size: 13px;
    color: #999;
    padding: 0;
    margin: 4px 0 0;
}

.ani-pdp .product-seller-row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border: 0 !important;
    padding: 8px 0 !important;
}

.ani-pdp .product-seller-row[style*="display: none"],
.ani-pdp .product-seller-row.d-none {
    display: none !important;
}

.ani-pdp .product-name {
    float: none !important;
}

.ani-pdp .ui-variant-check {
    min-width: 64px;
    height: 36px;
    padding: 0 14px;
    border-radius: 20px !important;
}

.ani-pdp .product-directory ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 13px;
    color: #888;
}

.ani-pdp .product-brand-title {
    color: #666;
}

.ani-pdp .product-params ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    color: #555;
}

.ani-pdp .product-params ul > li:before {
    display: none !important;
}

.ani-pdp .product-config {
    border-top: 0 !important;
    padding-top: 0 !important;
}

.ani-pdp .product-attributes.row {
    margin: 0;
}

.ani-pdp .product-attributes .col-lg-6,
.ani-pdp .product-attributes .col-lg-5 {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100%;
    float: none !important;
    display: block !important;
    padding: 0;
}

.ani-pdp .product > .col-lg-4,
.ani-pdp .product > .col-lg-8 {
    float: none;
    overflow: hidden;
}

.ani-pdp .product-seller-info {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.ani-pdp .product-seller-row {
    border: 0 !important;
    padding: 8px 0 !important;
}

.ani-pdp .product-variants span,
.ani-pdp .pro-title {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.ani-pdp ul.js-product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ani-pdp .ui-variant-color {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.ani-pdp .ui-variant-shape {
    display: none !important;
}

.ani-pdp .ui-variant-check {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    font-size: 12px;
    color: #555;
    background: #fff;
}

.ani-pdp .ui-variant input:checked + .ui-variant-check,
.ani-pdp .ui-variant-color input:checked + .ui-variant-check {
    border-color: var(--ani-main-color);
    color: var(--ani-main-color);
    background: #fff5f7;
}

.ani-pdp .ui-variant input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ani-pdp .product-seller-row.price .title {
    display: none;
}

.ani-pdp .product-seller-price-info {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.ani-pdp .product-seller-row.price del {
    color: #c8c8c8 !important;
    font-size: 13px !important;
    text-decoration: line-through;
}

.ani-pdp .product-seller-row.price .amount,
.ani-pdp .product-price-attribute,
.ani-pdp #product-price {
    color: #0a0a0a !important;
    font-size: 22px !important;
    font-weight: 700;
}

.ani-pdp .parent-btn {
    width: 100%;
    margin-top: 8px;
}

.ani-pdp .parent-btn .dk-btn,
.ani-pdp .btn-buy {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--ani-main-color) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ani-pdp .parent-btn .dk-btn:hover,
.ani-pdp .btn-buy:hover {
    background: var(--ani-main-color-dark) !important;
    color: #fff !important;
}

.ani-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    background: none;
    border: 0;
    color: #9a9a9a;
    font-size: 13px;
    cursor: pointer;
}

.ani-wishlist.added,
.ani-wishlist.added svg {
    color: var(--ani-main-color);
}

.ani-pdp .num-block {
    transform: scale(0.9);
    transform-origin: right center;
}

/* Tabs */
.ani-tabs-card {
    background: #fff;
    border-radius: 22px;
    padding: 8px 22px 22px;
    margin-bottom: 16px;
}

.ani-tabs-card .box-tabs,
.ani-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid #f0f0f0 !important;
    list-style: none;
    padding: 8px 0 0;
    margin: 0 0 8px;
    justify-content: flex-start;
}

.ani-tabs-card .nav-tabs .nav-link,
.ani-tabs-card .box-tab-item,
.ani-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 500;
    border: 0 !important;
    background: none;
    position: relative;
    text-decoration: none;
    border-radius: 0;
}

.ani-tabs-card .box-tab-item.active,
.ani-tabs a.active {
    color: var(--ani-main-color);
}

.ani-tabs-card .box-tab-item.active:after,
.ani-tabs a.active:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -1px;
    height: 2px;
    background: var(--ani-main-color);
}

.ani-tabs-card .box-tab-item i {
    display: none;
}

.ani-pdp .params-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ani-pdp .params-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 13px;
}

.ani-pdp .params-list-key {
    color: #888;
}

.ani-pdp .params-list-value {
    color: #333;
    font-weight: 500;
}

.ani-pdp .params-headline,
.ani-pdp .comments-headline {
    display: none;
}

/* Related */
.ani-related .widget-product.card {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.ani-related .card-header {
    background: transparent;
    border: 0;
    padding: 4px 4px 12px;
    display: flex;
    justify-content: flex-end;
}

.ani-related .title-one {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.ani-related .far.fa-sparkles {
    display: none;
}

.ani-related .item {
    text-align: right;
}

.ani-related .item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fafafa;
    border-radius: 12px;
}

.ani-related .post-title {
    font-size: 13px;
    font-weight: 500;
    margin: 8px 0 4px;
    line-height: 1.6;
}

.ani-related .post-title a {
    color: #333;
}

.ani-related .price ins {
    color: #222;
    font-weight: 700;
    text-decoration: none;
}

.ani-related .price del {
    color: #bbb;
    font-size: 12px;
}

/* Sticky cart */
.ani-sticky-cart {
    display: none;
}

@media (max-width: 767px) {
    .ani-sticky-cart {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        right: 0;
        left: 0;
        bottom: var(--ani-tabbar-h);
        z-index: 1040;
        background: #fff;
        padding: 10px 14px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }

    .ani-sticky-cart__price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: var(--ani-main-color);
        font-weight: 700;
        font-size: 16px;
        line-height: 1.3;
    }

    .ani-sticky-cart__price del {
        color: #c8c8c8;
        font-size: 11px;
        font-weight: 400;
    }

    .ani-sticky-cart .btn-buy {
        flex: 1;
        height: 44px;
        border: 0;
        border-radius: 12px;
        background: var(--ani-main-color);
        color: #fff;
        font-weight: 700;
        max-width: 58%;
    }

    .ani-pdp > .product {
        padding: 12px;
        border-radius: 16px;
    }

    .ani-pdp .parent-btn {
        display: none;
    }

    .ani-pdp .product-gallery-carousel img,
    .ani-pdp .gallery-item img {
        max-height: 320px;
    }

    .ani-tabs-card,
    .ani-related {
        border-radius: 16px;
        padding: 10px 12px 16px;
    }

    .ani-related .item img {
        height: 140px;
    }
}

@media (min-width: 992px) {
    .ani-pdp > .product {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap !important;
        align-items: flex-start;
    }

    .ani-pdp .product > .col-lg-4 {
        flex: 0 0 46% !important;
        max-width: 46% !important;
        width: 46% !important;
        float: none !important;
        box-sizing: border-box;
    }

    .ani-pdp .product > .col-lg-8 {
        flex: 0 0 54% !important;
        max-width: 54% !important;
        width: 54% !important;
        float: none !important;
        box-sizing: border-box;
        min-width: 0;
    }
}

/* Dropdown account */
.ani-account-wrap {
    position: relative;
}

.ani-account-wrap .dropdown-menu {
    display: block !important;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 180px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(31, 45, 61, 0.1);
    padding: 6px;
}
.ani-account-wrap .dropdown-menu ul:last-child{
    margin-bottom: 0;
}
.ani-account-wrap:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.ani-site .sidebar {
    z-index: 1300;
}

.ani-site .overlay {
    z-index: 1250;
}

/* ========== PRODUCT PAGE v2 ========== */
.ani-pdp {
    padding-bottom: 24px;
    font-size: 16px;
}

.ani-pdp-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px 28px 28px;
    margin-bottom: 18px;
    border: 1px solid #e0e0e0;
}

.ani-pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 0 0 18px;
    color: #b7b7b7;
    font-size: 14px;
    line-height: 1.8;
}

.ani-pdp-breadcrumb a,
.ani-pdp-breadcrumb span {
    color: #999;
    text-decoration: none;
}

.ani-pdp-breadcrumb a:hover {
    color: var(--ani-main-color);
}

.ani-pdp-breadcrumb__sep {
    width: auto;
    height: auto;
    margin: 0 4px;
    border: 0;
    transform: none;
    color: #cfcfcf;
    font-size: 13px;
}

.ani-pdp-breadcrumb__sep:before {
    content: ">";
}

.ani-pdp-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ani-pdp-gallery {
    order: -1;
    position: relative;
}

.ani-pdp-gallery .product-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    aspect-ratio: 3 / 4;
}

.ani-pdp-gallery .product-gallery-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
}

.ani-pdp-gallery .product-gallery-carousel .owl-stage-outer,
.ani-pdp-gallery .product-gallery-carousel .owl-stage,
.ani-pdp-gallery .product-gallery-carousel .owl-item,
.ani-pdp-gallery .product-gallery-carousel .item {
    height: 100% !important;
}

.ani-pdp-badge.ab-product-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 4;
}

.ani-pdp-gallery .product-gallery-carousel .owl-nav,
.ani-pdp-gallery .product-gallery-carousel .owl-dots {
    display: none !important;
}

.ani-pdp-gallery .product-gallery-carousel img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
    object-fit: cover;
    cursor: zoom-in;
    border-radius: 16px;
}

.ani-pdp-gallery .product-gallery-carousel .item.is-video {
    position: relative;
    background: #111;
}

.ani-pdp-gallery .product-gallery-carousel video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
    border-radius: 16px;
}

.ani-pdp-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.ani-pdp-video-play.is-hidden,
.ani-pdp-zoom.is-hidden {
    display: none;
}

.ani-pdp-zoom {
    position: absolute;
    right: 14px;
    left: auto;
    bottom: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #8a8a8a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.ani-pdp-zoom:hover {
    color: #444;
}

.ani-pdp-gallery .product-thumbnails {
    display: flex;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.ani-pdp-gallery .product-thumbnails li a {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 12px;
}

.ani-pdp-gallery .product-thumbnails li.active a {
    border-color: var(--ani-main-color);
}

.ani-pdp-gallery .product-thumbnails li a img,
.ani-pdp-gallery .product-thumbnails li a video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

.ani-pdp-gallery .product-thumbnails li a video {
    pointer-events: none;
}

.ani-pdp-gallery .product-thumbnails .ani-pdp-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    pointer-events: none;
}

.ani-pdp-gallery .product-thumbnails .ani-pdp-play svg {
    width: 22px;
    height: 22px;
    padding: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    box-sizing: content-box;
}

.ani-pdp-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ani-pdp-cat {
    color: var(--ani-main-color);
    font-size: 16px;
    font-weight: 500;
}

.ani-pdp-sku {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.ani-pdp-title {
    margin: 0 0 14px;
    color: #222;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.7;
}

.ani-pdp-divider {
    height: 1px;
    margin: 0 0 18px;
    background: #efefef;
}

.ani-pdp-split {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ani-pdp-details {
    min-width: 0;
}

.ani-pdp-field {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 16px;
}

.ani-pdp-label {
    color: #222;
    font-weight: 700;
}

.ani-pdp-value {
    color: #555;
    font-weight: 400;
}

.ani-pdp-block {
    margin-bottom: 16px;
}

.ani-pdp-block .ani-pdp-label {
    margin-bottom: 8px;
}

.ani-pdp-features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #555;
    font-size: 15px;
    line-height: 1.9;
}

.ani-pdp-features li {
    position: relative;
    padding-right: 14px;
}

.ani-pdp-features li:before {
    content: "";
    position: absolute;
    top: 11px;
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c8c8c8;
}

.ani-pdp-desc,
.ani-pdp-desc p,
.ani-tab-copy,
.ani-tab-copy p {
    color: #555;
    font-size: 15px;
    line-height: 2;
}

.ani-pdp-buy {
    min-width: 0;
}

.ani-pdp-buy form {
    padding: 18px 18px 14px;
    background: #f7f7f8;
    border-radius: 18px;
}

.ani-variant + .ani-variant {
    margin-top: 16px;
}

.ani-variant__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ani-variant__label {
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.ani-variant__picked {
    color: var(--ani-main-color);
    font-size: 16px;
    font-weight: 500;
}

.ani-variant__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ani-variant__opt {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.ani-variant-input,
.ani-variant__opt .extraPriceAttribute {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ani-variant__chip {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 38px;
    padding: 0 16px;
    border: 1px solid #dedede;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.ani-variant__opt.is-size .ani-variant__chip {
    min-width: 52px;
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    font-size: 14px;
}

.ani-variant-input:checked + .ani-variant__chip,
.ani-variant__opt .extraPriceAttribute:checked + .ani-variant__chip {
    border-color: var(--ani-main-color);
    color: var(--ani-main-color);
    background: #fff;
    font-weight: 700;
}

.ani-variant__opt.is-unavailable {
    cursor: default;
    pointer-events: none;
}

.ani-variant__opt.is-unavailable .ani-variant__chip {
    color: #c5c5c5;
    border-color: #e6e6e6;
    background: #f3f3f3;
}

.ani-variant__opt.is-unavailable .ani-variant__chip:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    left: 8px;
    height: 1px;
    background: #cfcfcf;
    transform: rotate(-28deg);
}

.ani-pdp-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.ani-qty.num-block {
    transform: none;
    border: 1px solid #e4e4e4;
    border-radius: 24px;
    background: #fff;
    padding: 4px 8px;
}

.ani-qty .num-in {
    align-items: center;
}

.ani-qty .num-in span:before,
.ani-qty .num-in span:after {
    background-color: var(--ani-main-color) !important;
}

.ani-qty .num-in span.dis:before,
.ani-qty .num-in span.dis:after {
    background-color: #d0d0d0 !important;
}

.ani-qty .num-in input {
    width: 36px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

.ani-pdp-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 16px 0 14px;
}

.ani-pdp-price del {
    color: #b5b5ba;
    font-size: 15px;
    font-weight: 400;
}

.ani-pdp-price strong,
.ani-pdp-price #product-price {
    color: var(--ani-main-color);
    font-size: 24px;
    font-weight: 700;
}

.ani-pdp-currency {
    margin-right: 4px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
}

.ani-pdp-cartbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: var(--ani-main-color) !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
}

.ani-pdp-cartbtn:hover {
    background: var(--ani-main-color-dark) !important;
    color: #fff !important;
}

.ani-pdp-cartbtn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
}

.ani-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    background: none;
    border: 0;
    color: #9a9a9a;
    font-size: 14px;
    cursor: pointer;
}

.ani-wishlist.added,
.ani-wishlist.added svg {
    color: var(--ani-main-color);
}

.ani-tabs-card {
    float: none !important;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    padding: 22px 28px 28px !important;
    margin: 0 0 18px;
    box-shadow: none;
    overflow: visible;
}

.ani-tabs-card .ani-tabs,
.ani-tabs-card .nav-tabs {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 36px;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 4px 0 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #ececec !important;
    background: transparent !important;
    list-style: none;
}

.ani-tabs-card .nav-item,
.ani-tabs-card .box-tabs-tab {
    float: none !important;
    display: block !important;
    margin: 0 !important;
}

.ani-tabs-card .nav-tabs .nav-link,
.ani-tabs-card .box-tab-item {
    display: inline-flex !important;
    align-items: center;
    padding: 0 0 14px !important;
    margin: 0 !important;
    color: #9a9a9a !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    border: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    position: relative !important;
    top: 0 !important;
    text-decoration: none !important;
}

.ani-tabs-card .nav-tabs .nav-link:hover,
.ani-tabs-card .box-tab-item:hover {
    color: var(--ani-main-color) !important;
    border: 0 !important;
    border-top: 0 !important;
    top: 0 !important;
    background: none !important;
}

.ani-tabs-card .nav-tabs .nav-link.active,
.ani-tabs-card .box-tab-item.active,
.ani-tabs-card .nav-link.active {
    color: var(--ani-main-color) !important;
    font-weight: 700 !important;
    background: transparent !important;
    border: 0 !important;
    border-top: 0 !important;
    top: 0 !important;
}

.ani-tabs-card .nav-tabs .nav-link.active:after,
.ani-tabs-card .box-tab-item.active:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -1px;
    height: 2px;
    background: var(--ani-main-color);
}

.ani-tabs-empty {
    margin: 18px 0 8px;
    color: #8a8a8a;
    font-size: 15px;
}

.ani-tabs-card .ani-tabs-body,
.ani-tabs-card .tab-content {
    float: none !important;
    width: 100% !important;
    padding: 8px 0 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    min-height: 0 !important;
}

.ani-tabs-card .tab-pane,
.ani-tabs-card .tab-content-wrapper {
    float: none !important;
    width: 100% !important;
    padding: 12px 0 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    min-height: 0 !important;
    display: none !important;
}

.ani-tabs-card .tab-pane.active,
.ani-tabs-card .tab-content-wrapper.active {
    display: block !important;
}

.ani-tabs-card .ani-tab-copy,
.ani-tabs-card .-summary {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 12px 0 0 !important;
    color: #555 !important;
    font-size: 15px !important;
    line-height: 2 !important;
}

.ani-tabs-card .params-list,
.ani-tabs-card ul.params-list {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 8px 0 0 !important;
    list-style: none !important;
}

.ani-tabs-card .params-list-item,
.ani-tabs-card ul.params-list li.params-list-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #f1f1f1 !important;
}

.ani-tabs-card .params-list-key,
.ani-tabs-card ul.params-list li.params-list-item .params-list-key {
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}

.ani-tabs-card .params-list-key span,
.ani-tabs-card .params-list-value span,
.ani-tabs-card ul.params-list li.params-list-item span.block {
    display: inline !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: 1.7 !important;
}

.ani-tabs-card .params-list-key .block:after {
    content: ":";
    margin-right: 2px;
}

.ani-tabs-card .params-list-value,
.ani-tabs-card ul.params-list li.params-list-item .params-list-value {
    float: none !important;
    width: auto !important;
    color: #222;
    font-size: 15px;
    font-weight: 500;
}

.ani-tabs-card .comments-headline {
    margin: 12px 0 16px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.ani-tabs-card .comment-body {
    float: none !important;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
}

.ani-tabs-card .input-element,
.ani-tabs-card .form-control {
    min-height: 46px;
    border-radius: 12px;
    font-size: 15px;
}

.ani-tabs-card textarea.input-element {
    min-height: 140px;
}

.ani-tabs-card .label-element {
    font-size: 15px;
    font-weight: 500;
}

.ani-related {
    background: #fff;
    border-radius: 24px;
    margin-bottom: 24px;
    padding: 22px 28px 28px !important;
    border: 1px solid #e0e0e0;
}

.ani-related .ab-product-section {
    margin: 0;
    padding: 0;
}

.ani-related .ab-product-section__title h3 {
    font-size: 22px !important;
}

.ani-related-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 4px 16px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.ani-related-scroll::-webkit-scrollbar {
    height: 6px;
}

.ani-related-scroll__item {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
}

.ani-related-scroll .ab-product-card {
    display: block;
    width: 100%;
}

.ani-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.92);
}

.ani-lightbox.is-open,
.ani-lightbox:not([hidden]) {
    display: flex;
}

.ani-lightbox[hidden] {
    display: none !important;
}

.ani-lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
}

.ani-lightbox__close {
    position: absolute;
    top: 16px;
    left: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

body.ani-lightbox-open {
    overflow: hidden !important;
}

@media (max-width: 767px) {
    body.ani-site.ani-has-sticky-cart {
        padding-bottom: calc(var(--ani-tabbar-h) + 78px);
    }

    .ani-pdp-card,
    .ani-tabs-card,
    .ani-related {
        padding: 14px 14px 18px;
        border-radius: 18px;
    }

    .ani-pdp-title {
        font-size: 20px;
    }

    .ani-pdp-gallery .product-gallery {
        aspect-ratio: 3 / 4;
    }

    .ani-pdp-gallery .product-gallery-carousel img {
        max-height: none;
    }

    .ani-pdp-buy .ani-pdp-cartbtn {
        display: none;
    }

    .ani-related-scroll__item {
        flex: 0 0 160px;
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .ani-sticky-cart {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        right: 0;
        left: 0;
        bottom: var(--ani-tabbar-h);
        z-index: 1040;
        background: #fff;
        padding: 10px 14px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }

    .ani-sticky-cart .btn-buy {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 46px;
        border: 0;
        border-radius: 12px;
        background: var(--ani-main-color);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        max-width: 58%;
    }
}

@media (min-width: 992px) {
    .ani-pdp-main {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

    .ani-pdp-gallery {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        width: 33.333%;
    }

    .ani-pdp-info {
        flex: 1 1 66.666%;
        min-width: 0;
    }

    .ani-pdp-split {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

    .ani-pdp-details {
        flex: 1 1 52%;
    }

    .ani-pdp-buy {
        flex: 0 0 46%;
        max-width: 360px;
    }

    .ani-related-scroll__item {
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
        max-width: 220px;
    }
}

.ab-home-banners {
    display: grid;
    gap: 16px;
    margin: 8px 8px 4px;
}

.ab-home-banners--wide {
    grid-template-columns: 1fr;
}

.ab-home-banners--square {
    grid-template-columns: 1fr 1fr;
}

.ab-home-banners__item {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f3f3;
}

.ab-home-banners__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 640px) {
    .ab-home-banners--square {
        grid-template-columns: 1fr;
    }
}

.rk-banners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 10px 12px 8px;
}

.rk-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: #f3f3f3;
    min-height: 168px;
}

.rk-banner img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rk-banner:hover img {
    transform: scale(1.05);
}

.rk-banner__caption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ani-main-color, #c4455a);
    box-shadow: 0 8px 18px rgba(44, 20, 28, 0.12);
    pointer-events: none;
}

.rk-banner__caption span {
    font-family: bakhFanum, bakh, tahoma, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .rk-banners {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-inline: 12px;
    }

    .rk-banner img {
        height: 180px;
    }

    .rk-banner__caption span {
        font-size: 16px;
    }
}
