/* Unified WhatsApp chat button on event/tour single pages. */
.soves-event-book-card .soves-detail-whatsapp-button,
.soves-event-detail-sidebar .soves-detail-whatsapp-button {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 16px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.16s ease;
}

.soves-event-book-card .soves-detail-whatsapp-button:hover,
.soves-event-book-card .soves-detail-whatsapp-button:focus-visible,
.soves-event-detail-sidebar .soves-detail-whatsapp-button:hover,
.soves-event-detail-sidebar .soves-detail-whatsapp-button:focus-visible {
    background: #1da851;
    color: #ffffff;
    outline: 0;
}

.soves-event-book-card .soves-detail-whatsapp-button .soves-ms-icon,
.soves-event-detail-sidebar .soves-detail-whatsapp-button .soves-ms-icon {
    flex: 0 0 auto;
    font-size: 18px;
}

/* Event detail page. */
.soves-event-single {
    --soves-primary: #e24a3b;
    --soves-primary-dark: #be3429;
    --soves-text: #172033;
    --soves-muted: #667085;
    --soves-border: #e6eaf0;
    background: #ffffff;
    color: var(--soves-text);
}

.soves-event-detail-hero {
    min-height: clamp(280px, 38vw, 430px);
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(54px, 8vw, 96px) 20px;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.soves-event-detail-hero .soves-container {
    width: min(100%, 1120px);
    display: grid;
    justify-items: center;
    gap: 12px;
}

.soves-event-detail-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.soves-event-detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: min(920px, 100%);
    color: #ffffff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(14px, 1.55vw, 20px);
    line-height: 1.45;
    font-weight: 700;
}

.soves-event-detail-breadcrumb a,
.soves-event-detail-breadcrumb strong {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.16s ease;
}

.soves-event-detail-breadcrumb a:hover,
.soves-event-detail-breadcrumb a:focus-visible {
    color: var(--soves-primary);
    outline: 0;
}

.soves-event-detail-breadcrumb svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.soves-event-detail-breadcrumb a + a::before,
.soves-event-detail-breadcrumb strong::before {
    content: "/";
    margin-right: 3px;
    color: rgba(255, 255, 255, 0.65);
}

.soves-event-detail-wrap {
    padding: 34px 0 56px;
}

.soves-event-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: start;
}

.soves-event-detail-main {
    display: grid;
    gap: 18px;
}

.soves-event-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.soves-event-detail-head,
.soves-event-single .soves-detail-section,
.soves-event-single .soves-detail-side-card,
.soves-event-side-card {
    border: 1px solid #e6edf4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.soves-event-detail-head {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.soves-event-detail-head h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.soves-event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: #4e5561;
    font-size: 13px;
}

.soves-event-detail-meta span,
.soves-event-detail-meta a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.soves-event-detail-meta i {
    color: var(--soves-primary);
    font-size: 17px;
}

.soves-event-detail-meta .soves-detail-meta-link {
    position: relative;
    color: #4e5561;
    text-decoration: none;
    transition: color 0.16s ease;
}

.soves-event-detail-meta .soves-detail-meta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.18s ease;
}

.soves-event-detail-meta .soves-detail-meta-link:hover,
.soves-event-detail-meta .soves-detail-meta-link:focus-visible {
    color: var(--soves-primary);
    outline: 0;
}

.soves-event-detail-meta .soves-detail-meta-link:hover::after,
.soves-event-detail-meta .soves-detail-meta-link:focus-visible::after {
    width: 100%;
}

