.pdt-wrap {
    background: #f8e6eb;
    padding: 50px 96px;
}

.pdt-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px
}

.pdt-head h2 {
    color: #FF367A;
    font-size: 36px;
    letter-spacing: 4%;
    line-height: 40px;
    font-family: 'Ruluko';
    margin: 0;
}

.pdt-head h4 {
    color: #544247;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Poppins';
    margin: 0;
}

.pdt-viewport {
    overflow: hidden
}

.pdt-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
    padding: 20px 0px;
}

.pdt-card {
    min-width: calc((100% - 48px) / 3);
    background: #fff;
    border-radius: 30px;
    padding: 95px 64px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
}

.pdt-card.active {
    transform: scaleY(1.08);
}

.pdt-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdt-header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start;
    padding-bottom: 24px;
}

.pdt-stars {
    color: #ff4f87;
    font-size: 13.5px;
    display: flex;
    gap: 2px;
}

.pdt-quote {
    font-style: italic;
    line-height: 24px;
    font-size: 16px;
    font-family: 'Be Vietnam Pro';
    color: #2F2F2F;
}

.pdt-name_age {
    line-height: 28px;
    font-size: 18px;
    font-family: 'Poppins';
    color: #1C1B1B;
}

.pdt-divider {
    border-top: 1px solid #ff8cab;
    margin: 22px 0
}

.pdt-badge {
    display: inline-block;
    background: #ff4f87;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px
}

.pdt-nav {
    display: flex;
    gap: 12px
}

.pdt-nav button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 #0000000D;
    transition: background 0.3s, box-shadow 0.3s, color 0.3s
}

.pdt-nav button:hover {
    background: #FF4F87;
    color: #fff;
    box-shadow:
            -8.18px -8.18px 21.82px 0 #FF367A inset,
            2.73px 2.73px 16.36px 0 #FECDDE inset,
            2.73px 8.18px 49.09px 0 #FF669A1F
}

.pdt-nav button .dashicons {
    width: auto;
    height: auto;
    font-size: 22px
}


/* ── Card Slider ── */
.pdc-wrap {
    position: relative;
    padding: 40px 50px;
}

/* viewport */
.pdc-viewport {
    width: 100%;
    overflow: hidden;
}

/* track */
.pdc-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding: 0 20px;
}

/* desktop = đúng 3 card */
.pdc-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);

    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* ảnh */
.pdc-img-wrap img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

/* body */
.pdc-body {
    width: 100%;
    box-sizing: border-box;
    padding: 28px;
}

/* tablet = 2 card */
@media (max-width: 991px) {
    .pdc-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

/* mobile = 1 card */
@media (max-width: 767px) {
    .pdc-track {
        gap: 16px;
        padding: 0 12px;
    }

    .pdc-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pdc-body {
        padding: 22px;
    }
}

.pdc-title {
    font-size: 17px; font-weight: 700;
    color: #1c1b1b; line-height: 1.4;
    margin: 0 0 12px; font-family: 'Poppins', sans-serif;
}
.pdc-card.active .pdc-title { font-size: 19px; }

.pdc-desc {
    font-size: 14px; color: #888;
    line-height: 1.6; margin: 0 0 24px;
}

.pdc-btn-link {
    display: inline-block;
    background: linear-gradient(90deg, #FF8CB3 0%, #FF367A 100%);
    color: #fff; text-decoration: none;
    padding: 12px 32px; border-radius: 999px;
    font-size: 14px; font-weight: 600;
    transition: opacity 0.2s;
}
.pdc-btn-link:hover { opacity: 0.85; color: #fff; }

.pdc-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 44px; height: 44px;
    background: #fff; border: none; border-radius: 50%;
    font-size: 28px; color: #FF367A; cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, color 0.3s; line-height: 1; padding: 0;
}
.pdc-btn:hover { background: #FF367A; color: #fff; }
.pdc-prev { left: 4px; }
.pdc-next { right: 4px; }

.pdc-dots {
    display: flex; justify-content: center;
    gap: 8px; margin-top: 8px;
}
.pdc-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: #ffb3cc; cursor: pointer;
    transition: width 0.3s, background 0.3s;
}
.pdc-dot.active { width: 24px; background: #FF367A; }

@media (max-width: 600px) {
    .pdc-wrap { padding: 30px 16px; }
    .pdc-track { padding: 0 8px; }
    .pdc-prev { left: -8px; }
    .pdc-next { right: -8px; }
    .pdc-img-wrap { height: 160px; }
    .pdc-body { padding: 16px 16px 24px; }
    .pdc-title { font-size: 15px; }
    .pdc-desc { font-size: 13px; }
}


