/** Shopify CDN: Minification failed

Line 613:1 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
/* General Body Styles */
	@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@200;300;400;500&family=Roboto:wght@200;300;400;500&family=Arial:wght@200;300;400;500&display=swap');

    /* Main Widget Container */
    .reviews-widget-container {
        font-family: "Google Sans", "Roboto", Arial, sans-serif;
        box-sizing: border-box;
        width: 100%;
        max-width: 1280px; /* This can be adjusted by the 'Full width' setting */
        margin: 0 auto;
        padding: 40px; /* Vertical padding, horizontal is handled by the theme */
        background-color: transparent;
    }

    /* Header Section */
    .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            margin-bottom: 24px;
    }

    .header-info {
            display: flex;
            align-items: center;
            gap: 16px;
    }
    
    .rating-value {
            font-size: 48px;
            font-weight: bold;
            color: #121212;
    }

    .rating-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
    }
    
    .stars {
            display: flex;
    }

    .stars svg {
            width: 19px;
            height: 19px;
    }
    
    .reviews-count {
            font-size: 13px;
						line-height: 1.2;
						color: rgb(17, 17, 17);
            display: flex;
            align-items: center;
            gap: 4px;
    }

    .google-logo {
            width: 60px;
            height: auto;
    }

    .review-us-button {
            background-color: #197BFF;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 22px;
						line-height: 1.32;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
    }

    .review-us-button:hover {
            background-color: #0056b3;
    }

    /* Swiper Carousel Styles */
    .swiper {
        width: 100%;
        /* padding: 0 20px; Base padding for mobile */
        box-sizing: border-box;
        /* transition: height 0.3s ease;  */
    }

    .swiper-slide {
            width: 300px;
            padding: 24px;
            border: 1px solid rgba(17, 17, 17, 0.1); /* Correct border */
            border-radius: 24px;
            box-sizing: border-box;
            height: auto;
            display: flex;
            flex-direction: column;
            transition: min-height 0.4s ease-in-out;
            background-color: #ffffff; /* Correct background */
    }

    .swiper-container {
    transform: none;
    }

		.swiper-wrapper {
    align-items: flex-start; /* ADD THIS RULE */
    margin-bottom: 10px !important;
    /* transition: height 0.4s ease-out; */
}
    
    /* Card Header (Author Info) */
    .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
    }

    .card-header .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            flex-shrink: 0;
    }
    
    .author-info {
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Prevent text overflow */
    }
    
    .author-name {
            font-weight: 600;
            color: #121212;
            font-size: 15px;
            line-height: 18px;
    }

    .review-date {
            font-size: 12px;
            line-height: 14px;
            margin-top: 4px;
            color: rgba(17, 17, 17, 0.5);
    }
    
    /* Card Body (Stars & Text) */
    .card-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 6px;
    }

    .card-stars svg {
            width: 18px;
            height: 18px;
    }
    
    .review-text {
            font-size: 16px;
            line-height: 1.5;
            color: #1A1A1A;
            flex-grow: 1;
    }
    
    /* AI Summary Card Specific Styles */
    .ai-summary-card .author-name {
             font-weight: 600;
             background-image: linear-gradient(90deg, #8D38FF, #197BFF);
             color: transparent;
             -webkit-background-clip: text;
             background-clip: text;
    }
    
    .ai-summary-list {
            list-style: none;
            padding: 0;
            margin: 0;
            /* FIXED: Added transition for smooth height animation */
            transition: height 0.4s ease-in-out;
    }
    
    .ai-summary-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.4;
    }
    
    .ai-summary-list svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            fill: #333; /* Correct checkmark color */
    }
    
    /* Swiper Navigation and Pagination */
    .swiper-button-next, .swiper-button-prev {
    /* Override Swiper's default positioning and remove the default icon */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    margin-top: -16px; /* Adjust vertical centering */
    background: none;
    --swiper-navigation-size: 32px; /* Set size for tap area */
}
.swiper-button-next::after, .swiper-button-prev::after {
    display: none; /* Hide the default Swiper '::after' arrow */
}