.soves-event-single .soves-detail-head-actions {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.soves-event-single .soves-detail-share-wrap {
    position: relative;
}

.soves-event-single .soves-detail-favorite,
.soves-event-single button.soves-detail-favorite[type="button"],
.soves-event-single .soves-detail-share,
.soves-event-single button.soves-detail-share[type="button"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    height: 34px !important;
    min-height: 34px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 !important;
    border: 1px solid #e6edf4 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--soves-primary) !important;
    padding: 8px 13px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.soves-event-single .soves-detail-share:hover,
.soves-event-single .soves-detail-share:focus-visible,
.soves-event-single .soves-detail-share.is-open,
.soves-event-single .soves-detail-favorite.is-favorite,
.soves-event-single button.soves-detail-favorite.is-favorite[type="button"],
.soves-event-single .soves-detail-favorite:hover,
.soves-event-single .soves-detail-favorite:focus-visible,
.soves-event-single button.soves-detail-favorite[type="button"]:hover,
.soves-event-single button.soves-detail-favorite[type="button"]:focus-visible,
.soves-event-single button.soves-detail-share[type="button"]:hover,
.soves-event-single button.soves-detail-share[type="button"]:focus-visible {
    border-color: var(--soves-primary) !important;
    background: var(--soves-primary) !important;
    color: #ffffff !important;
    outline: 0;
}

.soves-event-single .soves-detail-share-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    width: min(240px, calc(100vw - 32px));
    display: grid;
    gap: 6px;
    border: 1px solid #e4ebf1;
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.soves-event-single .soves-detail-share-panel[hidden] {
    display: none;
}

.soves-event-single .soves-detail-share-panel strong {
    margin: 0 0 4px;
    color: #172033;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600 !important;
}

.soves-event-single .soves-detail-share-panel a,
.soves-event-single .soves-detail-share-panel button {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    min-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: #4e5561 !important;
    padding: 8px 9px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    text-align: left !important;
    text-decoration: none !important;
    cursor: pointer;
}

.soves-event-single .soves-detail-share-panel a:hover,
.soves-event-single .soves-detail-share-panel a:focus-visible,
.soves-event-single .soves-detail-share-panel button:hover,
.soves-event-single .soves-detail-share-panel button:focus-visible {
    background: rgba(226, 74, 59, 0.08) !important;
    color: var(--soves-primary) !important;
    outline: 0;
}

.soves-event-single .soves-detail-share-panel i,
.soves-event-single .soves-detail-share-panel svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: inherit;
    fill: currentColor;
    font-size: 16px;
    text-align: center;
}

.soves-event-single .soves-detail-gallery {
    display: grid;
    gap: 14px;
}

.soves-event-single .soves-detail-gallery__main {
    position: relative;
    min-height: 430px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef3f9;
}

.soves-event-single .soves-detail-gallery__main img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.soves-event-single .soves-detail-gallery__main button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--soves-text);
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease;
}

.soves-event-single .soves-detail-gallery__main button:hover,
.soves-event-single .soves-detail-gallery__main button:focus-visible,
.soves-event-single .soves-detail-gallery__main button:active {
    background: var(--soves-primary);
    color: #ffffff;
    outline: 0;
}

.soves-event-single .soves-detail-gallery__main button:first-of-type {
    left: 14px;
}

.soves-event-single .soves-detail-gallery__main button:last-of-type {
    right: 14px;
}

.soves-event-single .soves-detail-gallery__main button.is-next i,
.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav.is-next i {
    transform: rotate(180deg);
}

.soves-event-single .soves-detail-gallery__main a {
    position: absolute;
    right: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--soves-text);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.soves-event-single .soves-detail-gallery__main a:hover,
.soves-event-single .soves-detail-gallery__main a:focus-visible {
    background: var(--soves-primary);
    color: #ffffff;
    outline: 0;
}

.soves-event-single .soves-detail-gallery__thumbs-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
}

.soves-event-single .soves-detail-gallery__thumbs-viewport::-webkit-scrollbar {
    display: none;
}

.soves-event-single .soves-detail-gallery__thumbs-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.soves-event-single .soves-detail-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 30px) / 4);
    gap: 10px;
}

.soves-event-single .soves-detail-gallery__thumbs button {
    height: 88px;
    border: 2px solid transparent;
    border-radius: 7px;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    cursor: default;
    user-select: none;
    touch-action: pan-x;
}

