/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Google Font */
    --plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;
    --cormorant-garamond: 'Cormorant Garamond', serif;
    --poppins: 'Poppins', sans-serif;
    --lato: 'Lato', sans-serif;

    /* Color Palette */
    --white: #fff;
    --white-85: rgba(255, 255, 255, 0.85);
    --black: #000;
    --surface: #fef7f8;
    --gold-50: #fbf6ee;
    --gold-100: #f4e6d2;
    --gold-200: #e8cca6;
    --gold-300: #dcb279;
    --gold-400: #d29f5b;
    --gold-500: #ca9448;
    --gold-600: #b67f32;
    --gold-700: #946528;
    --gold-800: #734d1f;
    --gold-900: #5a3c18;
    --blush-50: #fce7f1;
    --blush-100: #f8c7dd;
    --blush-200: #f4a5c8;
    --blush-300: #f082b4;
    --blush-400: #ec5fa0;
    --blush-500: #e83e8c;
    --blush-600: #d81f70;
    --blush-700: #95474f;
    --blush-800: #73363c;
    --blush-900: #58282d;
    --neutral-50: #ffffff;
    --neutral-100: #faf8f5;
    --neutral-200: #f6f1ea;
    --neutral-300: #ede5da;
    --neutral-400: #dccfc0;
    --neutral-500: #c9b8a6;
    --neutral-600: #a8a29c;
    --neutral-700: #7a746e;
    --neutral-800: #5c5751;
    --neutral-900: #1f1b17;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--neutral-900);
    font-size: 16px;
    font-family: var(--plus-jakarta-sans);
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--cormorant-garamond);
    font-weight: 600;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
.hero__heading {
    font-size: 32px;
    line-height: 1.1;
}
.fs-1 {
    font-size: 32px !important;
    line-height: 1.1;
}
.fs-2 {
    font-size: 26px !important;
    line-height: 1.15;
}
.fs-3 {
    font-size: 26px !important;
    line-height: 1.2;
}
.fs-4 {
    font-size: 26px !important;
    line-height: 1.2;
}
.fs-sm {
    font-size: 14px;
}
.fs-base,
.fs-xl {
    font-size: 16px;
}

