/* ================================================================
   LABYAD BLOCKS — Custom shortcode styles
   ================================================================ */

/* ── Shared utilities ──────────────────────────────────────────── */
.labyad-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b5894a;
    margin-bottom: 0.75rem;
}

.labyad-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.labyad-btn--primary {
    background: #b5894a;
    color: #fff;
    border-color: #b5894a;
}

.labyad-btn--primary:hover {
    background: #9a7239;
    border-color: #9a7239;
    color: #fff;
}

.labyad-btn--outline {
    background: transparent;
    color: #b5894a;
    border-color: #b5894a;
}

.labyad-btn--outline:hover {
    background: #b5894a;
    color: #fff;
}

.labyad-btn--light {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.labyad-btn--light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.labyad-btn--hero {
    background: #b5894a;
    color: #fff;
    border-color: #b5894a;
    font-size: 1rem;
    padding: 0.85rem 2.25rem;
}

.labyad-btn--hero:hover {
    background: #9a7239;
    border-color: #9a7239;
    color: #fff;
}

.labyad-btn--full {
    width: 100%;
    text-align: center;
}

/* ================================================================
   1. HERO SECTION
   ================================================================ */
.labyad-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.labyad-hero__slider {
    position: relative;
    width: 100%;
    min-height: 92vh;
}

.labyad-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.labyad-hero__slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labyad-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
}

.labyad-hero__slide-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.labyad-hero__top-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8c97e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8c97e;
    padding-bottom: 0.35rem;
}

.labyad-hero__headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.labyad-hero__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.87);
    margin-bottom: 2rem;
    max-width: 560px;
    text-align: center;
}

.labyad-hero__duration-label {
    display: inline-block;
    margin-left: 1.25rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    vertical-align: middle;
}

/* Arrows */
.labyad-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labyad-hero__arrow:hover { background: rgba(181,137,74,0.85); }
.labyad-hero__arrow--prev { left: 1.5rem; }
.labyad-hero__arrow--next { right: 1.5rem; }

/* Dots */
.labyad-hero__dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.labyad-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.labyad-hero__dot.active {
    background: #b5894a;
    transform: scale(1.3);
}

/* Reservation Form */
.labyad-hero__form-wrap {
    background: #f7f4ef;
    padding: 3rem 1.5rem;
}

.labyad-hero__form-card {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.labyad-hero__form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #1a1a1a;
}

.labyad-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.labyad-form__group {
    margin-bottom: 1rem;
}

.labyad-form__input,
.labyad-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.labyad-form__input:focus,
.labyad-form__textarea:focus {
    outline: none;
    border-color: #b5894a;
}

.labyad-form__textarea { resize: vertical; }

@media (max-width: 640px) {
    .labyad-form__row { grid-template-columns: 1fr; }
    .labyad-hero__slide-content { padding: 3rem 1.5rem; }
}

/* ================================================================
   2. ABOUT US
   ================================================================ */
.labyad-about {
    padding: 5rem 0;
}

.labyad-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.labyad-about__title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.labyad-about__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: #b5894a;
    margin-bottom: 0.5rem;
}

.labyad-about__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 2rem;
}

/* Image collage */
.labyad-about__collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    position: relative;
}

.labyad-about__collage-img { overflow: hidden; border-radius: 6px; }
.labyad-about__collage-img--1 { grid-column: 1 / 3; }
.labyad-about__collage-img--2 { grid-column: 1 / 2; }
.labyad-about__collage-img--3 { grid-column: 2 / 3; }

.labyad-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.labyad-about__collage-img:hover .labyad-about__img { transform: scale(1.04); }

@media (max-width: 900px) {
    .labyad-about__grid { grid-template-columns: 1fr; }
    .labyad-about__collage { order: -1; }
}

/* ================================================================
   3. MISSION & OBJECTIFS
   ================================================================ */
.labyad-mission {
    padding: 5rem 0;
    background: #faf7f2;
}

