.sticky-header.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #c4eee4;
    transition: all 0.5s ease;
}

/* Slider Item */
.main-slider-one__item {
    position: relative;
    overflow: hidden;
}

/* Background */
.main-slider-one__bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0.1;
}

/* Dark Overlay */
.main-slider-one__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    opacity: 1;
}

/* Content */
.main-slider-one__content {
    position: relative;
    z-index: 5;
}

.main-slider-one__sub-title,
.main-slider-one__title {
    color: #fff;
}

/* Product Image */
.main-slider-one__shape {
    position: absolute;
    right: 5%;
    top: 10%;
    transform: translateY(-50%);
    z-index: 5;
}

.main-slider-one__shape img {
    max-width: 550px;
    width: 100% !important;
    animation: floatY 4s ease-in-out infinite;
}

/* Discount Badge */
.slider-discount {
    position: absolute;
    top: -20px;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    color: #b87332;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.slider-discount span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Shape Two */
.main-slider-one__shape-two {
    position: absolute;
    right: 12%;
    bottom: 10%;
    z-index: 2;
    opacity: 0.25;
}

/* Floating Animation */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.faq-section {
    background: #f7f4ee;
    position: relative;
    overflow: hidden;
}

/* Left Side Animation */
.faq-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 50%;
    width: 250px;
    height: 250px;
    background: rgba(228, 180, 74, 0.15);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: floatCircle 6s ease-in-out infinite;
}

.faq-section::after {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 80px;
    width: 80px;
    height: 80px;
    border: 2px dashed #e4b44a;
    border-radius: 50%;
    animation: rotateCircle 12s linear infinite;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(30px);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 40px 30px;
    overflow-y: auto;
    transition: all .4s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.about-sidebar.active {
    left: 0;
}

.about-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
}

.about-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
}

.about-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-header__cart {
    cursor: pointer;
}
.about-sidebar .social_meida{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4rem;
}

.about-sidebar .social_meida a{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9e7309;
    color: #fff;
    transition: all .3s ease;
}

.about-sidebar .social_meida a:hover{
    background: #e8c15d;
    color: #000;
    transform: translateY(-4px);
}

.contact-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e8c15d;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.contact-btn:hover {
    transform: rotate(10deg) scale(1.05);
    color: #000;
}

.faq-subtitle {
    font-size: 32px;
    margin-bottom: 30px;
}

.custom-faq .accordion-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.custom-faq .accordion-button {
    background: #fff;
    box-shadow: none;
    font-size: 22px;
    font-weight: 600;
    padding: 25px;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.custom-faq .accordion-body {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    padding: 25px;
}

.custom-faq .accordion-button::after {
    width: 40px;
    height: 40px;
    background: #e8c15d;
    border-radius: 50%;
    background-position: center;
    background-size: 14px;
}

.active-item {
    border: 2px solid #111 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .main-slider-one__shape {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-top: 40px;
    }

    .main-slider-one__shape img {
        max-width: 275px;
    }

    .slider-discount {
        width: 85px;
        height: 85px;
        font-size: 22px;
        top: 0;
        right: 20px;
    }

    .main-slider-one__item {
        min-height: auto;
        padding: 120px 0;
    }

    .main-slider-one__content {
        /* margin-top: 8rem; */
    }

    .main-slider-one__shape {
        display: block;
    }
}



/* -------------------- */
.service-one__item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-one__item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-one__item__link {
    margin-top: auto;
}