/* ===== THUMB GRID ===== */
.thumb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.5rem 0;
    justify-content: center
}

.thumb-item {
    flex: 1 1 140px;
    text-align: center
}

.thumb-img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #E6B17E;
    background: #2a2e3a;
    display: block;
    max-width: 100%;
    height: auto
}

/* ===== REVIEWS ===== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 1.5rem;
    margin: 2rem 0
}

.review-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #FFD966
}

.review-card .stars {
    color: #f5b342;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: .5rem
}

.review-card p {
    font-style: italic;
    margin: .5rem 0;
    font-size: .95rem;
    line-height: 1.5;
    color: #f5e6d3
}

.review-card cite {
    font-style: normal;
    font-weight: 600;
    color: #E6B17E;
    font-size: .85rem
}

.btn-review {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s
}

.btn-review:hover {
    background: #1557b0;
    color: #fff
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.5rem 0
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,170,0.15);
    border-radius: 10px;
    overflow: hidden
}

.faq-question {
    background: rgba(30,30,40,0.5);
    padding: .9rem 1.2rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin: 0;
    color: #f5e6d3
}

.faq-question:hover {
    background: rgba(30,30,40,0.8)
}

.faq-question .icon {
    transition: transform .25s ease;
    font-size: 1.1rem
}

.faq-question.open .icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease,padding .3s ease;
    background: rgba(255,255,255,0.02);
    line-height: 1.6;
    color: #f5e6d3
}

.faq-answer.open {
    max-height: 400px;
    padding: 1rem 1.2rem 1.2rem
}

.faq-answer p {
    margin: 0
}

/* ===== BOOKING ===== */
.booking-highlight {
    background: #301561;
    color: #fff;
    padding: 1.2rem;
    border-radius: 16px;
    margin: 1.2rem 0
}

.booking-highlight a {
    color: #ffd966
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0
}

.step-list li {
    counter-increment: step-counter;
    padding: .75rem 1rem .75rem 3.5rem;
    position: relative;
    background: rgba(255,255,255,0.05);
    margin-bottom: .75rem;
    border-radius: 8px;
    border-left: 4px solid #25D366
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: .7rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-list li strong {
    color: #FFD966
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem;
    margin: 1.5rem 0
}

.expect-item {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(230,177,126,0.1);
    transition: transform .2s
}

.expect-item:hover {
    transform: translateY(-3px);
    border-color: #FFD966
}

.expect-item .icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: .5rem
}

.expect-item h4 {
    color: #FFD966;
    font-size: 1rem;
    margin: 0 0 .4rem
}

.expect-item p {
    margin: 0;
    font-size: .9rem;
    color: #f5e6d3;
    line-height: 1.5
}

.policy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0
}

.policy-tag {
    background: rgba(230,177,126,0.12);
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .75rem;
    border: 1px solid rgba(230,177,126,0.2);
    color: #f5e6d3
}

.policy-tag.cash {
    border-color: #25D366;
    color: #25D366
}

.policy-tag.no {
    border-color: #e74c3c;
    color: #e74c3c
}

.policy-tag.yes {
    border-color: #2ecc71;
    color: #2ecc71
}

.policy-tag.phone {
    border-color: #FFD966;
    color: #FFD966
}

.booking-ease-list {
    list-style: none;
    padding-left: 0
}

.booking-ease-list li {
    margin: .8rem 0;
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #f5e6d3
}

.restricted-list {
    background: rgb(75 22 17 / 8%);
    border: 1px solid rgba(231,76,60,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0
}

.restricted-list strong {
    color: #fffffa
}

.hotel-name {
    display: inline-block;
    background: rgba(231,76,60,0.12);
    padding: .15rem .6rem;
    border-radius: 12px;
    font-size: .85rem;
    margin: .15rem;
    color: #fbfbfb;
}

/* ===== VIDEO ===== */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem
}

.video-item {
    flex: 1 1 200px;
    aspect-ratio: 9/16;
    max-width: 200px
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none
}

/* ===== UI GRID ===== */
.ui-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem
}

.ui-bar-a,.ui-bar-b {
    flex: 1
}

.ui-block-a,.ui-block-b {
    margin: 0;
    padding: 0;
    border: 0;
    float: left;
    min-height: 1px
}

.ui-grid-b {
    overflow: hidden
}

.ui-grid-b .ui-block-a,.ui-grid-b .ui-block-b,.ui-grid-b .ui-block-c {
    width: 33.333%
}