.labyad-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.labyad-mission__image { overflow: hidden; border-radius: 8px; }
.labyad-mission__img { width: 100%; object-fit: cover; display: block; border-radius: 8px; }

.labyad-mission__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.labyad-mission__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 2rem;
}

.labyad-mission__objectives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.labyad-mission__obj-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.labyad-mission__obj-icon {
    font-size: 1.3rem;
    color: #b5894a;
    flex-shrink: 0;
}

.labyad-mission__obj-icon--dot {
    width: 10px;
    height: 10px;
    background: #b5894a;
    border-radius: 50%;
    display: inline-block;
}

.labyad-mission__obj-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .labyad-mission__grid { grid-template-columns: 1fr; }
    .labyad-mission__objectives { grid-template-columns: 1fr; }
}

/* ================================================================
   4. WHY CHOOSE US
   ================================================================ */
.labyad-why {
    padding: 5rem 0;
}

.labyad-why__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

.labyad-why__layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.labyad-why__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.labyad-why__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.labyad-why__card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.labyad-why__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf7f2;
    color: #b5894a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.labyad-why__card-icon--dot {
    width: 12px;
    height: 12px;
    background: #b5894a;
    border-radius: 50%;
}

.labyad-why__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.labyad-why__card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.labyad-why__image { width: 240px; flex-shrink: 0; }
.labyad-why__img { width: 100%; border-radius: 8px; object-fit: cover; }

@media (max-width: 1024px) {
    .labyad-why__layout { grid-template-columns: 1fr; }
    .labyad-why__image { width: 100%; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .labyad-why__cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .labyad-why__cards { grid-template-columns: 1fr; }
}

/* ================================================================
   5. PACKAGE / PROGRAMME
   ================================================================ */
.labyad-package {
    padding: 5rem 0;
    background: #fff;
}

.labyad-package__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

.labyad-package__tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 2.5rem;
}

.labyad-package__tab {
    padding: 0.75rem 1.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.labyad-package__tab:hover { color: #b5894a; }
.labyad-package__tab.active { color: #b5894a; border-bottom-color: #b5894a; }

.labyad-package__panel { display: none; }
.labyad-package__panel.active { display: block; }

/* Tab 1 */
.labyad-package__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.labyad-package__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.labyad-package__feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #333;
}

.labyad-package__feat-icon {
    color: #b5894a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.labyad-package__feat-icon--check {
    font-style: normal;
    font-weight: 700;
}

.labyad-package__tab-image { overflow: hidden; border-radius: 8px; }
.labyad-package__img { width: 100%; object-fit: cover; border-radius: 8px; display: block; }

/* Tab 2 */
.labyad-package__support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 620px;
}

.labyad-package__support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
    padding: 0.75rem 1rem;
    background: #faf7f2;
    border-radius: 6px;
}

.labyad-package__sup-icon {
    color: #b5894a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Tab 3 - Timeline */
.labyad-package__timeline {
    display: flex;
    gap: 0;
    position: relative;
}

.labyad-package__timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: #e8e0d5;
    z-index: 0;
}

.labyad-package__timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.labyad-package__timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #b5894a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.labyad-package__timeline-number {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.labyad-package__timeline-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.labyad-package__timeline-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Tab 4 - Conditions */
.labyad-package__conditions { max-width: 680px; margin: 0 auto; }

.labyad-package__price-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
    color: #fff;
    border-radius: 10px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.labyad-package__price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
}

.labyad-package__price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #e8c97e;
}

