/* Shared sections used by both the homepage and city landing pages:
   About (WhyExhibitorlyUSP), Comparison (WhyExhibitorlyComparison),
   Our Process (OurProcessSection), Booth Options (BoothOptionsSection).
   Ported 1:1 from homepage.css/js (the tried-and-tested originals) with
   classes renamed hp_* -> shared_*; only content differs per page now. */

:root {
    --hp-dark: #0c2e16;
    --hp-lime: #cfff7f;
}

/* Clears the site-wide fixed "Get your 3 quotes now" tab (.quote_btn_left,
   defined in style.css, position:fixed; top:50%; left:0 — present on every
   page). Ported from homepage.css's equivalent rule, which used to target
   these sections directly before they moved into this shared file. */
.shared_about .container,
.shared_comparison .container,
.shared_process .container,
.shared_booth_options .container {
    padding: 0 30px;
}
@media (min-width: 768px) {
    .shared_about .container,
    .shared_comparison .container,
    .shared_process .container,
    .shared_booth_options .container {
        padding: 0 45px;
    }
}

/* ---------- About (WhyExhibitorlyUSP) ---------- */
.shared_about {
    padding: 60px 0 30px;
    background: #f9fafb;
}
.shared_about .container {
    max-width: 1280px;
    margin: 0 auto;
}
.shared_about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.shared_about-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-dark);
    text-align: left;
    margin-bottom: 20px;
}
.shared_about-text h2 {
    font-weight: 600;
    color: var(--hp-dark);
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 20px;
}
.shared_about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}
.shared_about-text ul {
    list-style: none;
    margin: 6px 0 14px;
    padding: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}
.shared_about-text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}
.shared_about-text ul li:last-child {
    margin-bottom: 0;
}
.shared_about-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--hp-dark);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
}
.shared_about-text a {
    color: var(--hp-dark);
    text-decoration: underline;
}
.shared_about-visual {
    position: relative;
    width: 100%;
}
.shared_about-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
}
.shared_about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.shared_about-slide.active {
    opacity: 1;
}
.shared_about-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.shared_about-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s, background 0.3s;
}
.shared_about-dots .dot.active {
    width: 20px;
    background: var(--hp-lime);
}
.shared_about-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    padding: 12px 16px;
    z-index: 2;
}
.shared_about-badge--left {
    bottom: -18px;
    left: -18px;
}
.shared_about-badge--right {
    top: -18px;
    right: -18px;
}
.shared_about-badge .label {
    font-size: 11px;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}