.ui-grid-b .ui-block-a {
    clear: left
}

.internal-link {
    color: #8cf1df
}

#email-placeholder {
    display: inline
}

/* ===== MAP ===== */
.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255,215,170,0.2)
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

/* ===== FEATURE LIST (No Bullets) ===== */
.feature-list {
    list-style: none!important;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: .5rem
}

.feature-list li {
    padding: .6rem .8rem .6rem 1.8rem;
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,215,170,0.06);
    font-size: .95rem;
    color: #f5e6d3;
    line-height: 1.4;
    list-style: none!important
}

.feature-list li::marker {
    content: ''!important;
    display: none!important
}

.feature-list li:before {
    content: "✓";
    color: #FFD966;
    position: absolute;
    left: .6rem;
    top: .55rem;
    font-weight: 700;
    font-size: .9rem
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    margin-top: 2rem;
    font-size: .75rem;
    opacity: .9;
    border-top: 1px solid rgba(255,215,170,0.2);
    padding-top: 1.5rem;
    background: #1a2a2a;
    color: #ccc
}

.footer a {
    color: #FFD966;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s,text-decoration-color .2s
}

.footer a:hover,.footer a:focus {
    color: #FFE066;
    text-decoration-color: #FFE066
}

.footer a:focus-visible {
    outline: 2px solid #FFD966;
    outline-offset: 2px
}

.footer-video-section {
    margin-top: 1rem;
    font-size: .8rem
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform .2s;
    text-decoration: none;
    font-size: 32px;
    color: #fff
}

.whatsapp-float a:hover {
    transform: scale(1.05)
}

/* ===== FLOATING TOP BUTTON ===== */
.floating-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    background: rgba(230,177,126,0.92);
    color: #1e1a16;
    border: none;
    border-radius: 50px;
    padding: .7rem 1.4rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,215,170,0.2)
}

.floating-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.floating-top-btn:hover {
    background: #E6B17E;
    transform: scale(1.06);
    box-shadow: 0 6px 25px rgba(0,0,0,0.45)
}

.floating-top-btn:focus {
    outline: 3px solid #FFD966;
    outline-offset: 2px
}

#backToTopBtn {
    background: #FFD966;
    color: #1e1a16;
    border: none;
    padding: .5rem 1.2rem;
    border-radius: 40px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s,transform .2s;
    font-family: inherit
}

#backToTopBtn:hover {
    background: #E6B17E;
    transform: scale(1.02)
}

#backToTopBtn:focus {
    outline: 3px solid #FFD966;
    outline-offset: 2px
}

/* ===== SUMMER BANNER ===== */
.summer-banner {
    background: linear-gradient(135deg,#FFD966 0,#f5a623 100%);
    color: #1e1a16;
    padding: .75rem 1rem;
    border-radius: 12px;
    margin: .5rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    box-shadow: 0 2px 12px rgba(255,217,102,0.25);
    border: 1px solid rgba(255,215,170,0.3);
    position: relative
}

.summer-banner .banner-text {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    font-weight: 600
}

.summer-banner .banner-text .emoji {
    font-size: 1.4rem
}

.summer-banner .banner-text .headline {
    font-size: 1.05rem
}

.summer-banner .banner-text .sub {
    font-size: .85rem;
    font-weight: 400;
    opacity: .85
}

.summer-banner .banner-cta {
    background: #1e1a16;
    color: #FFD966;
    padding: .4rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: .2s;
    white-space: nowrap;
    border: none;
    cursor: pointer
}

.summer-banner .banner-cta:hover {
    transform: scale(1.03);
    background: #2a2520
}

.summer-banner .close-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #1e1a16;
    opacity: .6;
    padding: 0 .2rem;
    transition: opacity .2s;
    line-height: 1
}

.summer-banner .close-btn:hover {
    opacity: 1
}

.summer-special-block {
    background: rgba(255,217,102,0.12);
    border: 2px solid #FFD966;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center
}

.summer-special-block .badge {
    display: inline-block;
    background: #FFD966;
    color: #1e1a16;
    padding: .2rem 1rem;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .5rem
}

.summer-special-block h3 {
    margin: .3rem 0 .5rem;
    color: #FFD966
}

.summer-special-block .price {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD966
}

.summer-special-block .price strike {
    font-size: 1.4rem;
    opacity: .6;
    font-weight: 400;
    color: #aaa
}

.summer-special-block .guarantee {
    font-size: .95rem;
    color: #f5e6d3;
    margin: .5rem 0
}

