body {
/*  background: #f9f9f9;*/
  font-family: Roboto;
  font-size: 18;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 32px;
  text-align: left;
  text-transform: none;
  color: #292929;
}

/* Logo */
.site-logo img {
  max-height: 50px;
  width: auto;
}

/* Override Drupal default logo size */
.header-inner img {
  max-height: 100px;
  object-fit: contain;
  width: 100px !important;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner > div {
  display: flex;
  align-items: center;
  width: 100%;
}
#block-original-tour-main-menu{
  margin-left: 20px;
}

/* Navigation */
.header-inner nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}


.header-inner nav ul li a {
  text-decoration: none;
  transition: 0.4s;
  border-radius: 50px;
  font-size: 15px;
  color: #444;
  letter-spacing: 0.5px;
  padding: 12px 10px;
}

.header-inner nav ul li a:hover {
  background: rgba(232,94,104, 0.06);
  color: #ff2da6;
}

/* Sign in button */
.header-inner .sign-in-btn {
  background: #ff2da6;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
}

.header-inner .sign-in-btn:hover {
  background: #ff2da6;
}


/* General */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Layout */
.layout-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
}

/* Main Content */
.main-content {
  flex: 1;
/*  padding: 30px;*/
/*  width: 100%;*/
}
#overview ul{
  padding-left: 15px;
}
/* Sidebar */
.sidebar {
  width: 320px;
  flex-shrink: 0;
}

/* Booking Form Wrapper */
#block-original-tour-webform {
  padding: 25px;
  background: #f9f9f9;
}

/* All inputs */
#block-original-tour-webform input[type="date"],
#block-original-tour-webform input[type="text"],
#block-original-tour-webform input[type="tel"],
#block-original-tour-webform input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border 0.2s;
}

/* Select dropdowns */
#block-original-tour-webform select.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border 0.2s;
}

/* Focus state */
#block-original-tour-webform input:focus,
#block-original-tour-webform select:focus {
  border-color: #ff2da6;
}

/* Labels */
#block-original-tour-webform label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  margin-top: 15px;
}

/* Form item spacing */
#block-original-tour-webform .form-item {
  margin-bottom: 5px;
}

#block-original-tour-webform input[type="submit"].form-submit:hover {
  background: #ff2da6;
}

/* Form actions */
#block-original-tour-webform .form-actions {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .layout-container {
    flex-direction: column;
  }

  .sidebar {
    order: -1; 
    width: 100%; 
  }

  .main-content {
    order: 0;
    width: 100%;
  }
}

/* Hide all booking form labels */
#block-original-tour-webform label {
  display: none !important;
}

/* Style select to look like reference */
#block-original-tour-webform select.form-select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #888;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* Style date input */
#block-original-tour-webform input[type="date"] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #888;
  background: #fff;
  outline: none;
}

/* Form item spacing */
#block-original-tour-webform .form-item {
  margin-bottom: 12px;
}

/* Book Now button */
#block-original-tour-webform input[type="submit"].form-submit {
  width: 100%;
  padding: 16px;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  background-color: #ff2da6;
}

/* Hide Previous/Next text */
.slick-prev,
.slick-next {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  z-index: 999;
  border: 2px solid rgba(255,255,255,0.6) !important;
  transition: background 0.2s;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(255,255,255,0.6) !important;
}

/* Arrow icons */
.slick-prev:before {
/*  content: '←' !important;*/
  font-size: 20px;
  color: #fff !important;
  opacity: 1 !important;
}

.slick-next:before {
/*  content: '→' !important;*/
  font-size: 20px;
  color: #fff !important;
  opacity: 1 !important;
}

/* Position arrows */
.slick-prev {
  left: 15px !important;
}

.slick-next {
  right: 15px !important;
}

/* Hero slider full width */
.hero-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-section .slick-slider {
  margin: 0;
}

.hero-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}


/* Fix Slick slider buttons */
.slick-slider {
  position: relative !important;
}

.slick-prev,
.slick-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 60px !important;
  height: 60px !important;
  background: rgba(0,0,0,0.4) !important;
  border-radius: 50% !important;
  z-index: 999 !important;
  border: 1px solid !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
}

.slick-prev {
  left: 80px !important;
  color: transparent;
}

.slick-next {
  right: 80px !important;
  color: transparent;
}

/* Hide Prev Next text */
.slick-prev span,
.slick-next span,
.slick-prev .slick-prev-icon,
.slick-next .slick-next-icon {
  display: none !important;
}