.shared_about-badge .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 2px 0;
}
.shared_about-badge .sub {
    font-size: 11px;
    color: #4b5563;
    margin: 0;
}
@media (min-width: 768px) {
    .shared_about-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Comparison (WhyExhibitorlyComparison) ---------- */
.shared_comparison {
    padding: 30px 0 60px;
    background: #f3f4f6;
}
.shared_comparison .container {
    max-width: 1100px;
    margin: 0 auto;
}
.shared_comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.shared_comparison-card-wrap {
    position: relative;
    display: flex;
}
.shared_comparison-card {
    position: relative;
    border-radius: 24px;
    padding: 36px 28px 28px;
    width: 100%;
}
.shared_comparison-card--old {
    background: linear-gradient(135deg, #fff 0%, #f1ffb8 50%, var(--hp-lime) 100%);
    border: 2px solid var(--hp-lime);
}
.shared_comparison-card--new {
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    overflow: hidden;
}
.shared_comparison-tag {
    position: absolute;
    top: -13px;
    left: 28px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.shared_comparison-tag--old {
    background: var(--hp-dark);
    color: var(--hp-lime);
}
.shared_comparison-tag--new {
    background: var(--hp-lime);
    color: var(--hp-dark);
}
.shared_comparison-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 6px 0 4px;
}
.shared_comparison-card--old h3 {
    color: var(--hp-dark);
}
.shared_comparison-card--new h3 {
    color: var(--hp-lime);
}
.shared_comparison-subheading {
    font-size: 13px;
    margin-bottom: 22px;
}
.shared_comparison-card--old .shared_comparison-subheading {
    color: rgba(12, 46, 22, 0.7);
}
.shared_comparison-card--new .shared_comparison-subheading {
    color: #d1d5db;
}

/* .shared_comparison-content accepts any rich-text HTML — paragraphs, an
   <hr> separator, a bullet list — not just a fixed points array, so a card
   isn't limited to "a list and nothing else". A <ul>/<li> the content
   happens to include gets the same icon-bullet look as before, just applied
   generically via CSS instead of per-item Blade markup: the icon shape
   comes from the card's data-bullet-icon attribute (mask-image, so its
   color always matches the card variant), the icon's circular backdrop
   inverts colors automatically between the --old/--new card variants. */
.shared_comparison-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.shared_comparison-content p:last-child {
    margin-bottom: 0;
}
.shared_comparison-card--old .shared_comparison-content p {
    color: #374151;
}
.shared_comparison-card--new .shared_comparison-content p {
    color: #fff;
}
.shared_comparison-content hr {
    border: 0;
    margin: 20px 0;
}
.shared_comparison-card--old .shared_comparison-content hr {
    border-top: 1px solid rgba(12, 46, 22, 0.15);
}
.shared_comparison-card--new .shared_comparison-content hr {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.shared_comparison-content ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.shared_comparison-content ul:last-child {
    margin-bottom: 0;
}
.shared_comparison-content li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}
.shared_comparison-content li:last-child {
    margin-bottom: 0;
}
.shared_comparison-card--old .shared_comparison-content li {
    color: #374151;
}
.shared_comparison-card--new .shared_comparison-content li {
    color: #fff;
    font-weight: 500;
}
.shared_comparison-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
}
.shared_comparison-card--old .shared_comparison-content li::before {
    background: var(--hp-dark);
}
.shared_comparison-card--new .shared_comparison-content li::before {
    background: var(--hp-lime);
}
.shared_comparison-content li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 12px;
    height: 12px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.shared_comparison-card--old .shared_comparison-content li::after {
    background: var(--hp-lime);
}
.shared_comparison-card--new .shared_comparison-content li::after {
    background: var(--hp-dark);
}
[data-bullet-icon="none"] .shared_comparison-content li::before,
[data-bullet-icon="none"] .shared_comparison-content li::after {
    content: none;
}
[data-bullet-icon="none"] .shared_comparison-content li {
    padding-left: 0;
}
[data-bullet-icon="check"] .shared_comparison-content li::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
[data-bullet-icon="x"] .shared_comparison-content li::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
}
[data-bullet-icon="help"] .shared_comparison-content li::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.228 9a3.002 3.002 0 0 1 5.771 1c0 2 -3 3 -3 3'/%3E%3Cpath d='M12 17l0 .01'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.228 9a3.002 3.002 0 0 1 5.771 1c0 2 -3 3 -3 3'/%3E%3Cpath d='M12 17l0 .01'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
}
.shared_comparison-cta {
    text-align: center;
    margin-top: 36px;
}
.shared_comparison-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.shared_comparison-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 46, 22, 0.25);
}
@media (min-width: 768px) {
    .shared_comparison-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Our Process (OurProcessSection) ---------- */
.shared_process {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    position: relative;
    overflow: hidden;
}
.shared_process-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: var(--hp-lime);
    filter: blur(64px);
    pointer-events: none;
}
.shared_process-glow--1 { top: -80px; right: -80px; opacity: 0.2; }
.shared_process-glow--2 { bottom: -80px; left: -80px; opacity: 0.1; }
.shared_process .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.shared_process-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.shared_process-head .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-lime);
    margin-bottom: 10px;
}
.shared_process-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.shared_process-head .subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}
.shared_process-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 768px) {
    .shared_process-row { display: grid; grid-template-columns: repeat(4, 1fr); }
}
.shared_process-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}
.shared_process-line-bg { stroke: rgba(207, 255, 127, 0.18); stroke-width: 2; }
.shared_process-line-fg { stroke: var(--hp-lime); stroke-width: 3; stroke-linecap: round; }
.shared_process-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
@media (min-width: 768px) {
    .shared_process-step { flex-direction: column; align-items: center; gap: 0; }
}
.shared_process-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 2px solid rgba(207, 255, 127, 0.4);
    background: var(--hp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s, border-color 0.5s, box-shadow 0.5s, transform 0.5s;
}
.shared_process-badge span {
    font-size: 18px;
    font-weight: 700;
    color: rgba(207, 255, 127, 0.6);
    transition: color 0.5s;
}
.shared_process-step.active .shared_process-badge {
    background: var(--hp-lime);
    border-color: var(--hp-lime);
    box-shadow: 0 0 0 6px rgba(207, 255, 127, 0.18), 0 0 24px rgba(207, 255, 127, 0.55);
    transform: scale(1.08);
}
.shared_process-step.active .shared_process-badge span { color: var(--hp-dark); }
.shared_process-card {
    flex: 1;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    transition: background 0.5s, border-color 0.5s;
}
@media (min-width: 768px) {
    .shared_process-card { margin-top: 24px; width: 100%; }
}
.shared_process-step.active .shared_process-card {
    background: rgba(207, 255, 127, 0.16);
    border-color: rgba(207, 255, 127, 0.6);
}
.shared_process-icon { margin-bottom: 12px; }
.shared_process-icon svg { width: 40px; height: 40px; }
.shared_process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.shared_process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.shared_process-draw circle,
.shared_process-draw line,
.shared_process-draw path,
.shared_process-draw rect {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: sharedProcessDraw 2.6s ease-in-out infinite;
}
@keyframes sharedProcessDraw {
    0% { stroke-dashoffset: 1; }
    55% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .shared_process-draw circle,
    .shared_process-draw line,
    .shared_process-draw path,
    .shared_process-draw rect {
        animation: none !important;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
}

/* ---------- Booth Options (BoothOptionsSection) ---------- */
.shared_booth_options {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    position: relative;
    overflow: hidden;
}
.shared_booth_options-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: var(--hp-lime);
    filter: blur(64px);
    pointer-events: none;
}
.shared_booth_options-glow--1 { top: -80px; right: -80px; opacity: 0.2; }
.shared_booth_options-glow--2 { bottom: -80px; left: -80px; opacity: 0.1; }
.shared_booth_options .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.shared_booth_options-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}
.shared_booth_options-head .eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hp-lime);
    margin-bottom: 10px;
}
.shared_booth_options-head h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.shared_booth_options-head .subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}
.shared_booth_options-carousel { position: relative; }
.shared_booth_options-viewport {
    overflow: hidden;
    padding: 56px 12px 16px;
}
.shared_booth_options-track {
    display: flex;
    gap: 24px;
}
.shared_booth_option-card {
    flex: 0 0 80%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -12px rgba(12, 46, 22, 0.28);
    transition: transform 0.3s, box-shadow 0.3s;
}
.shared_booth_option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px -15px rgba(12, 46, 22, 0.42);
}
@media (min-width: 640px) {
    .shared_booth_option-card { flex-basis: 42%; }
}
@media (min-width: 1024px) {
    .shared_booth_option-card { flex-basis: calc((100% - 48px) / 3); }
}
.shared_booth_option-card.active {
    transform: scale(1.03);
    transform-origin: bottom;
    box-shadow: 0 25px 60px -15px rgba(12, 46, 22, 0.45);
    outline: 1px solid rgba(207, 255, 127, 0.8);
    outline-offset: -1px;
    z-index: 1;
}
.shared_booth_option-img {
    position: relative;
    height: 224px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 50%, var(--hp-lime) 100%);
}
.shared_booth_option-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shared_booth_option-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0c2e16 0%, rgba(12, 46, 22, 0.35) 55%, transparent 100%);
}
.shared_booth_option-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.shared_booth_option-badge svg { width: 12px; height: 12px; }
.shared_booth_option-num {
    position: absolute;
    right: 16px;
    top: 12px;
    z-index: 1;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.25);
}
.shared_booth_option-img-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
}
.shared_booth_option-bar {
    display: inline-block;
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--hp-lime);
    margin-bottom: 8px;
}
.shared_booth_option-img-foot h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.shared_booth_option-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.shared_booth_option-highlights-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.shared_booth_option-highlights-head .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--hp-lime);
}
.shared_booth_option-highlights-head p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hp-dark);
}
.shared_booth_option-highlights {
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
}
.shared_booth_option-highlights li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 8px;
}
.shared_booth_option-highlights li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.shared_booth_option-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.shared_booth_option-divider span { flex: 1; height: 1px; background: #e5e7eb; }
.shared_booth_option-divider i {
    width: 6px;
    height: 6px;
    background: var(--hp-lime);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.shared_booth_option-best {
    margin-top: auto;
    background: linear-gradient(135deg, #f7fee7 0%, #ecfccb 100%);
    border: 1px solid rgba(207, 255, 127, 0.4);
    border-radius: 16px;
    padding: 16px;
}
.shared_booth_option-best-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.shared_booth_option-best-head svg { width: 14px; height: 14px; color: var(--hp-dark); }
.shared_booth_option-best-head p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hp-dark);
}
.shared_booth_option-best-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(12, 46, 22, 0.8);
}
.shared_booth_options-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.shared_booth_options-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--hp-dark);
    color: #fff;
    border: 1px solid rgba(207, 255, 127, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.shared_booth_options-nav-btn:hover { background: var(--hp-lime); color: var(--hp-dark); }
.shared_booth_options-nav-btn svg { width: 20px; height: 20px; }
.shared_booth_options-cta { text-align: center; margin-top: 32px; }
.shared_booth_options-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-lime);
    color: var(--hp-dark);
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.shared_booth_options-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
