/* =========================================================
   PakHerbal Customer Reviews
   File: public/css/frontend/home/customer-reviews.css
   ========================================================= */

.pakherbal-customer-reviews,
.pakherbal-customer-reviews *,
.pakherbal-customer-reviews *::before,
.pakherbal-customer-reviews *::after {
    box-sizing: border-box;
}

.pakherbal-customer-reviews {
    --reviews-green: var(
        --pakherbal-theme-primary,
        #79c943
    );

    --reviews-green-dark: #4e9728;
    --reviews-navy: #071827;
    --reviews-text: #27342d;
    --reviews-muted: #647069;
    --reviews-background: #eef4e8;
    --reviews-card-background: #ffffff;
    --reviews-border: rgba(36, 69, 47, 0.12);
    --reviews-star: #e2aa2d;

    width: 100%;
    min-width: 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 8%,
            rgba(121, 201, 67, 0.09),
            transparent 24%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(7, 24, 39, 0.045),
            transparent 27%
        ),
        var(--reviews-background);
}

/* =========================================================
   Container
   ========================================================= */

.pakherbal-customer-reviews__container {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 58px 28px 64px;
}

/* =========================================================
   Header
   ========================================================= */

.pakherbal-customer-reviews__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 27px;
}

.pakherbal-customer-reviews__heading-group {
    min-width: 0;
}

.pakherbal-customer-reviews__title {
    margin: 0;
    color: var(--reviews-navy);
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.pakherbal-customer-reviews__description {
    max-width: 770px;
    margin: 12px 0 0;
    color: var(--reviews-muted);
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

/* =========================================================
   View All Button
   ========================================================= */

.pakherbal-customer-reviews__view-all {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 47px;
    padding: 11px 20px;
    color: #ffffff;
    background: var(--reviews-navy);
    border: 1px solid var(--reviews-navy);
    border-radius: 0;
    box-shadow:
        0 11px 22px rgba(7, 24, 39, 0.16);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.pakherbal-customer-reviews__view-all svg {
    flex: 0 0 auto;
    color: var(--reviews-green);
    transition: transform 160ms ease;
}

.pakherbal-customer-reviews__view-all:hover {
    color: var(--reviews-navy);
    background: var(--reviews-green);
    border-color: var(--reviews-green);
    box-shadow:
        0 15px 27px rgba(73, 145, 37, 0.24);
    transform: translateY(-2px);
}

.pakherbal-customer-reviews__view-all:hover svg {
    color: var(--reviews-navy);
    transform: translateX(3px);
}

.pakherbal-customer-reviews__view-all:focus-visible {
    outline: 3px solid rgba(121, 201, 67, 0.42);
    outline-offset: 3px;
}

/* =========================================================
   Reviews Grid
   ========================================================= */

.pakherbal-customer-reviews__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;
}

/* =========================================================
   Review Card
   ========================================================= */

.pakherbal-review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 20px;
    background: var(--reviews-card-background);
    border: 1px solid var(--reviews-border);
    border-top: 3px solid var(--reviews-green);
    border-radius: 0;
    box-shadow:
        0 12px 26px rgba(25, 53, 36, 0.07);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.pakherbal-review-card:hover {
    border-right-color: rgba(78, 151, 40, 0.28);
    border-bottom-color: rgba(78, 151, 40, 0.28);
    border-left-color: rgba(78, 151, 40, 0.28);
    box-shadow:
        0 18px 34px rgba(25, 53, 36, 0.12);
    transform: translateY(-3px);
}

/* =========================================================
   Quote and Rating
   ========================================================= */

.pakherbal-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pakherbal-review-card__quote {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--reviews-green-dark);
    background: rgba(121, 201, 67, 0.13);
    border: 1px solid rgba(121, 201, 67, 0.17);
}

.pakherbal-review-card__quote svg {
    display: block;
    width: 20px;
    height: 20px;
}

.pakherbal-review-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.pakherbal-review-card__rating svg {
    display: block;
    width: 15px;
    height: 15px;
    color: #d8ddd7;
}

.pakherbal-review-card__rating svg.is-active {
    color: var(--reviews-star);
}

/* =========================================================
   Review Content
   ========================================================= */

.pakherbal-review-card__text {
    display: -webkit-box;
    min-height: 112px;
    margin: 18px 0 0;
    overflow: hidden;
    color: var(--reviews-text);
    font-size: 13px;
    font-style: normal;
    line-height: 1.72;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.pakherbal-review-card__subject {
    margin: 14px 0 0;
    padding-top: 12px;
    color: var(--reviews-muted);
    border-top: 1px solid rgba(36, 69, 47, 0.09);
    font-size: 11px;
    line-height: 1.5;
}

.pakherbal-review-card__subject strong {
    color: var(--reviews-green-dark);
    font-weight: 800;
}

/* =========================================================
   Customer Footer
   ========================================================= */

.pakherbal-review-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 17px;
}

.pakherbal-review-card__avatar {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--reviews-navy),
            #174733
        );
    border: 2px solid rgba(121, 201, 67, 0.45);
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
}