/* Arrow icons using CSS */
.slick-prev:before {
  content: '\e605' !important;
  font-family: 'simple-line-icons' !important;
  font-size: 18px !important;
  color: #fff !important;
  opacity: 1 !important;
  margin-left: 50px;
}

.slick-next:before {
  content: '\e606' !important;
  font-family: 'simple-line-icons' !important;
  font-size: 18px !important;
  color: #fff !important;
  opacity: 1 !important;
  margin-left: 30px;
}

/* Hover red */
.slick-prev:hover,
.slick-next:hover {
  background: #ff2da6 !important;
  border-color: #ff2da6 !important;
}

/* Hide the text Prev Next below slider */
.slick-list ~ a,
.slick-slider > a {
  display: none !important;
}
/* Hide arrows by default */
.hero-section .slick-prev,
.hero-section .slick-next {
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

/* Show arrows on slider hover */
.hero-section:hover .slick-prev,
.hero-section:hover .slick-next {
  opacity: 1 !important;
}
.messages__wrapper{
  display: none;
}

/* Tags */
.listing-titlebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* Start Rating */
.overall-rating-heading{
  padding-top: 20px;
}
.overall-rating{
  background: #fff;
  border: 1px solid #eee;
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
}

.listing-tag {
  background: #fff0f1;
  color: #ff2da6;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.listing-titlebar-tags a {
  text-decoration: none;
}

.listing-titlebar-tags a:hover .listing-tag {
  background: #ff2da6;
  color: #fff;
}

/* Comma separators - hide them */
.listing-titlebar-tags > span.listing-tag {
  display: none;
}

/* Title */
.listing-titlebar-title h1 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 10px 0;
}

/* Address */
.listing-address {
  color: #666;
  text-decoration: none;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing-address:before {
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 17px;
  color: #666;
}

/* Get Directions Button */
.get-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.2s;
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 20px;
}

.get-directions-btn:hover {
  background: #ff2da6;
  color: #fff;
  border-color: #ff2da6;
}

.get-directions-btn i {
  color: #ff2da6;
}

.get-directions-btn:hover i {
  color: #fff;
}
.location-map-wrapper{
  position: relative;
}


/* Footer */
.site-footer {
  padding: 50px 0 30px;
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

/* Footer headings */
.footer-col h4 {
  color: #333;
  font-size: 21px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Footer links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
  line-height: 21px;
  color: #707070;
}

.footer-col ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  color: #ccc;
}

.footer-col ul li a:hover {
  color: #ff2da6;
}

/* Footer logo column */
.footer-logo-col {
  text-align: center;
}

.footer-logo {
  max-width: 100%;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Tour Tabs Navigation */
.tour-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tour-tabs-nav.is-sticky {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 30px;
}

.tour-tab {
  padding: 15px 20px;
  text-decoration: none;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tour-tab:hover,
.tour-tab.active {
  color: #ff2da6;
  border-bottom: 2px solid #ff2da6;
}

/* Tour Sections */
.tour-section {
  padding: 20px 0;
  scroll-margin-top: 120px;
}

#block-original-tour-webform .js-form-item-booking-date label{
  display: block !important;
  font-size: 20px;
  font-weight: 900;
  color: #222;
  padding: 0 0 20px;
  margin: 0 0 25px 0 !important;
  border-bottom: 1px solid #e8e8e8;
}
#block-original-tour-webform .js-form-item-booking-date label::before{
  content: "\f274";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
blockquote{
  position: relative;
  display: inline-block;
  background: #fafafa;
  padding: 25px 25px 25px 67px;
  border-radius: 4px;
  color: #888;
  text-align: left;
  transition-duration: 0.3s;
  border: none;
    border-left-width: medium;
    border-left-style: none;
    border-left-color: currentcolor;
  margin: 10px 0;
  border-left: 4px solid #e0e0e0;
}
blockquote::before{
  display: block;
  position: absolute;
  top: 24px;
  left: 27px;
  content: "\f10d";
  font-size: 22px;
  color: #ccc;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background-color: #ff2da6;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  height: 46px;
  width: 45px;
}
#scrollTopBtn a{
  color: #fff;
}
#scrollTopBtn a::before{
  position: relative;
  transform: translateY(-55%);
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  font-size: 21px;
  display: inline-block;
  top: 50%;
}


/*Cart Page css*/

/* ===== Table Base ===== */
#block-original-tour-content .cart-form .cols-5 {
  width: 100%;
  border-collapse: collapse;
/*  margin: 20px 0;*/
  font-family: Arial, sans-serif;
}

/* Header */
#block-original-tour-content .cart-form .cols-5 thead {
  background: #111;
  color: #fff;
}