.ff-plus-jakarta-sans {
    font-family: var(--plus-jakarta-sans);
}
.ff-lato {
    font-family: var(--lato);
}
/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-link {
    color: currentColor;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.text-link:hover {
    color: var(--neutral-900);
}
.bg-surface {
    background-color: var(--surface) !important;
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    padding: 12px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid transparent;
    border-radius: 0;
    color: var(--neutral-50);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.btn--gold {
    border-color: var(--gold-500);
    background-color: var(--gold-500);
}
.btn--gold:hover {
    color: var(--neutral-50);
    border-color: var(--blush-500);
    background-color: var(--blush-500);
}
.btn--blush {
    border-color: var(--blush-600);
    background-color: var(--blush-600);
}
.btn--blush:hover {
    color: var(--neutral-50);
    border-color: var(--gold-500);
    background-color: var(--gold-500);
}
.btn--outlineWhite {
    border-color: var(--neutral-50);
}
.btn--outlineWhite:hover {
    color: var(--blush-500);
    background-color: var(--neutral-50);
}
.btn--outlineGold {
    color: var(--gold-500);
    border-color: var(--gold-500);
}
.btn--outlineGold:hover {
    color: var(--neutral-50);
    background-color: var(--gold-500);
}
/* Button Animation */

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.transition-common {
    transition: all 0.3s ease-in-out;
}
.flex-1 {
    flex: 1;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header__topbar {
    padding: 6px 0;
    background-color: var(--blush-500);
}
.header__topbar .swiper-wrapper {
    transition-timing-function: linear;
}
.header__topbar .swiper-slide {
    width: max-content;
}
.header__topbar__icon {
    width: 16px;
    height: 16px;
}
.header__topbar__text {
    font-size: 12px;
}
.header__wrapper {
    padding: 10px 0;
}
.logo--header,
.logo--mobileMenu {
    max-width: 64px;
}
.action-btns-wrap {
    gap: 16px;
}
.action-btn {
    width: 16px;
    height: 16px;
    color: var(--gold-600);
}
.action-btn:hover {
    color: var(--blush-600);
}
.action-btn svg {
    width: 100%;
    height: 100%;
}
.mobile-menu-open,
.mobile-menu-close {
    width: 36px;
    height: 36px;
    font-size: 16px;
    background-color: var(--gold-500);
    color: var(--white);
}
.mobile-menu-open:hover,
.mobile-menu-close:hover {
    background-color: var(--blush-500);
}
.mobile-menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}
.mobile-menu .offcanvas-header,
.mobile-menu .offcanvas-body {
    padding: 20px;
}

@supports (scrollbar-color: #000 transparent) {
    .offcanvas-body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
.offcanvas-body::-webkit-scrollbar {
    display: none;
}

.nav__link--mobileMenu {
    color: var(--neutral-900);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-700);
}
.nav__link--mobileMenu:hover {
    color: var(--blush-500);
}

/* Header Nav for Large Devices Start */
.header__left {
    gap: 32px;
}
.nav__wrap--header {
    gap: 24px;
}
.nav__link--header {
    color: var(--neutral-900);
}
.nav__link--header:hover {
    color: var(--blush-500);
}
/* Header Nav for Large Devices End */

.sticky-header {
    position: relative; /* Default position */
    width: 100%;
    z-index: 99999;
    transition: top 0.3s ease-in-out; /* Transition for smooth effect */
}

.sticky-header.sticky-active {
    position: fixed;
    top: -100px; /* Start off-screen when sticky-active is first applied */
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.sticky-header.sticky-active.show {
    top: 0; /* Slide down smoothly to 0 */
}
/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero__inner {
    width: 100%;
    height: 400px;
}
.hero__inner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.4;
    z-index: -1;
}
.hero__content {
    padding: 64px 0;
}
.hero__slider__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
}
.hero__slider__pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
.hero__slider__pagination .swiper-pagination-bullet-active {
    border-color: var(--blush-500);
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Category Section CSS Start */
/* =============================== */
.category--section {
    padding: 48px 0;
}
.category__item {
    width: 300px;
    aspect-ratio: 1 / 1;
}
.category__item:hover {
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}
.category__tag {
    min-width: 114px;
    min-height: 34px;
    padding: 6px 10px;
    color: var(--gold-600);
    font-size: 12px;
    border: 1px solid var(--gold-600);
    border-left: none;
    background-color: var(--white-85);
    letter-spacing: 0.5px;
}
.category__item:hover .category__tag {
    color: var(--neutral-50);
    border-color: var(--gold-50);
    background-color: var(--blush-500);
}
/* =============================== */
/* :: 7.0 Category Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Block Section CSS Start */
/* =============================== */
.block__thumb {
    width: 100%;
    height: 300px;
}
.block__content {
    padding: 32px 16px;
    background-color: var(--blush-500);
}
.block__content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/icons-objs/nocie-texture.png') no-repeat center /
        cover;
    mix-blend-mode: color-burn;
    z-index: -1;
}
.block__heading {
    font-size: 38px;
    line-height: 1.2;
}
.block__para {
    max-width: 630px;
    color: var(--white-85);
    letter-spacing: 0.2px;
}
/* =============================== */
/* :: 8.0 Block Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Product Section CSS Start */
/* =============================== */
.product--section {
    padding: 48px 0;
}
.product__thumb {
    width: 100%;
    height: 400px;
    margin-bottom: 16px;
}
.product__thumb__img {
    transition: all 0.5s linear;
}
.product__thumb__img--two {
    opacity: 0;
}
.product__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 14px;
}
.product__size__availability {
    padding: 10px;
    gap: 12px;
    background-color: var(--blush-500);
    left: 0;
    bottom: 0;
}
.product__category,
.product__price {
    color: var(--neutral-900);
}
.product__item:hover .product__category,
.product__item:hover .product__price {
    color: var(--blush-600);
}
.product--section .swiper-button-next::after,
.product--section .swiper-button-prev::after {
    display: none;
}
.product--section .swiper-button-next,
.product--section .swiper-button-prev {
    position: static;
    width: auto;
    height: auto;
    margin-top: 0;
}
.product__slide__btn {
    color: var(--neutral-900);
    letter-spacing: 0.2px;
}
.product__slide__btn:hover {
    color: var(--blush-600);
}
.product__slide__btn.swiper-button-disabled {
    color: var(--neutral-400);
}
/* =============================== */
/* :: 9.0 Product Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 CTA Section CSS Start */
/* =============================== */
.cta--section {
    padding: 48px 0;
    background-color: var(--blush-50);
}
.section__para--cta.fs-xl {
    font-size: 15px;
}
.cta__form__item {
    max-width: 580px;
    gap: 10px;
}
.cta__input {
    width: 100%;
    height: 44px;
    padding: 10px;
    color: var(--neutral-900);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--neutral-900);
    border-radius: 0;
    background-color: transparent;
}
.cta__input::placeholder {
    color: var(--neutral-600);
    font-size: 13px;
    font-weight: 500;
    opacity: 1;
}
.cta__input:focus,
.cta__input:not(:placeholder-shown) {
    border-color: var(--blush-600);
}
.cta__submit {
    width: 100%;
    height: 44px;
    padding: 10px 24px;
    color: var(--neutral-50);
    font-size: 14px;
    letter-spacing: 0.2px;
    background-color: var(--gold-500);
}
.cta__submit:hover {
    background-color: var(--blush-600);
}