.pakherbal-review-card__customer {
    min-width: 0;
}

.pakherbal-review-card__name-row {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.pakherbal-review-card__name {
    display: block;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--reviews-navy);
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pakherbal-review-card__verified {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    color: var(--reviews-green-dark);
}

.pakherbal-review-card__verified svg {
    display: block;
    width: 17px;
    height: 17px;
}

.pakherbal-review-card__location {
    margin: 3px 0 0;
    color: var(--reviews-muted);
    font-size: 10px;
    line-height: 1.4;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1050px) {
    .pakherbal-customer-reviews__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .pakherbal-review-card__text {
        min-height: 90px;
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 900px) {
    .pakherbal-customer-reviews__container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .pakherbal-customer-reviews__container {
        padding: 44px 12px 48px;
    }

    .pakherbal-customer-reviews__header {
        align-items: center;
        gap: 14px;
        margin-bottom: 21px;
    }

    .pakherbal-customer-reviews__title {
        font-size: clamp(27px, 7vw, 35px);
    }

    .pakherbal-customer-reviews__description {
        display: none;
    }

    .pakherbal-customer-reviews__view-all {
        min-height: 41px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .pakherbal-customer-reviews__view-all svg {
        width: 15px;
        height: 15px;
    }

    .pakherbal-customer-reviews__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: min(100%, 540px);
        margin: 0 auto;
    }

    .pakherbal-review-card {
        padding: 16px;
    }

    .pakherbal-review-card__text {
        min-height: auto;
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.65;
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }

    .pakherbal-review-card__subject {
        margin-top: 11px;
        padding-top: 10px;
    }

    .pakherbal-review-card__footer {
        padding-top: 13px;
    }
}

/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 430px) {
    .pakherbal-customer-reviews__header {
        align-items: flex-end;
    }

    .pakherbal-customer-reviews__title {
        max-width: 205px;
        font-size: 28px;
    }

    .pakherbal-customer-reviews__view-all span {
        max-width: 70px;
        white-space: normal;
    }
}

@media (max-width: 359px) {
    .pakherbal-customer-reviews__container {
        padding-right: 8px;
        padding-left: 8px;
    }

    .pakherbal-customer-reviews__header {
        gap: 8px;
    }

    .pakherbal-customer-reviews__title {
        font-size: 25px;
    }

    .pakherbal-customer-reviews__view-all {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 10px;
    }
}

/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .pakherbal-customer-reviews__view-all,
    .pakherbal-customer-reviews__view-all svg,
    .pakherbal-review-card {
        transition: none;
    }

    .pakherbal-customer-reviews__view-all:hover,
    .pakherbal-customer-reviews__view-all:hover svg,
    .pakherbal-review-card:hover {
        transform: none;
    }
}