#block-original-tour-content .cart-form .cols-5 th {
  text-align: left;
  padding: 12px 15px;
  font-size: 14px;
  text-transform: uppercase;
}

/* Body */
#block-original-tour-content .cart-form .cols-5 td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Row hover */
#block-original-tour-content .cart-form .cols-5 tbody tr:hover {
  background: #f9f9f9;
}

/* ===== Inputs ===== */
#block-original-tour-content .cart-form .cols-5 input[type="number"] {
  width: 60px;
  padding: 5px;
  text-align: center;
}

/* Remove button */
#block-original-tour-content .cart-form .cols-5 .delete-order-item {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
}

#block-original-tour-content .cart-form .cols-5 .delete-order-item:hover {
  background: #c0392b;
}

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

  #block-original-tour-content .cart-form .cols-5 thead {
    display: none;
  }

  #block-original-tour-content .cart-form .cols-5,
  #block-original-tour-content .cart-form .cols-5 tbody,
  #block-original-tour-content .cart-form .cols-5 tr,
  #block-original-tour-content .cart-form .cols-5 td {
    display: block;
    width: 100%;
  }

  #block-original-tour-content .cart-form .cols-5 tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 6px;
    background: #fff;
  }

  #block-original-tour-content .cart-form .cols-5 td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
  }

  #block-original-tour-content .cart-form .cols-5 td:last-child {
    border-bottom: none;
  }

  /* Better labels */
  #block-original-tour-content .cart-form .cols-5 td:nth-child(1)::before { content: "Item"; }
  #block-original-tour-content .cart-form .cols-5 td:nth-child(2)::before { content: "Price"; }
  #block-original-tour-content .cart-form .cols-5 td:nth-child(3)::before { content: "Quantity"; }
  #block-original-tour-content .cart-form .cols-5 td:nth-child(4)::before { content: "Remove"; }
  #block-original-tour-content .cart-form .cols-5 td:nth-child(5)::before { content: "Total"; }

  #block-original-tour-content .cart-form .cols-5 td::before {
    font-weight: bold;
    color: #555;
  }
}
#block-original-tour-content .cart-form #edit-actions input{
  display: none;
}
#block-original-tour-cartpage{
  background-image: url('/sites/default/files/2026-04/slide3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  color: #fff;
}
#block-original-tour-cartpage .numerical-rating.high{
  background-color: #64bc36;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  line-height: 26px;
  height: 26px;
  width: 44px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  letter-spacing: -0.5px;
}

/*General css for form in all site*/

/* Global Form Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border 0.2s;
  -webkit-appearance: none;
  appearance: none;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Focus state */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: #ff2da6;
  box-shadow: 0 0 0 3px rgba(255,71,87,0.1);
}

/* Labels */
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

/* Form items spacing */
.form-item {
  margin-bottom: 15px;
}