.soves-event-single .soves-detail-gallery__thumbs button.is-active {
    border-color: var(--soves-primary);
}

.soves-event-single .soves-detail-gallery__thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.soves-event-single .soves-detail-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(15, 23, 42, 0.86);
}

.soves-event-single .soves-detail-lightbox[hidden] {
    display: none;
}

.soves-event-single .soves-detail-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.soves-event-single .soves-detail-lightbox [data-lightbox-close],
.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--soves-text);
    cursor: pointer;
}

.soves-event-single .soves-detail-lightbox [data-lightbox-close] {
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    color: var(--soves-primary);
    font-size: 26px;
    line-height: 1;
}

.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav {
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav:hover,
.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav:focus-visible,
.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav:active {
    background: var(--soves-primary);
    color: #ffffff;
    outline: 0;
}

.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav.is-prev {
    left: 14px;
}

.soves-event-single .soves-detail-lightbox .soves-detail-lightbox__nav.is-next {
    right: 14px;
}

.soves-event-single .soves-detail-section,
.soves-event-side-card {
    padding: 18px;
}

.soves-event-accordion-section {
    border: 1px solid #dfe7ef;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.soves-event-section-head,
.soves-event-single button.soves-event-section-head[type="button"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100%;
    min-height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111827 !important;
    padding: 20px !important;
    box-shadow: none !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    text-align: left !important;
    cursor: pointer;
}

.soves-event-section-head:hover,
.soves-event-section-head:focus-visible,
.soves-event-single button.soves-event-section-head[type="button"]:hover,
.soves-event-single button.soves-event-section-head[type="button"]:focus-visible {
    color: var(--soves-primary) !important;
    outline: 0;
}

.soves-event-section-head i {
    flex: 0 0 auto;
    color: #4b5563;
    font-size: 17px;
}

.soves-event-section-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.soves-event-section-inner {
    border-top: 1px solid #dfe7ef;
    padding: 18px 20px 22px;
}

.soves-event-section-inner p {
    margin: 0;
    color: #4e5561;
    font-size: 15px;
    line-height: 1.6;
}

.soves-event-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 26px;
}

.soves-event-activity-grid div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.soves-event-activity-grid i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(226, 74, 59, 0.1);
    color: var(--soves-primary);
    font-size: 16px;
}

.soves-event-activity-grid span,
.soves-event-activity-grid strong {
    display: block;
}

.soves-event-activity-grid strong {
    margin-bottom: 4px;
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}

.soves-event-activity-grid span {
    color: #4e5561;
    font-size: 15px;
    line-height: 1.35;
}

.soves-event-single .soves-detail-section h3,
.soves-event-side-card h4 {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
}

.soves-event-single .soves-detail-section p {
    color: #4e5561;
    font-size: 14px;
    line-height: 1.65;
}

.soves-event-single .soves-detail-text-toggle {
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: var(--soves-primary);
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.soves-event-single .soves-detail-highlight-list,
.soves-event-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.soves-event-single .soves-detail-highlight-list span,
.soves-event-detail-facts span {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 3px 10px;
    border-radius: 8px;
    background: #f8fafc;
    padding: 14px;
    color: #4e5561;
    font-size: 14px;
}

.soves-event-single .soves-detail-highlight-list i,
.soves-event-detail-facts i {
    grid-row: span 2;
    color: var(--soves-primary);
    font-size: 20px;
}

.soves-event-single .soves-detail-highlight-list strong,
.soves-event-detail-facts strong {
    color: var(--soves-text);
    font-size: 13px;
}

.soves-event-timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    color: #4e5561;
    list-style: none;
}

.soves-event-timeline li {
    position: relative;
    display: flex;
    gap: 22px;
    padding-bottom: 26px;
}

.soves-event-timeline li:last-child {
    padding-bottom: 0;
}

.soves-event-timeline li::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    border-left: 2px dashed #dfe7ef;
}

