.elementor-kit-5{--e-global-color-primary:#D86483;--e-global-color-secondary:#54595F;--e-global-color-text:#A3386E;--e-global-color-accent:#61CE70;--e-global-color-8714318:#F9DBBD;--e-global-color-3293d8e:#AD406C;--e-global-color-9afdaf3:#D86483;--e-global-color-1d337db:#F9E3CB;--e-global-color-f0a4a4d:#FFFAF3;--e-global-color-f4e6a04:#38B5FE;--e-global-color-61b9973:#AD406C;--e-global-color-7991f03:#FFFFFF00;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#A3386E;font-family:"Roboto", Sans-serif;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 h1{color:#D86483;font-family:"Poppins", Sans-serif;}.elementor-kit-5 h2{color:#D86483;font-family:"Poppins", Sans-serif;}.elementor-kit-5 h3{color:#D86483;font-family:"Poppins", Sans-serif;}.elementor-kit-5 h4{color:#D86483;}.elementor-kit-5 h5{color:#D86483;}.elementor-kit-5 h6{color:#D86483;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.cky-revisit-bottom-left {display: :none; }


.glsr-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* --- Responsive layout for mobile --- */
@media (max-width: 768px) {
  .glsr-reviews {
    grid-template-columns: 1fr; /* single column on smaller screens */
    gap:15px!important;
  }
}

.review-class .glsr-review-rating {
    position: relative; /* ensures pseudo-element positions correctly */
    display: flex;
    align-items: flex-start; /* align to top instead of center */
}



.review-class .glsr-review-rating::before {
    content: '';
    display: inline-block;
    width: 25px;  /* size of your quote SVG */
    height: 25px;
    margin-right: 2px; /* space between quote and stars */
    background-image: url('https://vidalina.ch/wp-content/uploads/2025/10/download.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
   
}


.review-class .glsr-review {
  background-color: #FFFFFF; /* optional: makes each review card stand out */
  padding: 26px;
  padding-top: 30px;
  border-radius: 15px;
  box-shadow: 0 0 8px -5px rgba(0, 0, 0, 0.5); /* default shadow */
  transition: box-shadow 0.3s ease; /* smooth hover transition */
  
}
/* Hover effect */
.review-class .glsr-review:hover {
  box-shadow: 0 0 8px -3px rgba(0, 0, 0, 0.5); /* slightly larger/stronger shadow */
}

/* Base star styling */
.review-class .glsr-star {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 17px;
  height: 17px;
  display: inline-block;
  border-radius: 4px;
  margin-right: 4px;
  transition: opacity 0.2s ease;
}

/* Full stars (pink) */
.review-class .glsr-star.glsr-star-full {
  background-image: url('https://vidalina.ch/wp-content/uploads/2025/10/starsvg.svg') !important;
  opacity: 1;
}

/* Half stars (slightly faded) */
.review-class .glsr-star.glsr-star-half {
  background-image: url('https://vidalina.ch/wp-content/uploads/2025/10/starsvg.svg') !important;
  opacity: 0.6;
}

/* Empty stars (very light/faded) */
.review-class .glsr-star:not(.glsr-star-full):not(.glsr-star-half) {
  background-image: url('https://vidalina.ch/wp-content/uploads/2025/10/starsvg.svg') !important;
  opacity: 0.2;
}

/* Optional: remove extra margin on last star */
.review-class .glsr-star:last-child {
  margin-right: 0;
}

.review-class .glsr-review-author .glsr-tag-value {
    text-align: left;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #D86483;

}

.review-class .glsr-review-content .glsr-tag-value {
    margin: 0 0 calc(var(--kit-widget-spacing, 0px) + 0px) 0;
    padding: 0;
    text-align: left;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #480F2B;
    font-style: italic; 
}

/* Divider under the review text */
.review-class .glsr-review-content .glsr-tag-value::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px; /* thickness of divider */
    background-color: #EEEDED; /* grey color */
    margin-top: 15px; 
    margin-bottom: 3px/* spacing between text and divider */
}


/* Make all review boxes the same height within the grid */
.glsr-reviews {
  align-items: stretch; /* ensures all boxes in a row are equal height */
}

/* Inside each review box: use flex column layout */
.review-class .glsr-review {
  display: flex;
  flex-direction: column;
  
  justify-content: space-between; /* distributes top-to-bottom nicely */
  height: 100%; /* fills grid cell */
}

/* Optional: ensure consistent spacing between elements */
.review-class .glsr-review-rating {
  
  display: flex;
  align-items: flex-start; /* stars stay aligned at the top */
  justify-content: flex-start; /* ensure stars remain left-aligned */
  
}

.review-class .glsr-review-content .glsr-tag-value {
  flex-grow: 1; /* expands to fill space evenly between rating and author */
  margin-bottom: 15px;
}

.review-class .glsr-review-author {
  margin-top: auto; /* pushes author section to the bottom */
}/* End custom CSS */