:root {
    --light-gray: #f3f3f3;
    --hot-red: #f80d02;
    --jet-black: #121212;
    --dark-gray: #4a5565;
    --ldark-gray: #6a7282;
    --jet-grey: #f8f9fb;
    --jet-success: #000000;
    --boho-beige: #f5f0e6;
    --boho-terracotta: #c46d5e;
    --boho-sage: #8a9b68;
    --boho-mustard: #d4a017;
    --boho-brown: #8b7355;
    --boho-terracotta-bright: #e46d57;
    --boho-mustard-bright: #f5b041;
    --boho-sage-bright: #a9c38e;
    --boho-brown-bright: #7b5a42;
    --boho-beige-bright: #f9f4ec;
}
@font-face {
    font-family: "Playfair Display";
    src: url(/fonts/PlayfairDisplay-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Playfair Display";
    src: url(/fonts/PlayfairDisplay-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url(/fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(/fonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url(/fonts/Poppins-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(/fonts/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Playfair Display", serif;
    color: var(--jet-black);
    background: #fefcf9;
    background-image:
        radial-gradient(
            circle at 30% 30%,
            rgb(255 255 255 / 0.9),
            transparent 60%
        ),
        linear-gradient(145deg, #fffdf5 0%, #ffffff 40%, #f8f6f0 100%);
    background-blend-mode: screen;
}
.poppins {
    font-family: "Poppins", sans-serif;
}
.quick-view:hover span {
    display: flex;
}
.slider {
    scroll-behavior: smooth;
}
.slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
    position: relative;
}
.slider.dragging * {
    user-select: none;
    pointer-events: none;
}
.slider.no-transtion {
    scroll-behavior: auto !important;
}
.sm-slide {
    background: rgb(0 0 0 / 0.3);
    height: 4px;
    width: 40px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.sm-slide::before {
    content: "";
    background: linear-gradient(
        to right,
        var(--boho-terracotta),
        var(--boho-mustard)
    );
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.active.sm-slide::before {
    transform-origin: left;
    transform: scaleX(1);
}
.cards-slider {
    margin: 0 -12px;
}
.cards-slider .slide_ {
    width: calc((100%) / 4);
}
.cards-slider .slide {
    width: 100% !important;
}
.cards-slider-parent .sm-slide {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.cards-slider-parent .sm-slide.active {
    width: 30px;
    border-radius: 10px;
}
.reviews-slider {
    margin: 0 -12px;
}
.reviews-slider .slide {
    width: calc(100% / 3);
}
.fade-in-bottom {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1)
        both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 1023.9px) {
    .reviews-slider .slide {
        width: calc(100% / 2);
    }
    .cards-slider .slide_ {
        width: calc((100%) / 3);
    }
}
@media (max-width: 849px) {
    .cards-slider .slide_ {
        width: calc((100%) / 2);
    }
}
@media (max-width: 639px) {
    .cards-slider .slide_ {
        width: 100%;
    }
    .cards-slider,
    .reviews-slider {
        margin: 0 0;
    }
    .reviews-slider .slide {
        width: 100%;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.animate-scroll {
    animation: scroll 20s linear infinite;
}
.slide-in-top {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        both;
    animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
.slide-out-bottom {
    -webkit-animation: slide-out-bottom 0.5s
        cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    animation: slide-out-bottom 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@-webkit-keyframes slide-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }
}
@keyframes slide-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-title:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--boho-terracotta),
        var(--boho-mustard)
    );
    bottom: -10px;
    left: 15%;
    transform: translateX(0);
}
img.no-transition {
    display: none;
}
.bs {
    transition: transform 0.3s ease-in-out;
}
.bs.active {
    opacity: 0.5;
}
.boho-select {
    position: relative;
    width: 12rem;
    color: var(--boho-brown);
    font-family: "Poppins", sans-serif;
}
.select-box {
    position: relative;
    width: 100%;
}
.select-trigger {
    background: #fff;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.select-trigger:hover,
.select-box.active .select-trigger {
    border-color: var(--boho-mustard);
}
.select-trigger i {
    transition: transform 0.3s ease;
}
.select-box.active .select-trigger i {
    transform: rotate(-180deg);
}
.select-box.active .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.option:hover {
    background: var(--boho-terracotta);
    color: #fff;
}
.option input[type="radio"] {
    display: none;
}
.option:has(input[type="radio"]:checked) {
    color: #fff;
    background-color: var(--boho-terracotta);
}
.active-bars {
    border-color: var(--boho-terracotta);
}
.special-container .shadow-md {
    box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px !important;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: not-allowed !important;
}
.special-container[data-grid="1"] {
    grid-template-columns: 1fr;
}
.special-container[data-grid="2"] {
    grid-template-columns: repeat(2, 1fr);
}
.special-container[data-grid="3"] {
    grid-template-columns: repeat(2, 1fr);
}
.special-container[data-grid="4"] {
    grid-template-columns: repeat(2, 1fr);
}
.special-btn {
    display: none !important;
}
@media (min-width: 640px) {
    .special-container[data-grid="1"] {
        grid-template-columns: 1fr;
    }
    .special-container[data-grid="1"] .slide-content {
        display: flex;
        border-radius: 5px !important;
    }
    .special-container[data-grid="1"] .detail {
        padding: 20px 40px;
    }
    .special-container[data-grid="1"] .description {
        display: block !important;
    }
    .special-container[data-grid="1"] .image-container {
        width: 250px;
        border-radius: 5px !important;
        overflow: hidden;
    }
    .special-container[data-grid="1"] .special-btn {
        display: flex !important;
    }
}
@media (min-width: 768px) {
    .special-container[data-grid="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
    .special-container[data-grid="4"] {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .special-container[data-grid="4"] {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 639px) {
    .special-container[data-grid="2"] {
        grid-template-columns: 1fr;
    }
    .special-container[data-grid="3"] {
        grid-template-columns: 1fr;
    }
    .special-container[data-grid="4"] {
        grid-template-columns: 1fr;
    }
}
#imageModal {
    opacity: 0;
    pointer-events: none;
}
#imageModal.flex {
    opacity: 1;
    pointer-events: auto;
}
#mainImage:hover {
    cursor: crosshair;
}
.ripple span:nth-child(2) {
    animation: ripple 0.6s linear;
}
@keyframes ripple {
    from {
        opacity: 1;
        transform: scale(0);
    }
    to {
        opacity: 0;
        transform: scale(4);
    }
}
.bg-gradient {
    background: linear-gradient(
        135deg,
        var(--boho-terracotta) 0%,
        var(--boho-mustard) 100%
    );
    animation: pulses 1.5s ease-out infinite;
}
.modern-boho-btn {
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(
        135deg,
        var(--boho-terracotta) 0%,
        var(--boho-mustard) 100%
    );
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 4px 15px rgb(196 109 94 / 0.3),
        inset 0 1px 0 rgb(255 255 255 / 0.2);
}
.modern-boho-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(255 255 255 / 0.2),
        transparent
    );
    transition: left 0.8s ease;
}
.modern-boho-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--boho-terracotta-bright),
        var(--boho-mustard-bright),
        var(--boho-sage-bright)
    );
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modern-boho-btn:hover {
    transform: translateY(-2px);
}
.modern-boho-btn:hover::before {
    left: 100%;
}
.modern-boho-btn:hover::after {
    opacity: 1;
}
@keyframes subtle-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}
.modern-boho-btn-outline {
    position: relative;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--boho-terracotta);
    border: 2px solid #fff0;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--boho-terracotta), var(--boho-mustard))
            border-box;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease;
    z-index: 0;
}
.modern-boho-btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--boho-terracotta),
        var(--boho-mustard)
    );
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}
.modern-boho-btn-outline span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.modern-boho-btn-outline:hover {
    transform: translateY(-2px);
}
.modern-boho-btn-outline:hover::before {
    transform: translateX(0);
}
.modern-boho-btn-outline:hover span {
    color: #fff;
}
.active-toc {
    color: var(--boho-terracotta);
    font-weight: 600;
    position: relative;
}
.active-toc::before {
    content: "•";
    position: absolute;
    left: -14px;
    color: var(--boho-terracotta);
}
@media (min-width: 1560px) {
    html,
    body {
        font-size: 17px;
    }
}
@media (min-width: 1700px) {
    html,
    body {
        font-size: 18px;
    }
}
@media (min-width: 1800px) {
    html,
    body {
        font-size: 18.5px;
    }
}
.modalDescription {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}
.modalDescription h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
    color: var(--boho-brown);
}
.modalDescription h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: var(--boho-brown);
}
.modalDescription h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.3rem;
    color: var(--boho-brown);
}
.modalDescription h4,
.modalDescription h5,
.modalDescription h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    color: var(--boho-brown);
}
.modalDescription p {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: var(--dark-gray);
    font-size: 1rem;
}
.modalDescription strong,
.modalDescription b {
    font-weight: 600;
    color: var(--boho-brown);
}
.modalDescription i {
    font-style: italic;
    color: var(--ldark-gray);
}
.modalDescription ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.modalDescription ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.modalDescription li {
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
}
.modalDescription blockquote {
    border-left: 4px solid var(--boho-sage);
    padding-left: 1rem;
    font-style: italic;
    color: var(--ldark-gray);
    margin: 0.75rem 0;
}
.modalDescription hr {
    border-top: 1px solid var(--boho-beige);
    margin: 1rem 0;
}
.modalDescription img {
    max-width: 100%;
    border-radius: 0.25rem;
    margin: 0.75rem 0;
}
.modalDescription table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.75rem;
}
.modalDescription th,
.modalDescription td {
    border: 1px solid var(--boho-beige);
    padding: 0.5rem;
    text-align: left;
}
.modalDescription code {
    background-color: var(--boho-beige);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    color: var(--jet-black);
    font-family: monospace;
    font-size: 0.875rem;
}
.modalDescription pre {
    background-color: var(--boho-beige);
    padding: 0.75rem;
    border-radius: 0.25rem;
    overflow-x: auto;
    color: var(--jet-black);
    font-family: monospace;
    font-size: 0.875rem;
}
#filterSlider .slide {
    width: 100%;
    display: block;
    flex-shrink: 0;
    padding: 0 0.4rem;
}
.modalDescription a {
    color: var(--boho-terracotta) !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.modalDescription a strong {
    transition: all 0.3s ease;
    color: var(--boho-terracotta) !important;
}
.modalDescription a:hover,
.modalDescription a:hover strong {
    color: var(--boho-mustard) !important;
}
@keyframes pulses {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
.notification {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1000;
    cursor: default;
}
@media screen and (max-width: 768px) {
    .notification {
        position: fixed;
        top: 20px;
        right: 10px;
    }
}
.progress-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-ring {
    transform: rotate(-90deg);
}
.progress-ring__background {
    fill: none;
    stroke-width: 8;
}
.progress-ring__background {
    fill: none;
    stroke: #f3f3f3;
    stroke-width: 8;
}
.progress-ring__circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke 0.3s;
}
.success-toast .progress-ring__circle {
    stroke: #0faf0f;
}
.error-toast .progress-ring__circle {
    stroke: #f80d02;
}
.animate-fadeOut {
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.animate-slideIn {
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes boho-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.boho-spin {
    animation: boho-spin 1s linear infinite;
}
@keyframes shakeError {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-6px);
    }
    30% {
        transform: translateX(6px);
    }
    45% {
        transform: translateX(-6px);
    }
    60% {
        transform: translateX(6px);
    }
    75% {
        transform: translateX(-3px);
    }
    100% {
        transform: translateX(0);
    }
}
.shake-error {
    animation: shakeError 0.45s ease-in-out;
    outline: 2px solid var(--hot-red);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #fee2e2;
}
div:has(.c_error:not(.hidden)) > input {
    border-color: var(--hot-red) !important;
}
.parent-faqs .sidebar-accordion-btn {
    background-image: linear-gradient(
        45deg,
        rgb(218 93 58 / 0.7),
        rgb(243 200 79 / 0.7)
    );
}
.parent-faqs .active-btn.sidebar-accordion-btn {
    background-image: linear-gradient(
        45deg,
        var(--boho-terracotta),
        var(--boho-mustard)
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}
.shine-effect {
    position: relative;
    overflow: hidden;
}
.parent-faqs .active-btn.sidebar-accordion-btn::after,
.shine-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(1 1 1 / 0.1),
        transparent
    );
    animation: shine 1.5s 1;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
.focus-element {
    border-color: var(--boho-terracotta) !important;
}
.focus-error {
    border-color: var(--hot-red) !important;
}
.loader {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff0;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border-bottom: 4px solid var(--boho-sage-bright);
    border-left: 4px solid #fff0;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.modal-image-enter {
    clip-path: circle(0% at 50% 50%);
    transform: scale(0.8);
    opacity: 0;
}
.modal-image-active {
    clip-path: circle(150% at 50% 50%);
    transform: scale(1);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-image-container {
    position: relative;
}
#imageModal {
    opacity: 0;
    transition: opacity 0.3s ease;
}
#imageModal.flex {
    opacity: 1;
}
.modal-active {
    position: fixed;
    border-radius: 0;
    object-fit: cover;
    z-index: 1001;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-up {
    opacity: 0;
    animation: slideUp 800ms forwards cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stick_ .h-9 {
    height: 100% !important;
}
.stick_ .top-9 {
    opacity: 100% !important;
}
header li a::before,
footer .link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    background: linear-gradient(
        to right,
        var(--boho-terracotta),
        var(--boho-mustard)
    );
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
}
footer .link::before {
    background-color: #fff;
    width: 100%;
}
header li:hover .specific-a::before,
footer .link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
.header-dropdown a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.animate-marquee {
    animation: marquee 15s linear infinite;
}



.scrollbar-hide {
  -ms-overflow-style: none; /* IE & Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