/* =============================== */
/* :: 10.0 CTA Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background-color: var(--gold-500);
}
.footer__top {
    padding: 36px 0;
}
.logo--footer {
    max-width: 100px;
}
.nav__wrap--footer,
.footer__item__inner {
    gap: 8px;
}
.footer__social,
.footer__legal {
    gap: 4px;
}
.footer__link,
.footer__text {
    color: var(--white);
    font-size: 14px;
}
.footer__link:hover {
    color: var(--neutral-900);
}
.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid var(--neutral-50);
}
/* =============================== */
/* :: 11.0 Footer Area CSS End */
/* =============================== */

/* ============================================ */
/* :: 12.0 product-category.html Page CSS Start */
/* ============================================ */
.page-breadcrumb {
    padding: 24px 0;
    border-top: 1px solid var(--neutral-400);
}
.breadcrumb-item {
    font-size: 14px;
}
.breadcrumb-item a {
    color: var(--neutral-900);
    transition: all 0.3s ease-in-out;
}
.breadcrumb-item a:hover {
    color: var(--blush-500);
}
nav[aria-label='breadcrumb'] {
    --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.650391 0.649994L5.22899 5.22859L0.650391 9.80719' stroke='%23B67F32' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.breadcrumb-item + .breadcrumb-item::before {
    padding-right: 10px;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}
.btn--filter {
    width: 100%;
}
.filter__tags {
    gap: 12px;
}
.filter__tag__type {
    color: var(--blush-500);
}
.filter__tag {
    padding: 8px 10px;
    color: var(--gold-900);
    border: 1px solid var(--gold-900);
    border-radius: 10px;
}
.filter__tag:hover {
    color: var(--gold-600);
    border-color: var(--gold-600);
}
.btn--filter {
    font-size: 14px;
}

/* Filter & Sorter Start */
.filter-sorter {
    padding: 20px;
    border: 1px solid var(--neutral-600);
    background-color: var(--white);
}
.filter-sorter .offcanvas-header {
    padding: 0;
    padding-bottom: 20px;
}
.form--filterSorter {
    gap: 24px;
}
.filter-sorter__checkbox label,
.filter-sorter__outlineBox label {
    gap: 10px;
    cursor: pointer;
}
.filter-sorter__checkbox .box {
    width: 16px;
    height: 16px;
    color: var(--white);
    font-size: 13px;
    border: 1px solid var(--neutral-900);
    background-color: transparent;
}
.filter-sorter__checkbox input:checked + label .box {
    background-color: var(--neutral-900);
}
.view-more-filterSorter {
    color: var(--neutral-900);
    font-size: 12px;
    text-underline-offset: 3px;
}
.view-more-filterSorter:hover {
    color: var(--blush-600);
}
.filter-sorter__outlineBoxes {
    gap: 12px;
}
.filter-sorter__outlineBox .box {
    width: 40px;
    height: 30px;
    color: var(--neutral-900);
    border: 1px solid var(--neutral-900);
    background-color: transparent;
}
.filter-sorter__outlineBox input:checked + label .box {
    color: var(--white);
    background-color: var(--neutral-900);
}
.range-slider__inner {
    height: 20px;
}
.range-slider__track {
    height: 2px;
    background-color: var(--gold-100);
    border-radius: 4px;
}
.range-slider__active__track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: var(--gold-600);
    border-radius: 4px;
}
.range-slider__input {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.range-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            var(--gold-600) 0%,
            var(--gold-600) 35%,
            transparent 30%
        ),
        var(--white);
    box-shadow: 0 2px 6px 0 rgba(200, 213, 232, 0.77);
    cursor: pointer;
    pointer-events: all;
}
.range-slider__input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            var(--gold-600) 0%,
            var(--gold-600) 35%,
            transparent 30%
        ),
        var(--white);
    box-shadow: 0 2px 6px 0 rgba(200, 213, 232, 0.77);
    border: none;
    cursor: pointer;
    pointer-events: all;
}
.range-slider__input::-moz-range-track {
    background: transparent;
}
.range-slider__input::-webkit-slider-runnable-track {
    background: transparent;
}
.range-min {
    z-index: 3;
}
.range-max {
    z-index: 4;
}
/* Filter & Sorter End */
/* ========================================== */
/* :: 12.0 product-category.html Page CSS End */
/* ========================================== */

