.elementor-1609 .elementor-element.elementor-element-05b22d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1609 .elementor-element.elementor-element-28bcd87{--spacer-size:15px;}.elementor-1609 .elementor-element.elementor-element-2d6b8f1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1609 .elementor-element.elementor-element-bb6c54e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1609 .elementor-element.elementor-element-414b896{margin:-90px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1609 .elementor-element.elementor-element-414b896.elementor-element{--align-self:center;}.elementor-1609 .elementor-element.elementor-element-66edcf3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-50af3e3 *//* Improved Reviews Page Header with Animations */

/* Header Banner */
.header-banner {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(160, 132, 247, 0.15);
    overflow: hidden;
    margin-bottom: 40px;
    animation: slideInDown 0.8s ease-out;
}

/* Orange Bar */
.orange-bar {
    height: 6px;
    background: linear-gradient(90deg, #FAB942 0%, #ffd600 100%);
    animation: expandWidth 1.2s ease-out 0.3s both;
}

/* Main Title */
.reviews-title {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #5539a0;
    text-align: center;
    padding: 30px 20px;
    margin: 0;
    background: linear-gradient(135deg, #5539a0 0%, #a084f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    letter-spacing: -0.5px;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FAB942 0%, #ffd600 100%);
    border-radius: 2px;
    animation: expandUnderline 1s ease-out 1s both;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandUnderline {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Hover Effects */
.header-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(160, 132, 247, 0.25);
    transition: all 0.3s ease;
}

.reviews-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-title {
        font-size: 2.2rem;
        padding: 25px 15px;
    }
    
    .orange-bar {
        height: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 1.8rem;
        padding: 20px 10px;
    }
    
    .header-banner {
        margin-bottom: 30px;
    }
}

/* Review Card Sizing */
.jdgm-carousel-item__image-wrapper,
.jdgm-carousel-item__product-image {
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.jgm-featured-carousel .jgm-carousel-item {
    width: 301.63px !important;
    height: 593.52px !important;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 0 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.jgm-featured-carousel .jgm-review-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.jgm-featured-carousel .jgm-reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: center;
}

.jgm-featured-carousel .jgm-stars {
    color: #ffd600;
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.jgm-featured-carousel .jgm-review-text {
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.jgm-featured-carousel .jgm-product-name {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 6px;
}

.jgm-featured-carousel .jgm-review-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
}

@media (max-width: 768px) {
    .jgm-featured-carousel .jgm-carousel-item {
        width: 280px !important;
        height: 550px !important;
    }
}

@media (max-width: 480px) {
    .jgm-featured-carousel .jgm-carousel-item {
        width: 260px !important;
        height: 520px !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ba261fb *//* Reviews Page Styles - Incorporating Brand Colors */
.reviews-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
}

/* Header Section */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stars {
    color: #ffd600; /* Brand yellow */
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-text {
    color: #666;
    font-size: 1rem;
}

/* Featured Reviews Section */
.featured-reviews-section {
    margin-bottom: 60px;
}

/* Store Reviews Section */
.store-reviews-section {
    margin-bottom: 60px;
    background: linear-gradient(90deg, #f7f3ff 0%, #fffbe7 100%); /* Brand gradient background */
    border: 2px solid #a084f7; /* Brand purple */
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(160, 132, 247, 0.10); /* Brand purple shadow */
    padding: 28px 24px 18px 24px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.store-reviews-section:hover {
    box-shadow: 0 8px 32px rgba(160, 132, 247, 0.18);
    border-color: #ffd600; /* Brand yellow on hover */
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #5539a0; /* Brand purple */
    margin-bottom: 24px;
    text-align: left;
}

.store-description {
    margin-bottom: 24px;
}

.store-description p {
    font-size: 1.15rem;
    color: #5539a0; /* Brand purple */
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ai-generated-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #888;
    margin-top: 12px;
}

.sparkle {
    font-size: 1rem;
}

/* Attribute Tags */
.attribute-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tag {
    background: #FAB942; /* Changed from green to #FAB942 */
    color: #000000; /* Changed from white to black */
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    filter: drop-shadow(0 2px 8px rgba(160, 132, 247, 0.10));
    border-radius: 8px;
}

/* Custom Brand Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.brand-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #FAB942;
    color: #000000;
    box-shadow: 0 4px 16px rgba(250, 185, 66, 0.3);
}

.brand-btn:hover {
    background: #f0b030;
    box-shadow: 0 6px 20px rgba(250, 185, 66, 0.4);
    transform: translateY(-2px);
}

/* All Reviews Section */
.all-reviews-section {
    margin-top: 40px;
    background: linear-gradient(90deg, #f7f3ff 0%, #fffbe7 100%); /* Brand gradient background */
    border: 2px solid #a084f7; /* Brand purple */
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(160, 132, 247, 0.10); /* Brand purple shadow */
    padding: 28px 24px 18px 24px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.all-reviews-section:hover {
    box-shadow: 0 8px 32px rgba(160, 132, 247, 0.18);
    border-color: #ffd600; /* Brand yellow on hover */
}

/* Responsive Design - Mobile Full Width */
@media (max-width: 768px) {
    .reviews-page-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .store-reviews-section {
        margin: 0 0 40px 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 20px 16px;
    }
    
    .all-reviews-section {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 20px 16px;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .brand-btn {
        width: 100%;
        text-align: center;
    }
    
    .attribute-tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .reviews-page-container {
        padding: 0;
    }
    
    .store-reviews-section {
        padding: 16px 12px;
    }
    
    .all-reviews-section {
        padding: 16px 12px;
    }
    
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .store-description p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Judge.me Integration Styles */
.jgm-featured-carousel {
    margin-bottom: 40px;
}

.jgm-all-reviews {
    margin-top: 40px;
}

/* Custom styles for Judge.me widgets to match design */
.jgm-featured-carousel .jgm-carousel-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jgm-featured-carousel .jgm-carousel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.jgm-featured-carousel .jgm-review-image {
    border-radius: 8px;
    margin-bottom: 12px;
}

.jgm-featured-carousel .jgm-reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.jgm-featured-carousel .jgm-stars {
    color: #ffd600; /* Brand yellow */
    margin-bottom: 8px;
}

.jgm-featured-carousel .jgm-review-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.jgm-featured-carousel .jgm-review-text {
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.jgm-featured-carousel .jgm-product-name {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 4px;
}

.jgm-featured-carousel .jgm-review-date {
    font-size: 0.8rem;
    color: #999;
}

/* All reviews styling */
.jgm-all-reviews .jgm-review {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.jgm-all-reviews .jgm-review:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.jgm-all-reviews .jgm-stars {
    color: #FAB942; /* Changed from yellow to #FAB942 */
    margin-bottom: 12px;
}

.jgm-all-reviews .jgm-reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.jgm-all-reviews .jgm-review-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.jgm-all-reviews .jgm-review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.jgm-all-reviews .jgm-product-name {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
}

.jgm-all-reviews .jgm-review-date {
    font-size: 0.8rem;
    color: #999;
}/* End custom CSS */