/* Textarea */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit buttons */
input[type="submit"],
button[type="submit"],
.button,
.btn {
  padding: 12px 30px;
  background: #ff2da6;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
/*  text-transform: uppercase;*/
  letter-spacing: 0.5px;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.button:hover,
.btn:hover {
  background: #ff2da6;
}

/* Required field asterisk */
.form-required:after {
  content: ' *';
  color: #ff2da6;
}

/* Error messages */
.form-item--error input,
.form-item--error select,
.form-item--error textarea {
  border-color: #ff2da6;
}

.form-item--error-message {
  color: #ff2da6;
  font-size: 12px;
  margin-top: 5px;
}
img{
  width: 100%;
}

/*Contact information block*/

.contact-block {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.contact-block h3 {
  margin-bottom: 10px;
}

.contact-block p {
  margin: 8px 0;
}

.contact-block i {
  margin-right: 8px;
  color: #333;
}

/*Social Media Connect*/
.social-media-connect {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 20px;
}
.social-media-connect h3 {
  margin-bottom: 15px;
  color: #333;
}
.social-media-connect svg{
  width: 40px;
  height: 40px;
}
.social-media-connect a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 10px;
  transition: opacity 0.2s ease;
}

.social-media-connect a:hover { opacity: 0.75; }

.social-media-connect a:nth-child(2) svg { fill: #25D366; } /* WhatsApp */
.social-media-connect a:nth-child(3) svg { fill: #E1306C; } /* Instagram */
.social-media-connect a:nth-child(4) svg { fill: #ED1C40; } /* Meetup */

.meetup-icon span{
  background-image: url(/sites/default/files/2026-04/Meetup-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  padding: 30px;
  vertical-align: middle;
}
.social-media-connect p{
  display: inline;
}

/* ===== CARD ===== */
.end-user-review-section header{
  padding-bottom: 20px;
}
.end-user-review-section .views-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

/* ===== AVATAR + NAME ROW ===== */
.end-user-review-section .views-field-uid {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #222;
  padding-top: 40px;
}

/* Avatar circle */
.end-user-review-section .views-field-uid::before {
  content: '';
  display: inline-block;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #bbb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E") center/65% no-repeat;
}

/* Remove link styling from username */
.end-user-review-section .views-field-uid a,
.end-user-review-section .views-field-uid span {
  color: #222;
  text-decoration: none;
  font-weight: 700;
}

/* ===== DATE — small grey under name ===== */
.end-user-review-section .views-field-created {
  width: 100%;
  font-size: 12px;
  color: #aaa;
  margin-top: -25px;
  padding-left: 64px; /* align with name (avatar width + gap) */
}

/* ===== REVIEW TEXT ===== */
.end-user-review-section .views-field-body {
  width: 100%;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.end-user-review-section .views-field-body p {
  margin: 0;
}

/* ===== RATINGS 2x2 GRID ===== */

/* Rating labels */
.end-user-review-section .views-field-field-tour, .end-user-review-section .views-field-field-rating-service, .end-user-review-section .views-field-field-value-for-money{
  width: calc(30% - 10px);
}
.end-user-review-section .views-field-field-rating-service::before    { content: 'Guide'; }
.end-user-review-section .views-field-field-value-for-money::before    { content: 'Value for Money'; }
.end-user-review-section .views-field-field-tour::before    { content: 'Tour'; }
.end-user-review-section .views-field-field-rating-service::before,.end-user-review-section .views-field-field-value-for-money::before, .end-user-review-section .views-field-field-tour::before {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: #222;
  margin-bottom: 4px;
}

/* Stars size */
.end-user-review-section .fivestar-widget-static {
  display: flex;
  gap: 4px;
}

.end-user-review-section .star .on {
  font-size: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #f5a623;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.end-user-review-section .star .off {
  font-size: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #ddd;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

/* Hide fivestar summary text */
.end-user-review-section .fivestar-summary,
.end-user-review-section input[type="submit"],
.end-user-review-section input[name="form_build_id"],
.end-user-review-section input[name="form_token"],
.end-user-review-section input[name="form_id"] {
  display: none !important;
}

/* ===== HELPFUL BUTTON ===== */
.end-user-review-section .views-field-node-rate-widget-field {
  width: 100%;
  margin-top: 8px;
  padding-top: 12px;
}

.end-user-review-section .views-label-node-rate-widget-field {
  display: none;
}

.end-user-review-section .rating-table,
.end-user-review-section .rating-table tbody,
.end-user-review-section .rating-table tr,
.end-user-review-section .rating-table td {
  border: none !important;
  background: none !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hide "X votes with average..." text */
.end-user-review-section .vote-result {
  display: none !important;
}

.end-user-review-section .thumbsup-rating-label {
  border-radius: 25px;
  font-size: 13px;
  background: #fff;
}

.end-user-review-section .thumbsup-rating-label::before {
  content: '👍';
  font-size: 15px;
}

.end-user-review-section .rating-input {
  display: none !important;
}

.end-user-review-section .rating-option-result {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* ===== ADD REVIEW BUTTON ===== */
.end-user-review-section .add-review {
  margin-bottom: 20px;
}

.end-user-review-section .add-review a {
  display: inline-block;
  padding: 10px 22px;
  background: #ff2da6;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.end-user-review-section .add-review a:hover {
  background: #ff2da6;
}

/* Pager wrapper */
.end-user-review-section nav ul{
  list-style: none;
}
.end-user-review-section nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

/* All pager items */
.end-user-review-section nav li a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
}

/* Hover */
.end-user-review-section nav li a:hover {
  background: #ff2da6;
  color: #fff !important;
  border-color: #ff2da6;
}
#node-review-form .form-type-vertical-tabs, #node-review-form  #edit-body-0-format, #node-review-form #edit-actions #edit-preview{
  display: none;
}
#edit-field-rating-service-wrapper{
  padding-bottom: 20px;
}
#node-review-form #edit-actions{
  text-align: center;
}
.imojis img{
  width: 20px;
  height: 20px;
}
strong{
  font-weight: bold;
}
@media (min-width: 320px) and (max-width: 550px) {
  .end-user-review-section .views-field-field-tour, .end-user-review-section .views-field-field-rating-service, .end-user-review-section .views-field-field-value-for-money{
      width: auto;
  }
  .tour-tab{
    padding: 15px 10px;
  }
}