.labyad-package__conditions-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.labyad-package__cond-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.labyad-package__cond-heading--included { color: #2e7d32; }
.labyad-package__cond-heading--excluded { color: #c62828; }

.labyad-package__cond-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #333;
}

.labyad-package__cond-list--excluded { color: #666; }

.labyad-package__cond-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: #faf7f2;
    border-left: 3px solid #b5894a;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .labyad-package__split { grid-template-columns: 1fr; }
    .labyad-package__features { grid-template-columns: 1fr; }
    .labyad-package__timeline { flex-direction: column; }
    .labyad-package__timeline::before { display: none; }
    .labyad-package__timeline-step { flex-direction: row; text-align: left; align-items: flex-start; }
    .labyad-package__timeline-marker { flex-shrink: 0; }
    .labyad-package__conditions-cols { grid-template-columns: 1fr; }
}

/* ================================================================
   6. CTA SECTION
   ================================================================ */
.labyad-cta {
    position: relative;
    padding: 6rem 0;
    background: #1a1a2e;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.labyad-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, 0.7);
}

.labyad-cta .container { position: relative; z-index: 2; }

.labyad-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.labyad-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.labyad-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ================================================================
   7. GALLERY SECTION
   ================================================================ */
.labyad-gallery {
    padding: 5rem 0;
    background: #fff;
}

.labyad-gallery__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.labyad-gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.labyad-gallery__filter {
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}

.labyad-gallery__filter:hover,
.labyad-gallery__filter.active {
    background: #b5894a;
    border-color: #b5894a;
    color: #fff;
}

/* Masonry grid */
.labyad-gallery__grid {
    columns: 3;
    column-gap: 1rem;
}

.labyad-gallery__item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.labyad-gallery__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.labyad-gallery__img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.labyad-gallery__thumb:hover .labyad-gallery__img {
    transform: scale(1.05);
}

.labyad-gallery__hover {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.labyad-gallery__thumb:hover .labyad-gallery__hover {
    opacity: 1;
}

.labyad-gallery__caption {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
}

.labyad-gallery__cat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e8c97e;
}

@media (max-width: 900px) {
    .labyad-gallery__grid { columns: 2; }
}

@media (max-width: 540px) {
    .labyad-gallery__grid { columns: 1; }
}

/* ================================================================
   8. SCROLL REVEAL ANIMATIONS
   ================================================================ */
.labyad-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.labyad-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.labyad-reveal--left {
    transform: translateX(-42px);
}

.labyad-reveal--left.is-visible {
    transform: none;
}

.labyad-reveal--right {
    transform: translateX(42px);
}

.labyad-reveal--right.is-visible {
    transform: none;
}

.labyad-reveal--d1 { transition-delay: 0.08s; }
.labyad-reveal--d2 { transition-delay: 0.16s; }
.labyad-reveal--d3 { transition-delay: 0.24s; }
.labyad-reveal--d4 { transition-delay: 0.32s; }
.labyad-reveal--d5 { transition-delay: 0.40s; }
.labyad-reveal--d6 { transition-delay: 0.48s; }

/* Hero slide content entrance */
@keyframes labyad-slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

.labyad-hero__slide.active .labyad-hero__top-label {
    animation: labyad-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.labyad-hero__slide.active .labyad-hero__headline {
    animation: labyad-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.labyad-hero__slide.active .labyad-hero__desc {
    animation: labyad-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.labyad-hero__slide.active .labyad-hero__btns {
    animation: labyad-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

/* Section title underline accent */
.labyad-about__main-title::after,
.labyad-mission__title::after,
.labyad-why__title::after,
.labyad-package__title::after,
.labyad-gallery__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #b5894a;
    margin: 0.6rem auto 0;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.labyad-about__main-title.is-visible::after,
.labyad-mission__title.is-visible::after,
.labyad-why__title.is-visible::after,
.labyad-package__title.is-visible::after,
.labyad-gallery__title.is-visible::after {
    width: 80px;
}

/* ================================================================
   9. WHATSAPP FLOATING BUTTON
   ================================================================ */
.labyad-wtsp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.labyad-wtsp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}

.labyad-wtsp-btn svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.labyad-wtsp-btn__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.labyad-wtsp-btn__tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}

.labyad-wtsp-btn:hover .labyad-wtsp-btn__tooltip {
    opacity: 1;
}

@media (max-width: 600px) {
    .labyad-wtsp-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
    }

    .labyad-wtsp-btn svg {
        width: 26px;
        height: 26px;
    }
}