/* Custom container from your provided HTML/CSS */
.arrow-control-container {
    position: relative;
    display: flex; /* Use flexbox to center the SVG */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(17, 17, 17, 0.7);
    box-shadow: none;
    transition: background-color 0.3s ease;
}
.arrow-control-container svg {
    width: 16px !important;
    height: 16px !important;
    fill: #ffffff !important;
}

/* Positioning */
.swiper-button-prev {
	width: 32px !important;
	height: 32px !important;
	left: 4px !important;
}
.swiper-button-next {
	width: 32px !important;
	height: 32px !important;
	right: 4px !important;
}

/* Hide arrows when they are disabled by Swiper */
.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}
    
    .swiper-pagination {
        position: static;
		bottom: auto;
    }
    
    .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #d8d8d8; /* Light gray for inactive bullets */
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #3c4043 !important; /* Dark gray/black for the active bullet */
}

/* When using dynamicBullets, Swiper adds this class to the main active bullet.
   We can make it slightly larger for emphasis, just like in the example. */
.swiper-pagination-bullet-active-main {
    transform: scale(1.2);
}

    .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background-color: #333;
            animation: blink 0.7s infinite;
    }

    @keyframes blink {
            50% { opacity: 0; }
    }

			/* --- NEW STYLES --- */
			.avatar-container {
					position: relative;
					flex-shrink: 0;
			}

			.google-overlay-icon {
					position: absolute;
					bottom: -2px;
					right: -4px;
					width: 26px;
					height: 26px;
					z-index: 1;
			}

			.verified-badge {
					width: 14px;
					height: 14px;
					flex-shrink: 0;
			}

			/* ADD THESE NEW GOOGLE-STYLED CSS RULES AT THE END OF YOUR <style> BLOCK */

/* --- Dialog Overlay and Content --- */
/* ADD THESE NEW GOOGLE-STYLED CSS RULES AT THE END OF YOUR <style> BLOCK */

/* --- Google Fonts Import --- */

/* --- Dialog Styles --- */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

.dialog-overlay.visible {
    opacity: 1;
}

.dialog-content {
    background-color: #fff;
    border-radius: 20px; /* Correct border radius */
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
    width: 100%;
    max-width: 600px; /* Wider to match Google's dialog */
    font-family: Arial, sans-serif;
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin: 24px; /* Prevents touching screen edge */
}

.dialog-overlay.visible .dialog-content {
    transform: scale(1);
}

.dialog-business {
	height: 68px;
	line-height: 68px;
}

.dialog-business h2 {
	text-align: center;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	color: #1f1f1f;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	margin: 0;
}

.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px 32px;
}

.user-info { display: flex; align-items: center; gap: 16px; }
.user-avatar { border: 1px solid rgba(17, 17, 17, 0.1); width: 40px; height: 40px; border-radius: 50%; }
.user-details { display: flex; flex-direction: column; }

.user-name {
	font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1f1f1f;
}

.posting-publicly {
    font-size: 14px;
    color: #5e5e5e;
    display: flex;
    align-items: center;
		line-height: 0;
		margin-top: -4px;
		gap: 4px;
	}
.info-icon {
    fill: #5e5e5e;
    width: 16px;
    height: 16px;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: #5f6368;
    cursor: pointer;
    line-height: 1;
}

/* --- Dialog Body and Form Elements --- */
.dialog-body {
    padding: 0 32px 8px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}
.star-rating input { display: none; }
.star-rating label {
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
}
.star-rating svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.star-rating .star-filled {
    opacity: 0;
}
.star-rating input:checked ~ label .star-filled {
    opacity: 1;
}
.star-rating input:checked ~ label .star-outline {
    opacity: 0;
}

/* --- Form Text Inputs --- */
.form-field-wrapper {
    padding-top: 16px;
}
.text-input {
    width: 100%;
    border: 1px solid rgb(118, 118, 118, 0.8);
    border-radius: 4px;
    padding: 16px;
    font-family: "Roboto", Arial, sans-serif;
		font-size: 1rem;
    line-height: 1.5rem;
		letter-spacing: .00625em;
    font-weight: 400;
		color: rgb(103, 107, 110);
		resize: none;
    box-sizing: border-box; /* Crucial for correct sizing */
}