.summer-special-block .guarantee strong {
    color: #FFD966
}

.summer-special-block .cta-link {
    display: inline-block;
    margin-top: .8rem;
    background: #FFD966;
    color: #1e1a16;
    padding: .6rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s
}

.summer-special-block .cta-link:hover {
    transform: scale(1.03);
    background: #f5c842
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #c96e3d;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100
}

.skip-link:focus {
    top: 0
}

/* ===== UTILITY ===== */
.margin-top-1 {
    margin-top: 1rem
}

.text-center {
    text-align: center
}

.block-link {
    display: block;
    margin-top: 8px
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1rem 0;
    border: 1px solid rgba(255,215,170,0.15);
    display: block
}

.max_pic,img.max_pic {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 24px;
    margin: 1rem 0;
    border: 1px solid rgba(255,215,170,0.3)
}

img:not(.max_pic) {
    max-width: 100%;
    height: auto
}

.page-section:not(.active) h1 {
    display: none
}


/* ============================================================
   FAQ ACCORDION – Pure CSS (No JavaScript Required)
   ============================================================ */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  cursor: pointer;
  color: #f5e6d3;
  font-weight: 600;
  user-select: none;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #FFD966;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

/* Hide the checkbox input */
.faq-item input[type="checkbox"] {
  display: none;
}

/* Answer is hidden by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0.5rem;
  color: #d4c8bc;
  line-height: 1.6;
}

/* When checkbox is checked, expand the answer */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px; /* Adjust based on content */
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}

/* Rotate the arrow when open */
.faq-item input[type="checkbox"]:checked ~ .faq-question .icon {
  transform: rotate(180deg);
}

/* ============================================================
   COMPONENTS FIXES – SXM Massage Mobile
   ============================================================ */

/* ----- INTERNAL LINKS (Contrast Fix) ----- */
.internal-link {
  color: #FFD966 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.internal-link:hover,
.internal-link:focus {
  color: #FFE0B5 !important;
  text-decoration: underline;
}

/* ----- BANNER ACTIONS ----- */
.banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ----- AREAS TAGS CONTAINER ----- */
.areas-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* ----- TRUST SIGNALS ----- */
.trust-signals {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 170, 0.05);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 170, 0.1);
}
.trust-signals p {
  font-size: 0.9rem;
  color: #f5e6d3;
  margin: 0;
}
.trust-signals a {
  color: #E6B17E;
}
.trust-signals .sub-links {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.3rem;
}

/* ----- SUMMER SPECIAL BLOCK ----- */
.summer-special-block p {
  color: #f5e6d3;
  font-size: 1rem;
}
.summer-special-block .price {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ----- HIGHLIGHT BOX ----- */
.highlight {
  border-color: #FFD966;
  background: rgba(255, 217, 102, 0.08);
}
.highlight .price-large {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD966;
  margin: 0.5rem 0;
}

/* ----- AREA SPOTS CONTAINER ----- */
.area-spots-container {
  margin: 1rem 0;
}
.area-spots-container .area-tag,
.area-spots-container .area-spot {
  display: inline-block;
  margin: 0.25rem 0;
}
.restricted-list .small-note {
  margin-top: 0.5rem;
}

/* ----- REVIEWS ----- */
.reviews-rating {
  text-align: center;
  margin-top: 1rem;
}
.reviews-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* ----- GROUP DEALS FOOTER ----- */
.group-deals-footer {
  text-align: center;
  margin-top: 1.5rem;
}

/* ----- BOOKING SECTION ----- */
.booking-highlight p {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}
.booking-cta-center {
  text-align: center;
  margin: 2rem 0 1rem;
}
.booking-cta-center .btn-whatsapp-large {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.3rem;
}
.booking-cta-center .small-note {
  margin-top: 0.5rem;
}
.btn-call-inline {
  display: inline-block;
  margin-top: 0.5rem;
}

/* ----- NAVIGATION MENU (Stabilize CLS) ----- */
.internal-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 48px;
  align-items: center;
}
.menu-btn {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  line-height: 1.2;
}

/* ----- HERO IMAGE (Prevent CLS) ----- */
.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 600;
  display: block;
}

/* ----- FLOATING TOP BUTTON (Prevent CLS) ----- */
.floating-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.floating-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* ----- RESPONSIVE OVERRIDES (For Mobile) ----- */
@media (max-width: 768px) {
  .internal-menu ul {
    min-height: auto;
  }
  .menu-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    white-space: normal;
  }
}


