:root {

    --font-montserrat: "Montserrat", sans-serif;
    --font-dela: "Dela Gothic One", sans-serif;
    --Background: #FFF9DC;
    --Background-2: #F6EDC0;
    --color-1: #F6892C;
    --color-2: #EB6423;
    --color-3: #181818;
    --color-4: #FBCD0B;
    --color-5: #0CBC35;
    --color-6: #F70B22;
    --color-7: #1D74FF;
    --color-8: #9943F8;
    --color-9: #DC5514;
}
.post, .page{
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

p,
span,
a,
li,
blockquote,
small,
strong,
em,
b,
i,
input,
textarea,
button,
select {
    font-family: var(--font-montserrat);
}

.keep-scroll {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.keep-scroll::-webkit-scrollbar {
    display: none;
}

/*  */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 9px 20px;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: rgba(42, 42, 42, 0.48);
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.wpcf7 label span {
    color: red;
}

.box-cup {
    margin-bottom: 20px;
}

.box-cup .inner-box {
    position: relative;
    text-align: center;
}

.box-cup .inner-box::after {
    content: "";
    background-image: url(./images/icon_group_star.png);
    width: 100%;
    max-width: 126px;
    height: 100px;
    position: absolute;
    top: -20px;
    left: 50.5%;
    transform: translate(-50%, 0%);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}

.customize-partial-edit-shortcut button,
.widget .customize-partial-edit-shortcut button {
    left: 0 !important;
}

.ection_thanh_tich_noi_bat .swiper-pagination {
    bottom: -25px !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-2) !important;
}

.swiper-btn-style .swiper-button-next,
.swiper-btn-style .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 2px #FFDFC8;
    background-color: #FFF7F0;
}

.swiper-btn-style .swiper-button-next::after,
.swiper-btn-style .swiper-button-prev::after {
    font-size: 16px;

    color: var(--color-2);
}

.swiper-btn-style .swiper-button-prev {
    left: -50px;
}

.swiper-btn-style .swiper-button-next {
    right: -50px;
}

/*  */

.wpcf7 input:focus-visible,
.wpcf7 select:focus-visible,
.wpcf7 textarea:focus-visible {
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}


/*  */
.pagination .nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.pagination {
    gap: 15px;
    justify-content: center;
}

.pagination .page-numbers {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    color: rgba(24, 24, 24, 0.28);
    display: flex;
    justify-content: center;
    background-color: #fff;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--color-2);
    color: #fff;
}




/*  */
/* CSS */
.tilt-zoom {
    --tilt-angle: 10deg;
    /* góc nghiêng */
    --min-scale: 1;
    /* zoom out */
    --max-scale: 1.1;
    /* zoom in */
    --duration: 1.5s;
    /* 4s animation + 0.3s pause */
    display: inline-block;
    transform-origin: center center;
    animation: tiltZoom var(--duration) ease-in-out infinite;
}

@keyframes tiltZoom {
    0% {
        transform: rotate(-10deg) scale(1);
        /* nghiêng trái */
    }

    25% {
        transform: rotate(10deg) scale(1);
        /* nghiêng phải */
    }

    50% {
        transform: rotate(0deg) scale(var(--min-scale));
        /* zoom out */
    }

    75% {
        transform: rotate(0deg) scale(var(--max-scale));
        /* zoom in */
    }

    100% {
        transform: rotate(-10deg) scale(1);
        /* quay lại nghiêng trái */
    }
}


/* Nếu người dùng bật "giảm chuyển động" */
@media (prefers-reduced-motion: reduce) {
    .tilt-zoom {
        animation: none;
    }
}