/* Google Reviews Styles */
.ttd-google-reviews{
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #dbdde1;
    width: 240px;
    box-shadow: 0 3px 0 0 #a3a3a3;
}
.google-review-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
}

.google-review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.google-review-header img.google-logo {
    width: 230px;
    height: 120px;
    object-fit: contain;
}

.google-review-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.rating-stars-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}
.rating-number {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}
.rating-stars{
    line-height: 1;
    margin-top: -3px;
}
.rating-stars svg {
    fill: #ffa500;
    width: 14px;
    height: 14px;
}

.review-count {
    font-size: 13px;
    color: #666;
    line-height: normal;
}
.review-count a{
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}
.review-count a:hover{
    color: #ffa500;
}
.google-review-rating{
    line-height: normal;
}
.write-review-btn {
    display: inline-block;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 400;
    color: #000;
}
.write-review-btn:hover{
    text-decoration: underline;
    color: #ffa500;
}
.google-review-loading,
.google-review-error {
    padding: 20px;
    text-align: center;
    color: #666;
}

.google-review-error img {
    max-width: 100%;
    height: auto;
}

#google-reviews-container {
    height: 100%;
}