.text-input:focus {
    outline: 2px solid #1a73e8;
    border-color: transparent;
}
.text-input::placeholder {
	font-family: "Roboto", Arial, sans-serif;
    color: rgb(122, 124, 127);
		font-weight: 400;
		font-size: 1rem;
    line-height: 1.5rem;
		letter-spacing: .2px;
}

/* --- Action Buttons --- */
.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding: 100px 0 4px;
}
.google-button {
		font-family: "Google Sans", "Roboto", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid transparent;
    height: 36px;
    padding: 0 24px;
    cursor: pointer;
    transition: background-color .2s, box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.text-button {
    background-color: transparent;
    color: #1a73e8;
    border-color: rgb(218, 220, 224);
}
.text-button:hover {
    background-color: #f5f8ff;
}
.filled-button {
    background-color: #1a73e8 !important;
    color: #fff;
}
.filled-button:hover {
    background-color: #174ea6 !important;
}
.filled-button:disabled {
    background-color: #f1f3f4 !important;
    color: #bdc1c6;
    cursor: default;
}
.filled-button:disabled:hover {
    box-shadow: none;
    background-color: #f1f3f4 !important;
}

/* --- Toast Notification (No Changes Needed) --- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #323232;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 2000;
    transition: bottom 0.5s ease;
}
.toast.show {
    bottom: 30px;
}

/* ADD THIS MEDIA QUERY AT THE END of your <style> block */

	@media (max-width: 768px) {
    .reviews-widget-container {
        padding: 20px 0;
    }

    /* 1. Stack the header content vertically */
    .widget-header {
        flex-direction: column;
        align-items: center;
        gap: 24px; /* Space between the review info and the button */
        padding: 0 20px;
				margin-bottom: 36px !important;
    }

    /* 2. Stack the rating number (4.7) on top of the stars/text */
    .header-info {
        flex-direction: column;
        align-items: center;
        gap: 4px; /* Space between rating number and stars */
    }

    /* 3. Center-align the stars and the "reviews on" text */
    .rating-details {
        align-items: center;
    }
    
    .rating-value {
        font-size: 44px; /* Slightly smaller for mobile */
    }
    
    .reviews-count {
        font-size: 13px; /* Adjust font size for mobile */
    }

    /* 4. Restyle the button to be smaller for mobile */
    .review-us-button {
        padding: 10px 22px; /* Reduced padding */
        font-size: 14px;   /* Smaller font */
        height: auto;
        line-height: 1.5;
        /* Remove desktop width constraints */
        width: auto;
        max-width: none; 
    }

    /* Adjust swiper padding for smaller screens */
    .swiper {
        padding: 0 40px 40px;
    }

}

/* CSS from snippet stylesheet tags */
/* General Body Styles */
	@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@200;300;400;500&family=Roboto:wght@200;300;400;500&family=Arial:wght@200;300;400;500&display=swap');

    /* Main Widget Container */
    .reviews-widget-container {
        font-family: "Google Sans", "Roboto", Arial, sans-serif;
        box-sizing: border-box;
        width: 100%;
        max-width: 1280px; /* This can be adjusted by the 'Full width' setting */
        padding: 0 10px !important;
        margin: 0 !important;
        background-color: transparent;
    }

    /* Header Section */
    .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            margin-bottom: 15px;
    }

    .header-info {
            display: flex;
            align-items: center;
            gap: 16px;
    }
    
    .rating-value {
            font-size: 48px;
            font-weight: bold;
            color: #121212;
    }

    .rating-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin: 0 !important;
    }
    
    .stars {
            display: flex;
    }

    .stars svg {
            width: 19px;
            height: 19px;
    }
    
    .reviews-count {
        margin: 0 !important;
        font-size: 13px;
        line-height: 1.2;
        color: rgb(17, 17, 17);
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .google-logo {
            width: 60px;
            height: auto;
    }

    /* Swiper Carousel Styles */
    .swiper {
        width: 100%;
        /* padding: 0 20px; Base padding for mobile */
        box-sizing: border-box;
        margin-bottom: 20px;
        /* transition: height 0.3s ease;  */
    }

    .prose *+:is(p,div,ul,ol) {
        margin-block-start: 0 !important;
    }

    .swiper-slide {
            width: 300px;
            padding: 24px;
            border: 1px solid rgba(17, 17, 17, 0.1); /* Correct border */
            border-radius: 24px;
            box-sizing: border-box;
            height: auto;
            display: flex;
            flex-direction: column;
            transition: min-height 0.4s ease-in-out;
            background-color: #ffffff; /* Correct background */
    }

    .swiper-container {
    transform: none;
    }

		.swiper-wrapper {
    align-items: flex-start; /* ADD THIS RULE */
    margin-bottom: 10px !important;
    /* transition: height 0.4s ease-out; */
}
    
    /* Card Header (Author Info) */
    .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
    }

    .card-header .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            flex-shrink: 0;
    }
    
    .author-info {
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Prevent text overflow */
    }
    
    .author-name {
            font-weight: 600;
            color: #121212;
            font-size: 15px;
            line-height: 18px;
    }

    .review-date {
            font-size: 12px;
            line-height: 14px;
            margin-top: 4px;
            color: rgba(17, 17, 17, 0.5);
    }
    
    /* Card Body (Stars & Text) */
    .card-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 6px;
    }

    .card-stars svg {
            width: 18px;
            height: 18px;
    }
    
    .review-text {
            font-size: 16px;
            line-height: 1.5;
            color: #1A1A1A;
            flex-grow: 1;
    }
    
    /* AI Summary Card Specific Styles */
    .ai-summary-card .author-name {
             font-weight: 600;
             background-image: linear-gradient(90deg, #8D38FF, #197BFF);
             color: transparent;
             -webkit-background-clip: text;
             background-clip: text;
    }
    
    .ai-summary-list {
            list-style: none;
            padding: 0;
            margin: 0;
            /* FIXED: Added transition for smooth height animation */
            transition: height 0.4s ease-in-out;
    }
    
    .ai-summary-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.4;
    }
    
    .ai-summary-list svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            fill: #333; /* Correct checkmark color */
    }
    
    /* Swiper Navigation and Pagination */
    .swiper-button-next, .swiper-button-prev {
    /* Override Swiper's default positioning and remove the default icon */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    margin-top: -16px; /* Adjust vertical centering */
    background: none;
    --swiper-navigation-size: 32px; /* Set size for tap area */
}
.swiper-button-next::after, .swiper-button-prev::after {
    display: none; /* Hide the default Swiper '::after' arrow */
}