/* ========================================== */
/* :: 12.0 product-page.html Page CSS End */
/* ========================================== */
.product-details__thumbs__row.g-1 {
    --bs-gutter-x: 1px;
    --bs-gutter-y: 1px;
}
.product-details__thumb {
    width: 100%;
    aspect-ratio: 1 / 1.25;
}
.product-details__info {
    max-width: 644px;
    width: 100%;
}
.product-details__category,
.product-details__title {
    color: var(--gold-600);
    font-size: 20px;
    line-height: 1.2;
}
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.97);
}
.product-details__thumbs .swiper-button-next::after,
.product-details__thumbs .swiper-button-prev::after {
    display: none;
}
.product-details__thumbs .swiper-button-next,
.product-details__thumbs .swiper-button-prev {
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    margin-top: 0;
    font-size: 24px;
    color: var(--white);
    background-color: var(--blush-600);
}
.product-details__thumbs .swiper-button-next {
    right: -16px;
}
.product-details__thumbs .swiper-button-next i {
    margin-left: 2px;
}
.product-details__thumbs .swiper-button-prev {
    left: -16px;
}
.product-details__thumbs .swiper-button-prev i {
    margin-right: 2px;
}
.product-details__thumbs .swiper-button-next.swiper-button-disabled,
.product-details__thumbs .swiper-button-prev.swiper-button-disabled {
    pointer-events: auto;
}
.lg-actions .lg-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1px solid var(--white);
    font-size: 18px;
    color: var(--white);
    transition: all .3s ease-in-out;
}
.lg-actions .lg-icon:hover {
    color: var(--blush-600);
    background-color: var(--white);
}
.lg-actions .lg-next {
    right: 5px;
}
.lg-actions .lg-prev {
    left: 5px;
}
.add-favorite {
    width: 18px;
    height: 18px;
}
.add-favorite svg {
    width: 100%;
    height: 100%;
    color: var(--gold-600);
    transition: all 0.3s ease-in-out;
}
.add-favorite.active svg {
    color: #f00;
}
.add-favorite svg path {
    transition: all 0.3s ease-in-out;
}
.add-favorite.active svg path {
    fill: #f00;
}
.form--productDetails {
    gap: 24px;
}
.form--productDetails__inner {
    gap: 16px;
}
.productDetails-size,
.productDetails-color {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #e83e8c;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.productDetails-size .box {
    margin-top: -1px;
}
.form--productDetails__input input:checked + label.productDetails-size,
.productDetails-color {
    background-color: rgba(232, 62, 141, 0.2);
}

.productDetails-color {
    box-shadow:
        0 0 0 2px transparent,
        0 0 0 3px transparent;
}
.productDetails-color--blue {
    color: #2b3ac1;
    background-color: #2b3ac1;
}
.productDetails-color--black {
    color: #000;
    background-color: #000;
}
.productDetails-color--grey {
    color: #9f9f9f;
    background-color: #9f9f9f;
}
.form--productDetails__input input:checked + label.productDetails-color {
    box-shadow:
        0 0 0 2px var(--white),
        0 0 0 3px currentColor;
}

/* Custom Input Number Start */
.custom-number {
    padding: 8px;
    border: 1.25px solid var(--neutral-900);
    min-width: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-number__input {
    appearance: textfield;
    -moz-appearance: textfield;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: var(--neutral-900);
}
.custom-number__input::-webkit-outer-spin-button,
.custom-number__input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
.custom-number button {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* Custom Input Number End */

.product-details__accordion .accordion-item {
    border-bottom: 1px solid var(--neutral-300) !important;
}
.product-details__accordion .accordion-button,
.product-details__accordion .accordion-body {
    padding: 18px 0;
    font-size: 14px;
    color: var(--neutral-900);
}
.product-details__accordion .accordion-button::after {
    display: none;
}
.product-details__accordion .accordion-button:not(.collapsed),
.product-details__accordion .accordion-button:focus {
    color: currentColor;
    background-color: unset;
    box-shadow: unset;
}
.product-details__accordion .accordion-button .icon {
    width: 14px;
    height: 14px;
    transform-origin: 50% 50%;
    transition: all 0.2s ease-in-out;
}
.product-details__accordion .accordion-button .icon svg {
    width: 13px;
    height: 8px;
}
.product-details__accordion .accordion-button:not(.collapsed) .icon {
    transform: rotate(-180deg);
}
.product-details__accordion .accordion-body {
    padding: 0 0 18px;
}
/* ========================================== */
/* :: 12.0 product-page.html Page CSS End */
/* ========================================== */