.soves-event-timeline li:last-child::after {
    display: none;
}

.soves-event-timeline em {
    position: relative;
    z-index: 1;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--soves-primary);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-style: normal;
    font-weight: 600;
}

.soves-event-timeline div {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.soves-event-timeline strong {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--soves-text);
    font-size: 15px;
    line-height: 1.25;
}

.soves-event-timeline small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #eaf1ff;
    color: #2563eb;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.soves-event-timeline small i {
    font-size: 12px;
}

.soves-event-timeline span {
    color: #4e5561;
    font-size: 15px;
    line-height: 1.6;
}

.soves-event-single .soves-detail-faq {
    display: grid;
    gap: 16px;
}

.soves-event-single .soves-detail-faq article {
    border: 1px solid #e4ebf1;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.soves-event-single .soves-detail-faq button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: #ffffff;
    color: var(--soves-text);
    padding: 16px;
    font-weight: 600;
    text-align: left;
    transition: color 0.16s ease;
}

.soves-event-single .soves-detail-faq button span,
.soves-event-single .soves-detail-faq button i {
    transition: color 0.16s ease;
}

.soves-event-single .soves-detail-faq button i {
    font-size: 18px;
}

.soves-event-single .soves-detail-faq button:hover,
.soves-event-single .soves-detail-faq button:focus,
.soves-event-single .soves-detail-faq button:focus-visible,
.soves-event-single .soves-detail-faq button:active,
.soves-event-single .soves-detail-faq article.is-open button {
    background: #ffffff;
    color: var(--soves-text);
    box-shadow: none;
    outline: 0;
}

.soves-event-single .soves-detail-faq button:hover span,
.soves-event-single .soves-detail-faq button:hover i,
.soves-event-single .soves-detail-faq button:focus-visible span,
.soves-event-single .soves-detail-faq button:focus-visible i,
.soves-event-single .soves-detail-faq article.is-open button span,
.soves-event-single .soves-detail-faq article.is-open button i {
    color: var(--soves-primary);
}

.soves-event-single .soves-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.soves-event-single .soves-detail-faq .soves-accordion-inner {
    padding: 0 16px 16px;
    border-top: 1px solid #e4ebf1;
}

.soves-event-single .soves-detail-faq .soves-accordion-inner p {
    margin: 12px 0 0;
    color: #4e5561;
    font-size: 14px;
    line-height: 1.55;
}

.soves-event-single .soves-detail-map {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #9dd8e8, #f4e2b6);
}

.soves-event-single .soves-detail-map iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: 0;
    pointer-events: auto;
}

.soves-event-single .soves-detail-map__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.soves-event-single .soves-detail-map__button {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 2px;
    background: #ffffff;
    color: #0d63f3;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}

.soves-event-single .soves-detail-map__button:hover,
.soves-event-single .soves-detail-map__button:focus-visible {
    color: var(--soves-primary);
    outline: 0;
}

.soves-event-single .soves-detail-map-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 0;
    color: #4e5561;
    font-size: 15px;
    line-height: 1.45;
}

.soves-event-single .soves-detail-map-address i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #4e5561;
    font-size: 16px;
}

.soves-event-reviews {
    display: grid;
    gap: 16px;
}

.soves-event-single .soves-detail-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.soves-event-single .soves-review-write-button,
.soves-event-single button.soves-review-write-button[type="button"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 9px 15px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--soves-primary) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    cursor: pointer;
}