/* Custom container from your provided HTML/CSS */
.arrow-control-container {
    position: relative;
    display: flex; /* Use flexbox to center the SVG */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(17, 17, 17, 0.7);
    box-shadow: none;
    transition: background-color 0.3s ease;
}
.arrow-control-container svg {
    width: 16px !important;
    height: 16px !important;
    fill: #ffffff !important;
}

/* Positioning */
.swiper-button-prev {
	width: 32px !important;
	height: 32px !important;
	left: 4px !important;
}
.swiper-button-next {
	width: 32px !important;
	height: 32px !important;
	right: 4px !important;
}

/* Hide arrows when they are disabled by Swiper */
.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}
    
    .swiper-pagination {
        position: relative !important;
		bottom: auto;
    }
    
    .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #d8d8d8; /* Light gray for inactive bullets */
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #3c4043 !important; /* Dark gray/black for the active bullet */
}

/* When using dynamicBullets, Swiper adds this class to the main active bullet.
   We can make it slightly larger for emphasis, just like in the example. */
.swiper-pagination-bullet-active-main {
    transform: scale(1.2);
}

    .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background-color: #333;
            animation: blink 0.7s infinite;
    }

    @keyframes blink {
            50% { opacity: 0; }
    }

			/* --- NEW STYLES --- */
			.avatar-container {
					position: relative;
					flex-shrink: 0;
			}

			.google-overlay-icon {
					position: absolute;
					bottom: -2px;
					right: -4px;
					width: 26px;
					height: 26px;
					z-index: 1;
			}

			.verified-badge {
					width: 14px;
					height: 14px;
					flex-shrink: 0;
			}

			/* ADD THESE NEW GOOGLE-STYLED CSS RULES AT THE END OF YOUR <style> BLOCK */