/* ----- REUSABLE COMPONENTS (from simpson-bay-massage.html) ----- */
.section-title-gold {
  color: #FFD966;
  margin-top: 2rem;
}
.feature-list {
  list-style: disc;
  padding-left: 1.5rem;
}
.feature-list li {
  margin-bottom: 0.5rem;
}
.table-wrap {
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
}
.price-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  background: rgba(255, 215, 170, 0.08);
  color: #FFD966;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5e6d3;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table .highlight-row td {
  background: rgba(255, 217, 102, 0.06);
  font-weight: 600;
  color: #FFD966;
}
.trust-signals {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 170, 0.05);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 170, 0.1);
}
.trust-signals p {
  font-size: 0.9rem;
  color: #f5e6d3;
  margin: 0;
}
.trust-signals .highlight {
  color: #FFD966;
}
.small-note-mt {
  margin-top: 0.5rem;
}
.btn-call-inline {
  display: inline-block;
  margin-top: 0.5rem;
}
.booking-cta-center {
  text-align: center;
  margin: 2rem 0 1rem;
}
.booking-cta-center .btn-whatsapp-large {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.3rem;
}
.booking-cta-center .small-note {
  margin-top: 0.5rem;
}
.group-deals-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.reviews-rating {
  text-align: center;
  margin-top: 1rem;
}
.reviews-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.area-spots-container {
  margin: 1rem 0;
}
.area-spots-container .area-tag,
.area-spots-container .area-spot {
  display: inline-block;
  margin: 0.25rem 0;
}
.restricted-list .small-note {
  margin-top: 0.5rem;
}
.highlight-box {
  border-color: #FFD966;
  background: rgba(255, 217, 102, 0.08);
}
.highlight-box .price-large {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD966;
  margin: 0.5rem 0;
}
.banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.internal-link {
  color: #FFD966 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.internal-link:hover,
.internal-link:focus {
  color: #FFE0B5 !important;
  text-decoration: underline;
}

/* WhatsApp Button – Ensure it's distinguishable without color */
.btn-whatsapp-large,
.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  /* Add underline or icon for non-color distinction */
  position: relative;
  padding-left: 48px; /* Space for icon */
}

/* Add the 📲 icon as a pseudo-element so it's always visible */
.btn-whatsapp-large::before,
.btn-whatsapp::before {
  content: "📲";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Hover state for extra feedback */
.btn-whatsapp-large:hover,
.btn-whatsapp:hover {
  background: #1da851;
}

/* Focus state for keyboard users */
.btn-whatsapp-large:focus,
.btn-whatsapp:focus {
  outline: 3px solid #FFD966;
  outline-offset: 2px;
}

/* Policy Tags – Make them distinguishable without color */
.policy-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: #f5e6d3;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin: 0.2rem;
}

/* "Cash Only" – add 💵 icon */
.policy-tag.cash::before {
  content: "💵 ";
}

/* "No" restrictions – add 🚫 icon AND a text prefix */
.policy-tag.no {
  border-color: #e57373;
  color: #e57373;
  background: rgba(229, 115, 115, 0.1);
}
.policy-tag.no::before {
  content: "🚫 ";
}

/* "Yes" / Allowed – add ✅ icon */
.policy-tag.yes {
  border-color: #81C784;
  color: #81C784;
  background: rgba(129, 199, 132, 0.1);
}
.policy-tag.yes::before {
  content: "✅ ";
}

/* Phone required – add 📱 icon */
.policy-tag.phone::before {
  content: "📱 ";
}

/* Generic tags with icon support */
.policy-tag::before {
  display: inline-block;
  margin-right: 4px;
}

/* Ensure ALL links have a non-color indicator */
a:not(.btn-whatsapp-large):not(.btn-whatsapp):not(.btn-call):not(.btn-review):not(.menu-btn) {
  color: #FFD966;
  text-decoration: underline;
  text-decoration-color: rgba(255, 217, 102, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

a:not(.btn-whatsapp-large):not(.btn-whatsapp):not(.btn-call):not(.btn-review):not(.menu-btn):hover,
a:not(.btn-whatsapp-large):not(.btn-whatsapp):not(.btn-call):not(.btn-review):not(.menu-btn):focus {
  text-decoration-color: #FFD966;
  color: #FFE0B5;
}

/* Focus state for all interactive elements */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #FFD966;
  outline-offset: 2px;
}