.soves-event-single .soves-review-write-button[disabled],
.soves-event-single button.soves-review-write-button[disabled][type="button"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.soves-event-single .soves-review-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.soves-event-single .soves-review-score-card,
.soves-event-single .soves-review-bars {
    border: 1px solid #e4ebf1;
    border-radius: 8px;
    background: #ffffff;
    padding: 24px;
}

.soves-event-single .soves-review-score-card {
    display: grid;
    place-items: center;
    text-align: center;
    background: #f7f9fb;
}

.soves-event-single .soves-review-score-card strong {
    color: var(--soves-text);
    font-size: 15px;
    font-weight: 600 !important;
}

.soves-event-single .soves-review-score-card div {
    margin-top: 14px;
    color: var(--soves-text);
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
}

.soves-event-single .soves-review-score-card span {
    display: flex;
    gap: 4px;
    margin-top: 10px;
    color: var(--soves-primary);
}

.soves-event-single .soves-review-score-card p,
.soves-event-single .soves-review-empty {
    margin: 12px 0 0;
    color: #4e5561;
    font-size: 13px;
}

.soves-event-single .soves-review-bars {
    display: grid;
    gap: 14px;
}

.soves-event-single .soves-review-bars div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 10px;
}

.soves-event-single .soves-review-bars span,
.soves-event-single .soves-review-bars strong {
    color: #4e5561;
    font-size: 13px;
    font-weight: 400 !important;
}

.soves-event-single .soves-review-bars em {
    height: 7px;
    border-radius: 999px;
    background: #e8edf2;
    overflow: hidden;
}

.soves-event-single .soves-review-bars em i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--soves-primary);
}

.soves-event-detail-sidebar {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.soves-event-book-card {
    display: grid;
    gap: 10px;
}

.soves-event-book-card > span {
    color: #4e5561;
    font-size: 13px;
}

.soves-event-book-card > strong {
    color: var(--soves-primary);
    font-size: 24px;
}

.soves-event-book-card > button {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--soves-primary);
    color: #ffffff;
    padding: 12px 16px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.16s ease;
}

.soves-event-book-card > button:hover,
.soves-event-book-card > button:focus-visible {
    background: var(--soves-primary-dark);
    color: #ffffff;
    outline: 0;
}

.soves-event-side-form,
.soves-event-review-form {
    display: grid;
    gap: 14px;
}

.soves-event-side-form label,
.soves-event-review-form label {
    display: grid;
    gap: 7px;
    color: #0f172a;
    font-weight: 700;
}

.soves-event-side-form input,
.soves-event-side-form textarea,
.soves-event-review-form select,
.soves-event-review-form textarea {
    width: 100%;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
    color: #0f172a;
    background: #fff;
}

.soves-event-side-form button,
.soves-event-review-form button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.soves-event-review-form[hidden] {
    display: none;
}

.soves-event-review-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.soves-event-review-list article {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.soves-event-review-list article strong,
.soves-event-review-list article span,
.soves-event-review-list article em {
    display: block;
}

.soves-event-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.soves-event-review-actions button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 800;
    cursor: pointer;
}

.soves-event-review-list article span {
    color: #ef4444;
    font-weight: 800;
    margin-top: 4px;
}

.soves-event-review-list article em {
    margin-top: 10px;
    padding-left: 12px;
    border-left: 3px solid #ef4444;
    color: #475569;
    font-style: normal;
}

.soves-event-provider {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: #f1f4f8;
    padding: 14px 16px;
}

.soves-event-provider img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
}

.soves-event-provider strong,
.soves-event-provider span {
    display: block;
}

.soves-event-provider span {
    margin-top: 4px;
    color: #4e5561;
    font-size: 13px;
}

.soves-event-provider-links {
    display: grid;
    margin-top: 16px;
    border: 1px solid #e4ebf1;
    border-radius: 8px;
    overflow: hidden;
}

.soves-event-provider-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #4e5561;
    text-decoration: none;
}

.soves-event-provider-links a + a {
    border-top: 1px solid #e4ebf1;
}

.soves-event-provider-links i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--soves-primary);
    color: #ffffff;
}

@media (min-width: 1440px) {
    .soves-event-detail-hero {
        min-height: 460px;
        background-position: center 44%;
    }
}

