/* ==============================
   REVIEW SECTION
============================== */
.review-section {
    background-image: url("assets/images/review-bg.webp");
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: rgba(0, 0, 0, 0) !important;
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.customer-rating .dashicons-star-filled:before {
    color: #D9BF70;
}

/* Overlay */
.review-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.review-content{
    display: flex;
    gap: 50px;
    margin: 0 auto;
    max-width: 1490px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}
.customer-review{
    color: #fff;
    font-family: caudex;
    text-transform: uppercase;
    max-width: 600px;
}
.customer-review img{
    width: 90px;
    filter: brightness(0) invert(1);
    margin-left:  -17px;
}

.customer-review .review-heading{
    font-size: 30px;
    line-height: 1.5;
    color: #fff;
    font-family: Caudex, "Caudex Fallback";
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.customer-review p{
    font-size: 15px;
    color: #fff;
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    font-style: normal;
    text-transform: lowercase;
    line-height: 1.5;
}
.customer-review p::first-letter {
  text-transform: uppercase;
}

.customer-review a{
    color: #BB8D6A;
}

.customer-review-items{
    float: right;
    color: #fff;
}

.customer-review-item{
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.customer-review-item .customer-rating {
    display: flex;
    gap: 0;
    padding: 10px 0;
}

.customer-review-item .customer-rating img {
    width: 24px;
    height: 30px;
    filter: invert(77%) sepia(33%) saturate(450%) hue-rotate(8deg) brightness(92%) contrast(90%);
}

.customer-review-item .customer-name{
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,1);
    margin-bottom: .2em;
}
.customer-review-item p{
  font-size: 15px;
  color: rgba(239, 239, 239, 1);
  margin: .2em 0 .7em;
}
.customer-review-item span.time{
  color: rgba(255,255,255,1);
  font-size: .9em;

}

.customer-review-more a{
    background: #AB964F;
    color: #fff;
    padding: 15px 98px;
    display: inline-block;
    text-decoration: none;
    line-height: 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease;
    margin-top: 20px;  
}
.customer-review-more a:hover{
    background: #000;
}

/* ==============================
   RESPONSIVE – 992px
============================== */
@media (max-width: 992px) {

    .review-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
        text-align: center;
    }

    .customer-review {
        max-width: 100%;
    }

    .customer-review img {
        margin: 0 auto 20px;
        display: block;
    }

    .customer-review-items {
        width: 100%;
    }

    .customer-review-item {
        text-align: left;
    }

    .customer-review-more a {
        padding: 15px 60px;
    }
}


/* ==============================
   RESPONSIVE – 768px
============================== */
@media (max-width: 768px) {

    .review-section {
        padding: 60px 0;
    }

    .customer-review .review-heading {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .customer-review p {
        font-size: 14px;
    }

    .customer-review-item p {
        font-size: 14px;
    }

    .customer-review-item .customer-rating img {
        width: 20px;
        height: 26px;
    }

    .customer-review-more a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}


/* ==============================
   RESPONSIVE – 480px (Mobile)
============================== */
@media (max-width: 480px) {

    .review-section {
        padding: 40px 0;
    }

    .review-content {
        gap: 30px;
        padding: 0 20px;
    }

    .customer-review img {
        width: 70px;
    }

    .customer-review .review-heading {
        font-size: 20px;
        line-height: 1.4;
    }

    .customer-review-item {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .customer-review-item .customer-name {
        font-size: 13px;
    }

    .customer-review-item p {
        font-size: 13px;
    }

    .customer-review-item span.time {
        font-size: 12px;
    }

    .customer-review-more a {
        font-size: 14px;
        padding: 14px;
    }
}
