/* =========================================================
   PROMO / APPOINTMENT SECTION - assets/css/appointment-promo.css
   Trang chủ - Ưu đãi 20% OFF & Ưu đãi sinh nhật
   ========================================================= */

.promo-section {
    padding: 100px 0 120px;
    background-color: #fff;
    overflow: visible;
}

/* ---------- Visual (ảnh + vòng chữ + tag nghiêng) ---------- */

.promo-visual {
    position: relative;
    max-width: 460px;
    margin: 0;
    padding-bottom: 60px;
}

.promo-photo-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(104, 89, 81, 0.18);
    z-index: 1;
}

.promo-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

/* Vòng chữ "GET UP TO 20% OFF *" chạy vòng, phần đè lên ảnh sẽ ẩn dưới ảnh */
.promo-circle-text {
    position: absolute;
    left: calc(100% - 70px);
    top: 15px;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Lớp trong cùng chịu trách nhiệm xoay tròn liên tục */
.promo-circle-text-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    animation: promoCircleSpin 28s linear infinite;
}

.promo-circle-text span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    font-family: 'SVN-Aptima', serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #4a3d35;
    white-space: pre;
}

@keyframes promoCircleSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-circle-text-inner {
        animation: none;
    }
}

/* Tag nghiêng "Let's book an appoinment!" */
.promo-tag {
    position: absolute;
    left: 42%;
    bottom: -30px;
    width: max-content;
    max-width: 300px;
    padding: 30px 34px;
    background-color: #E2DDD5;
    border-radius: 4px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    transform: rotate(-9deg);
    transform-origin: center center;
    z-index: 4;
}

.promo-tag-star {
    display: block;
    width: 24px;
    height: auto;
    margin: 0 auto 10px;
}

.promo-tag-text {
    display: block;
    font-family: 'SVN-Aptima', serif;
    font-style: italic;
    font-size: 19px;
    color: #685951;
    white-space: nowrap;
}

/* ---------- Nội dung ưu đãi bên phải ---------- */

.promo-offer {
    padding: 6px 0;
}

.promo-title {
    font-family: 'SVN-Aptima', serif;
    font-size: 2.4rem;
    color: #685951;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 18px;
}

.promo-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #948a83;
    margin-bottom: 28px;
}

.promo-desc strong {
    color: #685951;
    font-weight: 600;
}

.promo-btn {
    padding: 15px 38px;
    font-size: 15px;
}

.promo-divider {
    border: none;
    border-top: 1px solid #ddd6cc;
    margin: 40px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
    .promo-section {
        padding: 70px 0 90px;
    }

    .promo-visual {
        margin-bottom: 20px;
    }

    .promo-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .promo-circle-text {
       
        width: 190px;
        height: 190px;
        left: calc(100% - 55px);
        top: 5px;
    }

    .promo-circle-text span {
        font-size: 12px;
    }

    .promo-tag {
        left: 30%;
        bottom: -22px;
        width: auto;
        padding: 22px 24px;
        max-width: 250px;
        transform: rotate(-7deg);
    }

    .promo-tag-text {
        font-size: 16px;
        white-space: normal;
    }

    .promo-title {
        font-size: 1.7rem;
    }

    .promo-divider {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .promo-circle-text {
        width: 150px;
        height: 150px;
        left: calc(100% - 40px);
        top: 0px;
    }

    .promo-circle-text span {
        font-size: 10px;
    }

    .promo-tag {
        left: 20%;
        bottom: -18px;
        padding: 18px 20px;
        max-width: 220px;
    }

    .promo-tag-text {
        font-size: 14px;
    }

    .promo-title {
        font-size: 1.5rem;
    }
}
.promo-plus {
    margin: 32px 0;
    text-align: left;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: #685e56;
}