@media (max-width: 1080px) {
    .soves-event-detail-hero {
        min-height: clamp(260px, 42vw, 360px);
        padding: 60px 18px;
        background-position: center;
    }

    .soves-event-detail-layout {
        grid-template-columns: 1fr;
    }

    .soves-event-detail-sidebar {
        position: static;
    }

    .soves-event-activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .soves-event-detail-hero {
        min-height: 240px;
        align-items: flex-end;
        padding: 64px 16px 34px;
        background-position: center top;
    }

    .soves-event-detail-hero h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.08;
    }

    .soves-event-detail-breadcrumb {
        gap: 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    .soves-event-detail-breadcrumb a,
    .soves-event-detail-breadcrumb strong {
        max-width: 100%;
    }

    .soves-event-detail-head {
        flex-direction: column;
    }

    .soves-event-single .soves-detail-head-actions {
        align-self: flex-start;
    }

    .soves-event-section-head,
    .soves-event-single button.soves-event-section-head[type="button"] {
        min-height: 58px;
        padding: 18px !important;
        font-size: 18px !important;
    }

    .soves-event-section-inner {
        padding: 16px 18px 20px;
    }

    .soves-event-activity-grid,
    .soves-event-single .soves-review-summary-grid,
    .soves-event-single .soves-review-bars div {
        grid-template-columns: 1fr;
    }

    .soves-event-single .soves-detail-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .soves-event-single .soves-detail-gallery__main,
    .soves-event-single .soves-detail-gallery__main img {
        min-height: 260px;
        height: 260px;
    }

    .soves-event-single .soves-detail-gallery__thumbs {
        grid-auto-columns: calc((100% - 10px) / 2);
    }

    .soves-event-single .soves-detail-highlight-list,
    .soves-event-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .soves-event-detail-hero {
        min-height: 220px;
        padding: 58px 14px 28px;
    }

    .soves-event-detail-hero h1 {
        font-size: 30px;
    }

    .soves-event-detail-breadcrumb strong {
        max-width: 260px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}


/* Event single Material icon cleanup */

.soves-event-single .soves-ms-icon {
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: middle;
}

.soves-event-detail-head {
  padding: 22px 24px;
  border: 1px solid #e6edf4;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.soves-event-detail-meta span,
.soves-event-detail-meta a,
.soves-event-single .soves-detail-favorite,
.soves-event-single .soves-detail-share,
.soves-event-single .soves-detail-share-panel a,
.soves-event-single .soves-detail-share-panel button,
.soves-event-provider-links a,
.soves-detail-map-address {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.soves-event-detail-meta .soves-ms-icon,
.soves-detail-map-address .soves-ms-icon,
.soves-event-provider-links .soves-ms-icon {
  color: var(--soves-primary);
  font-size: 19px;
}

.soves-event-single .soves-detail-favorite .soves-ms-icon {
  font-size: 19px;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 20;
}

.soves-event-single .soves-detail-favorite.is-favorite .soves-ms-icon,
.soves-event-single .soves-detail-favorite[aria-pressed="true"] .soves-ms-icon {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 20;
}

.soves-event-single .soves-detail-gallery__main button .soves-ms-icon,
.soves-event-single .soves-detail-lightbox__nav .soves-ms-icon {
  font-size: 22px;
}

.soves-event-section-head .soves-ms-icon {
  color: #4b5563;
  font-size: 24px;
}

.soves-event-section-head:hover .soves-ms-icon,
.soves-event-section-head:focus-visible .soves-ms-icon {
  color: var(--soves-primary);
}

.soves-event-activity-grid .soves-ms-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 74, 59, 0.1);
  color: var(--soves-primary);
  font-size: 20px;
}

.soves-event-timeline small .soves-ms-icon {
  color: inherit;
  font-size: 15px;
}

.soves-detail-faq button [data-soves-accordion-icon] {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--soves-primary);
  font-size: 22px;
}

.soves-review-write-button .soves-ms-icon,
.soves-review-score-card .soves-ms-icon {
  font-size: 18px;
}