/* ========================================
       CSS VARIABLES
       ======================================== */
    :root {
      --color-orange: #E8762D;
      --color-orange-hover: #D4681F;
      --color-orange-light: #F4A261;
      --color-orange-glow: rgba(232, 118, 45, 0.12);
      --color-orange-subtle: rgba(232, 118, 45, 0.06);
      --color-teal: #1A6B6A;
      --color-teal-light: #2D8F8E;
      --color-teal-hover: #15585A;
      --color-cream: #FFF9F4;
      --color-sand: #F5EDE4;
      --color-sand-light: #FAF5EF;
      --color-navy: #1B2A4A;
      --color-navy-light: #243656;
      --color-navy-lighter: #2E4268;
      --color-text: #2D2A26;
      --color-text-muted: #7A756E;
      --color-text-light: #9E9890;
      --color-white: #FFFFFF;
      --color-border: rgba(45, 42, 38, 0.08);
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-pill: 100px;
      --shadow-soft: 0 4px 24px rgba(45, 42, 38, 0.06);
      --shadow-card: 0 8px 32px rgba(45, 42, 38, 0.08);
      --shadow-elevated: 0 16px 48px rgba(45, 42, 38, 0.12);
      --shadow-glow: 0 8px 40px rgba(232, 118, 45, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-text);
      background-color: var(--color-cream);
      overflow-x: hidden;
    }

    body.th { font-size: 1.1rem; line-height: 1.85; font-family: 'Sarabun', 'Noto Sans Thai', 'Poppins', sans-serif; }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========================================
       REVEAL ANIMATIONS
       ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       NAVBAR
       ======================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      background: rgba(255, 249, 244, 0.95);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06);
    }

    .navbar.scrolled {
      padding: 10px 0;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 48px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--color-text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-orange);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links a:hover {
      color: var(--color-text);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.88rem;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-primary {
      background: var(--color-orange);
      color: var(--color-white);
      padding: 12px 24px;
      border-radius: var(--radius-pill);
    }

    .btn-primary:hover {
      background: var(--color-orange-hover);
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }

    .btn-nav {
      padding: 10px 24px;
    }

    .lang-toggle {
      display: flex;
      background: var(--color-sand);
      border-radius: 100px;
      padding: 3px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .lang-toggle a {
      padding: 5px 12px;
      border-radius: 100px;
      cursor: pointer;
      transition: var(--transition-smooth);
      color: var(--color-text-muted);
      text-decoration: none;
    }

    .lang-toggle a.active {
      background: var(--color-white);
      color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      z-index: 1001;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: var(--transition-smooth);
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      height: 100vh;
      background: var(--color-cream);
      padding: 100px 40px 40px;
      box-shadow: -8px 0 40px rgba(45, 42, 38, 0.1);
      transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 999;
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      display: block;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text);
      padding: 16px 0;
      border-bottom: 1px solid rgba(45, 42, 38, 0.08);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(45, 42, 38, 0.3);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .mobile-overlay.open {
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .nav-links, .lang-toggle {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .mobile-menu {
        display: block;
      }
    }

    /* ========================================
       BACK BUTTON
       ======================================== */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--color-orange);
      margin: 24px 0;
      padding: 0 24px;
    }

    .back-link:hover {
      gap: 12px;
    }

    /* ========================================
       GALLERY — single row like WP
       ======================================== */
    .gallery-mosaic {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: row;
      gap: 6px;
      height: 300px;
      overflow: hidden;
    }

    /* Hero (first) image — takes ~55 % of the row */
    .gallery-mosaic-hero {
      flex: 0 0 auto;
      aspect-ratio: 1200 / 676;
      height: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-mosaic-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-mosaic-hero:hover img {
      transform: scale(1.02);
    }

    /* Thumbs container — fills remaining space */
    .gallery-mosaic-thumbs {
      flex: 1;
      display: flex;
      flex-direction: row;
      gap: 6px;
      height: 100%;
      overflow: hidden;
    }

    .gallery-mosaic-thumb {
      flex: 1;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-mosaic-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-mosaic-thumb:hover img {
      transform: scale(1.05);
    }

    .gallery-mosaic-overlay {
      position: absolute;
      inset: 0;
      background: rgba(27, 42, 74, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      pointer-events: none;
    }

    /* Skeleton loading */
    .gallery-mosaic-skeleton {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: row;
      gap: 6px;
      height: 300px;
      overflow: hidden;
    }

    .gallery-mosaic-skeleton .skeleton-hero {
      flex: 0 0 auto;
      aspect-ratio: 1200 / 676;
      height: 100%;
      border-radius: var(--radius-md);
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    .gallery-mosaic-skeleton .skeleton-thumb {
      flex: 1;
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }


    .activity-google-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-text);
    }

    .activity-google-count {
      color: var(--color-text-muted);
      font-size: 0.8rem;
    }

    /* Provider row (name + Google badge) */
    .activity-provider-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .provider-name {
      color: var(--color-orange);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .provider-name:hover {
      text-decoration: underline;
    }

    /* Activity location meta row */
    .activity-location-row {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 12px;
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }

    .activity-location-row a {
      color: var(--color-orange);
      font-weight: 600;
    }

    .activity-location-row a:hover {
      text-decoration: underline;
    }

    .activity-location-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .activity-location-item svg {
      color: var(--color-text-light);
    }

    /* ========================================
       ACTIVITY INFO
       ======================================== */
    .activity-info {
      padding: 60px 0;
    }

    .activity-info .reveal {
      opacity: 1 !important;
      transform: none !important;
    }

    .activity-header {
      margin-bottom: 48px;
    }

    .activity-name-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 24px;
    }

    .activity-detail-logo {
      width: 80px;
      height: 80px;
      border-radius: 16px;
      object-fit: contain;
      background: white;
      padding: 8px;
      box-shadow: 0 4px 16px rgba(45, 42, 38, 0.1);
      border: 2px solid var(--color-sand);
      flex-shrink: 0;
    }

    .activity-name-col h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 16px;
    }

    .activity-meta {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .activity-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.05rem;
    }

    .activity-meta-label {
      color: var(--color-text-muted);
    }

    .activity-rating {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .review-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--color-orange-subtle);
      color: var(--color-orange);
      padding: 8px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .review-badge svg {
      width: 16px;
      height: 16px;
    }

    .review-badge-rating {
      font-weight: 700;
    }

    .review-badge-count {
      color: var(--color-text-muted);
      font-size: 0.75rem;
    }


    /* ========================================
       TWO COLUMN LAYOUT
       ======================================== */
    .activity-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      margin-top: 60px;
    }

    @media (max-width: 1024px) {
      .activity-content-wrapper {
        grid-template-columns: 1fr;
      }
    }

    .activity-left {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .activity-right {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-self: start;
    }

    /* ========================================
       CARDS
       ======================================== */
    .card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-soft);
    }

    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: var(--color-navy);
    }

    .card-content {
      color: var(--color-text);
      line-height: 1.8;
    }

    .card-content p {
      margin-bottom: 16px;
    }

    .card-content ul {
      list-style: none;
      padding-left: 0;
    }

    .card-content li {
      padding: 8px 0;
      padding-left: 24px;
      position: relative;
    }

    .card-content li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-orange);
      font-weight: 700;
    }

    /* Collapsible card */
    .card-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }

    .card-toggle-icon {
      width: 24px;
      height: 24px;
      transition: var(--transition-smooth);
      color: var(--color-orange);
    }

    .card-toggle.collapsed .card-toggle-icon {
      transform: rotate(-90deg);
    }

    .card-body {
      margin-top: 20px;
      max-height: none;
      overflow: visible;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card-body.collapsed {
      max-height: 0;
      margin-top: 0;
      overflow: hidden;
    }

    /* ========================================
       BOOKING WIDGET (iframe)
       ======================================== */
    .booking-widget-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Local Thai support mini-widget */
    .local-support-card {
      background: linear-gradient(135deg, var(--color-orange-subtle) 0%, var(--color-sand-light) 100%);
      border: 1px solid var(--color-orange-light);
      border-radius: var(--radius-md);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .local-support-card::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, var(--color-orange-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .local-support-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(232, 118, 45, 0.18);
      position: relative;
      z-index: 1;
    }

    .local-support-icon svg {
      width: 22px;
      height: 22px;
      color: var(--color-orange);
    }

    .local-support-text {
      flex: 1;
      min-width: 0;
      position: relative;
      z-index: 1;
    }

    .local-support-text .title {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 2px;
      letter-spacing: 0.01em;
    }

    .local-support-text .subtitle {
      font-size: 0.72rem;
      color: var(--color-text-muted);
      line-height: 1.45;
      font-weight: 500;
    }

    .local-support-text .subtitle strong {
      color: var(--color-orange);
      font-weight: 700;
    }

    .booking-widget-price {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
    }

    .booking-widget-price .from {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .booking-widget-price .amount {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--color-orange);
      line-height: 1;
    }

    .booking-widget-price .per {
      font-size: 0.82rem;
      color: var(--color-text-muted);
    }

    .booking-widget-iframe {
      width: 100%;
      min-height: 520px;
      border: none;
      border-radius: var(--radius-lg);
      background: var(--color-white);
      box-shadow: var(--shadow-card);
      transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: block;
    }

    .booking-widget-trust {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      box-shadow: var(--shadow-soft);
      font-size: 0.85rem;
      color: var(--color-text-muted);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .booking-widget-trust .badge-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .booking-widget-trust .badge-item svg {
      width: 18px;
      height: 18px;
      color: var(--color-teal);
      flex-shrink: 0;
    }

    .btn-whatsapp {
      background: transparent;
      border: 2px solid #1FAA5A;
      color: #1FAA5A;
      padding: 11px 22px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 0.92rem;
      text-align: center;
      cursor: pointer;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      font-family: var(--font-body);
    }

    .btn-whatsapp:hover {
      background: #1FAA5A;
      color: var(--color-white);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(31, 170, 90, 0.25);
    }

    .btn-whatsapp:active {
      background: #189048;
      border-color: #189048;
      color: var(--color-white);
      transform: translateY(0);
    }

    .btn-whatsapp svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* ========================================
       ACTIVITY PROVIDER CARD (redesigned)
       ======================================== */
    .provider-card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .provider-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(135deg, var(--color-orange-subtle) 0%, var(--color-sand-light) 100%);
      z-index: 0;
    }

    .provider-card-inner {
      position: relative;
      z-index: 1;
    }

    .provider-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--color-orange);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .provider-header {
      display: flex;
      gap: 18px;
      align-items: center;
      margin-bottom: 22px;
    }

    .provider-logo-wrap {
      width: 84px;
      height: 84px;
      border-radius: var(--radius-md);
      background: var(--color-white);
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      flex-shrink: 0;
      border: 1px solid var(--color-border);
    }

    .provider-logo-wrap img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .provider-logo-fallback {
      width: 100%;
      height: 100%;
      background: var(--color-orange-subtle);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--color-orange);
    }

    .provider-meta {
      flex: 1;
      min-width: 0;
    }

    .provider-name {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .provider-rating {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--color-sand-light);
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--color-text);
    }

    .provider-rating svg {
      width: 13px;
      height: 13px;
    }

    .provider-rating .count {
      color: var(--color-text-muted);
      font-weight: 500;
    }

    .provider-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 6px;
    }

    .provider-action-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: var(--color-sand-light);
      border-radius: var(--radius-md);
      color: var(--color-text);
      font-size: 0.9rem;
      font-weight: 600;
      transition: var(--transition-smooth);
      border: 1px solid var(--color-border);
    }

    .provider-action-link:hover {
      background: var(--color-orange-subtle);
      border-color: var(--color-orange);
      color: var(--color-orange);
      transform: translateX(4px);
    }

    .provider-action-link svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--color-orange);
    }

    .provider-action-link:hover svg {
      color: var(--color-orange);
    }

    .provider-action-link .text {
      flex: 1;
    }

    .provider-action-link .arrow {
      width: 16px;
      height: 16px;
      color: var(--color-text-light);
      transition: var(--transition-smooth);
    }

    .provider-action-link:hover .arrow {
      color: var(--color-orange);
      transform: translateX(2px);
    }

    .provider-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding: 12px 24px;
      background: var(--color-orange);
      color: var(--color-white);
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 0.9rem;
      transition: var(--transition-smooth);
      width: 100%;
      justify-content: center;
    }

    .provider-cta:hover {
      background: var(--color-orange-hover);
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }

    /* ========================================
       MINI PROVIDER CAROUSEL (inside provider card)
       ======================================== */
    .provider-mini {
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid var(--color-border);
    }

    .provider-mini-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .provider-mini-head h4 {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-navy);
      margin: 0;
    }

    .provider-mini-head a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--color-orange);
      font-size: 0.82rem;
      font-weight: 700;
    }
    .provider-mini-head a svg { width: 12px; height: 12px; transition: transform 0.3s; }
    .provider-mini-head a:hover svg { transform: translateX(3px); }

    .provider-mini-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: var(--color-orange-light) transparent;
      padding-bottom: 6px;
      -webkit-overflow-scrolling: touch;
    }
    .provider-mini-scroll::-webkit-scrollbar { height: 6px; }
    .provider-mini-scroll::-webkit-scrollbar-track { background: transparent; }
    .provider-mini-scroll::-webkit-scrollbar-thumb {
      background: var(--color-orange-light);
      border-radius: 100px;
    }

    .provider-mini-card {
      flex: 0 0 160px;
      scroll-snap-align: start;
      background: var(--color-cream);
      border-radius: 14px;
      overflow: hidden;
      transition: var(--transition-smooth);
      color: inherit;
      text-decoration: none;
      cursor: pointer;
      display: block;
    }
    .provider-mini-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
    }

    .provider-mini-card .pm-img {
      width: 100%;
      height: 100px;
      background: var(--color-sand);
      overflow: hidden;
    }
    .provider-mini-card .pm-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .provider-mini-card:hover .pm-img img { transform: scale(1.05); }

    .provider-mini-card .pm-body {
      padding: 10px 12px 12px;
    }

    .provider-mini-card .pm-title {
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--color-navy);
      margin-bottom: 6px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .provider-mini-card .pm-price {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--color-orange);
    }

    .provider-mini-empty {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      padding: 8px 0;
    }

    /* "See more from this provider" inline button (in info row) */
    .provider-inline-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: var(--color-orange-subtle);
      color: var(--color-orange);
      border-radius: var(--radius-pill);
      font-size: 0.78rem;
      font-weight: 700;
      margin-left: 8px;
      transition: var(--transition-smooth);
      border: 1px solid var(--color-orange-light);
    }

    .provider-inline-btn:hover {
      background: var(--color-orange);
      color: var(--color-white);
      border-color: var(--color-orange);
    }

    .provider-inline-btn svg {
      width: 12px;
      height: 12px;
    }

    /* ========================================
       MOBILE STICKY BOOKING BAR
       ======================================== */
    .mobile-book-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 950;
      background: var(--color-white);
      box-shadow: 0 -4px 24px rgba(45, 42, 38, 0.10);
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      display: none;
      align-items: center;
      gap: 14px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-book-bar.visible {
      transform: translateY(0);
    }

    .mobile-book-bar .price-block {
      flex: 1;
      min-width: 0;
    }

    .mobile-book-bar .price-block .from {
      font-size: 0.7rem;
      color: var(--color-text-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .mobile-book-bar .price-block .amount {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--color-orange);
      line-height: 1.1;
    }

    .mobile-book-bar .btn-book-mobile {
      background: var(--color-orange);
      color: var(--color-white);
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 0.92rem;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      flex-shrink: 0;
      font-family: var(--font-body);
    }

    .mobile-book-bar .btn-book-mobile:hover {
      background: var(--color-orange-hover);
      box-shadow: var(--shadow-glow);
    }

    @media (max-width: 1024px) {
      .booking-widget-wrap {
        position: static;
      }
      .mobile-book-bar {
        display: flex;
      }
      body {
        padding-bottom: 80px;
      }
    }

    /* ========================================
       CROSS-SELL RESTAURANTS
       ======================================== */
    .cross-sell-section {
      padding: 80px 0;
      background: var(--color-sand-light);
    }

    .cross-sell-section h2 {
      font-size: 2rem;
      color: var(--color-navy);
      margin-bottom: 12px;
      text-align: center;
    }

    .cross-sell-section > .container > p {
      color: var(--color-text-muted);
      text-align: center;
      margin-bottom: 40px;
    }

    .cross-sell-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }

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

    .cross-sell-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
      cursor: pointer;
    }

    .cross-sell-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .cross-sell-image {
      width: 100%;
      height: 200px;
      background: var(--color-sand);
      overflow: hidden;
    }

    .cross-sell-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cross-sell-body {
      padding: 20px;
    }

    .cross-sell-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 8px;
    }

    .cross-sell-meta {
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    /* ========================================
       APP CTA BANNER
       ======================================== */
    .app-cta-banner {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 40%, #C45A15 100%);
    }

    .app-cta-banner .container {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .app-cta-banner h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 16px;
    }

    .app-cta-banner p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 300;
      margin-bottom: 40px;
    }

    .app-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .app-store-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: white;
      padding: 14px 28px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .app-store-link:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
    }

    .app-store-link svg {
      width: 28px;
      height: 28px;
    }

    .app-store-text {
      text-align: left;
    }

    .app-store-label {
      font-size: 0.65rem;
      font-weight: 400;
      opacity: 0.8;
      display: block;
    }

    .app-store-name {
      font-size: 1rem;
      font-weight: 700;
      display: block;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--color-navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 80px 0 40px;
      margin-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

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

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

    .footer-brand p {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 300px;
    }

    .footer-logo img {
      height: 32px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .footer h5 {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--color-white);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer ul {
      list-style: none;
    }

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

    .footer ul a {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.6);
      transition: var(--transition-smooth);
    }

    .footer ul a:hover {
      color: #F4A261;
      padding-left: 4px;
    }

    .footer-store-btns {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-store-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #243656;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 10px 16px;
      border-radius: 12px;
      color: var(--color-white);
      font-size: 0.78rem;
      transition: var(--transition-smooth);
      text-decoration: none;
    }

    .footer-store-btn:hover {
      background: #2E4268;
      border-color: rgba(255, 255, 255, 0.2);
    }

    .footer-store-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 0.82rem;
      font-weight: 300;
    }

    /* ========================================
       LIGHTBOX
       ======================================== */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .lightbox-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    /* ========================================
       SKELETON LOADING
       ======================================== */
    .skeleton {
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
    }

    @keyframes loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ========================================
       ERROR STATE
       ======================================== */

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.4);
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
      z-index: 10;
    }
    .lightbox-nav:hover { background: rgba(0,0,0,0.7); }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }

    .error-state {
      text-align: center;
      padding: 100px 24px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .error-state h2 {
      font-size: 2rem;
      margin-bottom: 16px;
      color: var(--color-text);
    }

    .error-state p {
      color: var(--color-text-muted);
      margin-bottom: 32px;
    }

    @media (max-width: 768px) {
      .gallery-mosaic, .gallery-mosaic-skeleton {
        height: 180px;
        gap: 4px;
      }

      .gallery-mosaic-hero, .gallery-mosaic-skeleton .skeleton-hero {
        border-radius: 10px;
      }

      .gallery-mosaic-thumb, .gallery-mosaic-skeleton .skeleton-thumb {
        border-radius: 6px;
      }

      .gallery-mosaic-thumb:nth-child(3) {
        display: none;
      }

      .activity-name-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .activity-detail-logo {
        margin-bottom: 16px;
      }

      .activity-meta {
        flex-direction: column;
        gap: 16px;
      }

      .app-cta-banner h2 {
        font-size: 1.8rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
    /* Floating App CTA — orange, elegant */
    .floating-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 100;
      width: 320px;
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 100%);
      border-radius: 20px;
      padding: 16px 18px 14px;
      color: white;
      box-shadow: 0 20px 50px rgba(232, 118, 45, 0.35), 0 4px 14px rgba(45, 42, 38, 0.1);
      opacity: 0;
      transform: translateY(24px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: visible;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 12px;
      row-gap: 2px;
    }
    .floating-cta::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 140px; height: 140px;
      background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
      pointer-events: none;
      border-radius: 50%;
    }
    .floating-cta.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .floating-cta-close {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--color-orange);
      color: var(--color-orange);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      padding: 0;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.15);
    }
    .floating-cta-close:hover { background: var(--color-orange); color: white; }
    .floating-cta-close svg { width: 12px; height: 12px; }
    .floating-cta-icon {
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.22);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      grid-column: 1;
      grid-row: 1 / span 2;
      align-self: center;
    }
    .floating-cta-icon svg { width: 22px; height: 22px; }
    .floating-cta-title {
      position: relative;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.25;
      color: white;
      margin-bottom: 0;
      grid-column: 2;
      grid-row: 1;
      align-self: end;
    }
    .floating-cta-subtitle {
      position: relative;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 300;
      margin-bottom: 10px;
      line-height: 1.45;
      grid-column: 2;
      grid-row: 2;
      align-self: start;
    }
    .floating-cta-buttons { position: relative; display: flex; gap: 8px; grid-column: 1 / -1; grid-row: 3; margin-top: 4px; }
    .floating-cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      color: var(--color-orange);
      padding: 10px 12px;
      border-radius: 11px;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .floating-cta-btn:hover { background: white; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); }
    .floating-cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    @media (max-width: 768px) {
      .floating-cta {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        padding: 10px 12px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        color: white;
        box-shadow: 0 10px 30px rgba(232, 118, 45, 0.35), 0 4px 12px rgba(45, 42, 38, 0.1);
      }
      .floating-cta-icon {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.22);
        color: white;
      }
      .floating-cta-icon svg { width: 18px; height: 18px; }
      .floating-cta-title { font-size: 0.88rem; margin-bottom: 0; flex: 1; min-width: 0; color: white; }
      .floating-cta-subtitle { display: none; }
      .floating-cta-buttons { flex-shrink: 0; gap: 6px; }
      .floating-cta-close {
        top: -8px;
        right: -8px;
        transform: none;
        width: 24px;
        height: 24px;
        background: white;
        color: var(--color-orange);
        border: 2px solid var(--color-orange);
        box-shadow: 0 2px 8px rgba(45, 42, 38, 0.15);
      }
      .floating-cta-close:hover { background: var(--color-orange); color: white; }
      .floating-cta-btn {
        padding: 8px;
        font-size: 0;
        gap: 0;
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-orange);
        min-width: 34px;
      }
      .floating-cta-btn:hover { background: white; }
      .floating-cta-btn span { display: none; }
      .floating-cta-btn svg { width: 18px; height: 18px; }
    }
    /* === KOHME MOBILE LAYOUT FIXES === */
    html, body { overflow-x: clip; max-width: 100%; }
    .hero { overflow: clip; }
    .btn, .btn-nav, .btn-primary, .btn-secondary { white-space: nowrap; }
    .nav-right { flex-wrap: nowrap; min-width: 0; }
    @media (max-width: 480px) {
      .btn-nav { padding: 9px 16px; font-size: 0.82rem; }
      .nav-right { gap: 10px; }
      .container { padding-left: 20px; padding-right: 20px; }
    }
    /* === /KOHME MOBILE LAYOUT FIXES === */

    /* === Mobile menu lang toggle (T-LANG-001 2026-04-30) === */
    .mobile-menu .lang-toggle {
      display: flex; margin: 0 0 20px; align-self: flex-start;
      background: var(--color-sand); border-radius: var(--radius-pill);
      padding: 4px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      width: fit-content;
    }
    .mobile-menu .lang-toggle a {
      padding: 6px 16px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth); border-bottom: none;
      font-size: inherit; font-weight: inherit; letter-spacing: inherit;
      display: inline-block;
    }
    .mobile-menu .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    /* === Partnership floating widgets (T-LANG-001 / T-CONTACT-001 2026-04-30) === */
    .partner-floats {
      position: fixed; right: 20px; bottom: 20px; z-index: 1000;
      display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
      pointer-events: none;
    }
    .partner-floats > * { pointer-events: auto; }
    .floating-lang {
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
      display: flex; padding: 4px; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.04em;
    }
    .floating-lang a {
      padding: 6px 14px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth);
    }
    .floating-lang a.active { background: var(--color-text); color: var(--color-cream); }
    .floating-lang a:hover:not(.active) { color: var(--color-text); }
    .floating-contact { position: relative; }
    .floating-contact-toggle {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--color-cream); cursor: pointer;
      border: 2px solid rgba(37, 211, 102, 0.4);
      display: flex; align-items: center; justify-content: center;
      color: #1FAE54; box-shadow: var(--shadow-card);
      transition: var(--transition-smooth); padding: 0;
    }
    .floating-contact-toggle:hover {
      border-color: #25D366; transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
    }
    .floating-contact-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }
    .floating-contact[aria-expanded="true"] .floating-contact-toggle {
      border-color: #25D366; background: #25D366; color: white;
    }
    .floating-contact-panel {
      position: absolute; right: 0; bottom: calc(100% + 12px);
      min-width: 240px; padding: 8px;
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-elevated);
      display: flex; flex-direction: column; gap: 4px;
      opacity: 0; transform: translateY(8px) scale(0.95);
      transform-origin: bottom right; pointer-events: none; visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0s linear 0.25s;
    }
    .floating-contact[aria-expanded="true"] .floating-contact-panel {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: auto; visibility: visible; transition-delay: 0s;
    }
    .floating-contact-panel a {
      display: flex; align-items: center; gap: 12px; padding: 10px 12px;
      border-radius: var(--radius-sm); text-decoration: none;
      font-size: 0.92rem; font-weight: 700; color: var(--color-text);
      transition: var(--transition-smooth); line-height: 1.2;
    }
    .floating-contact-panel a:hover { background: var(--color-orange-subtle); }
    .floating-contact-panel a .ico {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; color: white;
    }
    .floating-contact-panel a .ico svg { width: 20px; height: 20px; flex-shrink: 0; }
    .floating-contact-panel a.wa .ico { background: #25D366; }
    .floating-contact-panel a.line .ico { background: #06C755; }
    .floating-contact-panel a small {
      display: block; font-weight: 500; color: var(--color-text-muted);
      font-size: 0.76rem; margin-top: 2px;
    }
    @media (max-width: 480px) {
      .partner-floats { right: 14px; bottom: 14px; gap: 10px; }
      .floating-lang { font-size: 0.74rem; padding: 3px; }
      .floating-lang a { padding: 5px 12px; }
      .floating-contact-toggle { width: 52px; height: 52px; }
      .floating-contact-panel { min-width: 220px; }
    }