/* --- Dialog Overlay and Content --- */
/* ADD THESE NEW GOOGLE-STYLED CSS RULES AT THE END OF YOUR <style> BLOCK */

/* --- Google Fonts Import --- */

/* --- Dialog Styles --- */

.user-info { display: flex; align-items: center; gap: 16px; }
.user-avatar { border: 1px solid rgba(17, 17, 17, 0.1); width: 40px; height: 40px; border-radius: 50%; }
.user-details { display: flex; flex-direction: column; }

.user-name {
	font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1f1f1f;
}

.posting-publicly {
    font-size: 14px;
    color: #5e5e5e;
    display: flex;
    align-items: center;
		line-height: 0;
		margin-top: -4px;
		gap: 4px;
	}
.info-icon {
    fill: #5e5e5e;
    width: 16px;
    height: 16px;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: #5f6368;
    cursor: pointer;
    line-height: 1;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}
.star-rating input { display: none; }
.star-rating label {
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
}
.star-rating svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.star-rating .star-filled {
    opacity: 0;
}
.star-rating input:checked ~ label .star-filled {
    opacity: 1;
}
.star-rating input:checked ~ label .star-outline {
    opacity: 0;
}

/* --- Form Text Inputs --- */
.form-field-wrapper {
    padding-top: 16px;
}
.text-input {
    width: 100%;
    border: 1px solid rgb(118, 118, 118, 0.8);
    border-radius: 4px;
    padding: 16px;
    font-family: "Roboto", Arial, sans-serif;
		font-size: 1rem;
    line-height: 1.5rem;
		letter-spacing: .00625em;
    font-weight: 400;
		color: rgb(103, 107, 110);
		resize: none;
    box-sizing: border-box; /* Crucial for correct sizing */
}

.text-input:focus {
    outline: 2px solid #1a73e8;
    border-color: transparent;
}
.text-input::placeholder {
	font-family: "Roboto", Arial, sans-serif;
    color: rgb(122, 124, 127);
		font-weight: 400;
		font-size: 1rem;
    line-height: 1.5rem;
		letter-spacing: .2px;
}

.google-button {
		font-family: "Google Sans", "Roboto", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid transparent;
    height: 36px;
    padding: 0 24px;
    cursor: pointer;
    transition: background-color .2s, box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.text-button {
    background-color: transparent;
    color: #1a73e8;
    border-color: rgb(218, 220, 224);
}
.text-button:hover {
    background-color: #f5f8ff;
}
.filled-button {
    background-color: #1a73e8;
    color: #fff;
}
.filled-button:hover {
    background-color: #174ea6;
}
.filled-button:disabled {
    background-color: #f1f3f4;
    color: #bdc1c6;
    cursor: default;
}
.filled-button:disabled:hover {
    box-shadow: none;
    background-color: #f1f3f4;
}

/* --- Toast Notification (No Changes Needed) --- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #323232;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 2000;
    transition: bottom 0.5s ease;
}
.toast.show {
    bottom: 30px;
}

/* ADD THIS MEDIA QUERY AT THE END of your <style> block */

	@media (max-width: 768px) {
    .reviews-widget-container {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 1. Stack the header content vertically */
    .widget-header {
        flex-direction: column;
        align-items: center;
        gap: 24px; /* Space between the review info and the button */
        padding: 0 20px;
        margin-bottom: 15px;
    }

    /* 2. Stack the rating number (4.7) on top of the stars/text */
    .header-info {
        flex-direction: column;
        align-items: center;
        gap: 0; /* Space between rating number and stars */
    }

    /* 3. Center-align the stars and the "reviews on" text */
    .rating-details {
        align-items: center;
    }
    
    .rating-value {
        font-size: 44px; /* Slightly smaller for mobile */
    }
    
    .reviews-count {
        font-size: 13px; /* Adjust font size for mobile */
    }

    /* Adjust swiper padding for smaller screens */
    .swiper {
        padding: 0 40px 40px;
    }

}