
    :root {
      --bg-main: #0a0c0e;
      --bg-sidebar: #050607;
      --border-color: rgba(255, 255, 255, 0.12);
      --text-main: #f3f4f6;
      --text-muted: #c4c4c4;
      --accent: #ffffff;
      
      --font-serif: 'Instrument Serif', Georgia, serif;
      --font-sans: 'Montserrat', sans-serif;
      --font-script: 'Petit Formal Script', cursive;
      --sidebar-width: 350px;
      --navbar-width: 300px;
      --placebar-width:20dvw;
      --bg-color: #06080a;
      --bg-dark: #070708;
  --card-bg: #0d0d0e;
  --border-color: #1f1f22;
  --text-primary: #ffffff;
  --text-muted: #8e8e93;
  --accent-blue: #5879cd;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: var(--font-sans);
      display: flex;
       height: 100dvh; 
  display: flex;
  flex-direction: column;

    }
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevents viewport scrolling entirely */
  margin: 0;
  padding: 0;
}


    .serif {
      font-family: var(--font-serif);
      font-weight: 400;
    }

    .app-container {
      display: flex;
      width: 100%;
      height: 100dvh;
      overflow: hidden;
    }

    /* Sidebar */



.section-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8e8e93;
  font-weight: 600;

}
.section-title2 {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    /* font-family: var(--font-serif); */
    font-size: .9rem;
    margin-top: 0;
    border-top: 1px solid #ffffff0f;
    padding-top: 2rem;
    width: 100%;
    margin-bottom: 1rem;

}

.host-card {
   
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 16px;
    padding: 0;
    color: #ffffff;
  
}

.host-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.host-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}



.host-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

.host-role {
  font-size: 12px;
  color: #71717a;
  line-height: 1.3;

}



.host-bio {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #a1a1aa;
  flex: 1;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
 
}

.host-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.connect-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.connect-btn:hover {
  opacity: 0.85;
}

.btn-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}
.sidebar-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: none; /* Display on mobile screens if needed */
  transition: color 0.2s;
}

.sidebar-close-btn:hover {
  color: #fff;
}

/* Scrollable Content Container */
.sidebar-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.75rem;
  scrollbar-width: none;
}

.sidebar-scroll-content::-webkit-scrollbar {
  display: none;
}

/* Section Labels */
.nav-section {
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0.75rem 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  opacity: 0.8;
}

.section-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 10px;
}

/* Section Dividers */
.sidebar-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0.75rem 1rem 0.75rem;
}

/* Navigation Links */




/* White Indicator Bar on Left of Active Item */


/* Item Count Badges */
.link-count {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.link-count.highlight {
  background: #ffffff;
  color: #000000;
  border: none;
}
.tt-widget-avatar{
  background: #000;
}
/* Sidebar Footer */


/* Translucent backdrop attached inside sidebar */

.quote-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.quote-box i {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  display: block;
  opacity: 0.5;
}

.quote-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-style: italic;
}

.mountain-graphic {
  width: 100%;
  height: 20px;
  color: var(--text-muted);
  opacity: 0.2;
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.social-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

    .brand-logo {
      font-family: var(--font-script);
      font-size: 2.2rem;
      color: #fff;
      text-decoration: none;
      margin-bottom: 1rem;
      display: block;
      text-align: center;
      text-transform: lowercase;
    }

    .nav-list {
         list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      transition: all 0.2s;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--accent);
    }

    .sidebar-footer {
      margin-top: auto;
      padding-top: 2rem;
    }

    .quote-box i {
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 0.5rem;
      display: block;
    }

    .quote-box p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .mountain-graphic {
      width: 100%;
      opacity: 0.25;
      margin: 1.5rem 0 1rem 0;
    }

    .social-links {
      display: flex;
      gap: 1.2rem;
    }

    .social-link {
      color: var(--text-muted);
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .social-link:hover {
      color: var(--accent);
    }

    /* Main Wrapper */
    .main-wrapper {
       margin-left: 0;
   
    transition: margin-left 0.3s ease;
    width: 100dvw;
   
    top: 0;
    position: relative;
     
    }
    .sidebar.active {
     transform: translateX(0%);
}


.tt-widget-btn{
       width: 100%;
    background: linear-gradient(135deg, #3e47ff 0%, #3e47ff 100%);
    border: none;
    /* border-radius: 10px; */
    padding: .4rem;
    color: #ffffff;
    font-size: .7rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 4px;

    text-transform: uppercase;

}
.tripSvgW{
      border-radius: 12px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}
.tripSvg{
     font-family: var(--font-script);
    font-size: 3rem;

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .75;
   
}
.tt-widget-trip-body img {
    opacity: 0;
    transition: all 0.2s;
}
    .tt2 {
      font-family: var(--font-script);
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    display: flex;
    align-items: center;
    BORDER-RADIUS: 6PX;
    width: 5rem;
    height: 5rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ytBtn{
      white-space: nowrap;
}
    .tt{
            font-family: var(--font-script);
    font-size: 1.25rem;
    cursor: pointer;
  
  
    display: flex;
    align-items: center;
    justify-content: center;
    BORDER-RADIUS: 6PX;
    white-space: nowrap;

    }
    .tt3{
        font-family: var(--font-script);
    font-size: 1.25rem;
    cursor: pointer;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    BORDER-RADIUS: 6PX;
    width: 3rem;
    height: 3rem;

    }

    /* Top Navigation */
    .top-nav {
    display: grid;
    align-items: center;
  
    padding: 0 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: #00000000;
    height: 7dvh;
    position: fixed;
    transition:all 0.3s ease, backdrop-filter 0.3s ease;
    grid-template-columns: calc(300px) auto max-content;
    }
    /* Add transition to your existing .top-nav CSS block */


/* Background applied when scrolling down */
.top-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.80); /* Dark background matching your theme */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

}
.placeDispNotice{
      width: 2rem;
    height: 2rem;
    border-radius: 4px;
    overflow: hidden;
}
.placeDispNotice img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}
#yourTripBtn{
  margin-left: 1rem;
  cursor: pointer;
      padding: .4rem;
    background-color: #22256a29;
    border-radius: 8px;
    transition: all 0.2s;
}

#yourTripBtn:hover{
  background-color: #3e47ff;


}
    .nav-tabs {
     display: flex;
    gap:.5rem;
    list-style: none;
 transform: translateX(-6px);
    align-items: center;
    }
    /* Minimalist Transparent Scrollbar (Thumb Only) */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* Hide top/bottom arrows completely */
::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* Visible Thumb */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

   

    .tab-link:hover, .tab-link.active {
      color: #fff;
    }

.sidebar-open .top-nav{
    margin-left: 0;
    background: #000;
}
/* Ensure the tab link aligns items horizontally */
.tab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    text-transform: uppercase;
    font-size: .9rem;
}

/* Main Badge Dot */
.trip-badge {
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--fa-font-regular);
    font-size: 8px;
    font-weight: 400;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 50%;
    line-height: normal;
    letter-spacing: normal;
        text-shadow: 2px 2px 2px black;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: none;
}

/* Glowing Pulsing Aura */
.badge-pulse {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:#3e47ff;
  z-index: -1;
 
}
.static-link{
  color: white;
}

a{
 
    text-decoration: none;
}

/* Hide badge state when counter is 0 */
.trip-badge.hidden {
  display: none;
}
    .user-actions {
   display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 2rem;
    }



    .profile-avatar {
      width: calc(36px );
    height: calc(36px );
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #565656;
    }

    /* Hero Section */
    .hero {
      position: relative;
    
    padding: 0 1.5rem;
    height: 80dvh;
    display: flex;
    align-items: flex-end;
    background-image: url(https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2000&q=80);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    }
    .subhero{
    position: relative;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    min-height: 36dvh;
    
  

    }
    .subhero-content{
            padding: 3rem 1.5rem;
    padding-top: 3rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    position: relative;
    display: grid;
    align-items: center;
    }
    .subhero-content .hero-title{
        font-size: 3rem;
    }
      
    .placeheader{
      position: relative;
    }
    .placehero{
    position: relative;
  
    padding: 0 3rem;
    height: 35dvh;
    display: flex;
    align-items: center;
    padding-left: 1.5rem; 
     background-image: url(https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2000&q=80);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    }


    .hero-content {
    max-width: 480px;
    margin-top: 0;
    position: relative;
       margin-bottom: 22dvh;
    text-shadow: 2px 2px 6px #0000007a;
    }

    .tagline {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.8rem;
      display: block;
          min-width: 13rem;
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: 5.5rem;
      line-height: 0.9;
      margin-bottom: 1.5rem;
      color: #fff;
      font-weight: 400;
      position: relative;
          text-transform: capitalize;
    }

    .hero-title::after {
      content: '';
      display: block;
      width: 45px;
      height: 1px;
      background: #fff;
      margin-top: 1rem;
    }

    .hero-description {
      color: #d1d5db;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
      font-weight: 300;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background-color: #fff;
      color: #000;
      padding: 0.75rem 1.6rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.85rem;
      transition: all 0.5s;
          margin-top: 2rem;
              opacity: 1;
              
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background-color: #f3f4f6;
          opacity: 1 !important;
    }

    .social-proof {
      display: flex;
      align-items: center;
      gap: 1rem;
   
    }

    .avatar-group {
      display: flex;
    }

    .avatar-group img {
      width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
    }

    .avatar-group img:first-child {
      margin-left: 0;
    }

    .proof-text {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .proof-text span {
      color: #fff;
      font-weight: 600;
      display: block;
    }

    /* Featured Card Right */
    .featured-card {
      background: rgba(15, 18, 21, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1.5rem;
      width: 440px;
      position: relative;
      z-index: 2;
      display: none;
    }

    .featured-info {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .featured-label {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .featured-title {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      line-height: 1.05;
      margin-bottom: 0.8rem;
      color: #fff;
      font-weight: 400;
    }

    .featured-author {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: auto;
      line-height: 1.4;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      padding: 0.55rem 1.1rem;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.75rem;
      width: fit-content;
      margin-top: 1.5rem;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }

    .featured-img {
      width: 140px;
      height: 190px;
      border-radius: 8px;
      object-fit: cover;
    }

    .featured-controls {
      position: absolute;
      bottom: -3rem;
      left: 0;
      display: flex;
      gap: 0.75rem;
    }

    .carousel-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: rgba(255, 255, 255, 0.03);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.75rem;
    }

    .carousel-pagination {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1.5rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      display: none;
    }

    .pagination-num {
      cursor: pointer;
      padding-bottom: 2px;
    }

    .pagination-num.active {
      color: #fff;
      border-bottom: 1px solid #fff;
    }

    /* Sections */
    .section {
       margin-bottom: 1rem;
    }
     .containsGrid {
         margin-top: -3rem;
         position: relative;
         width: 100dvw;
    }
    .moreStories .place-card{
        max-height:unset !important;
    max-width: unset !important;
    }
    .place-card{
           max-height: 150px;
    max-width: 150px !important;
    }
    .place-card .story-title{
      text-transform: capitalize !important;
    }
    .containsGrid .grid-trending{
      padding-bottom: 0 !important;
    }


    .section-header {
       display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 1.5rem;
    position: relative;
    margin-bottom: -2.5rem;
        width: calc(100% - 3rem);
    }



    .view-all {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      display: none;
    }

    /* Collection Grid */




    .card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: all 0.2s;

    }

    .card-overlay {
       position: absolute;
    inset: 0;
       background: linear-gradient(rgb(0 0 0 / 17%) 0%, rgb(0 0 0 / 43%) 70%, rgb(0 0 0 / 86%) 100%);
    opacity: .85;
    }

    .collection-content {
      position: relative;
     
    }

    .collection-title {
      font-family: var(--font-serif);
      color: #fff;
      font-size: 1.25rem;
      line-height: 1.1;
      margin-bottom: 0.3rem;
      font-weight: 400;
    }

    .collection-count {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .arrow-icon {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    top: .5rem;
    right: .5rem;
    }

    /* Trending Grid */


    .bookmark-btn {
      position: absolute;
      top: 0.8rem;
      right: 0.8rem;
     
      background: none;
      border: none;
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      cursor: pointer;
    }
        .heart-btn {
      position: relative;
    
      background: none;
      border: none;
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      cursor: pointer;
    }
    

    .story-content {
      position: relative;
      z-index: 3;
      margin-top: auto;
    }

    .story-title {
      font-family: var(--font-serif);
      color: #fff;
      font-size: 1.35rem;
      line-height: 1.15;
    
      font-weight: 400;
      text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .story-location {
      font-size: 0.7rem;
    color: #ffffff;
    
          text-transform: capitalize;
    }

    .story-meta {
      display: none;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.6rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

.story-type{
      background: #3e47ff;
    padding: .25rem;
    position: absolute;
    top: 1rem;
    font-size: .7rem;
    text-transform: uppercase;
   
}
.author-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
       
}

    .author-name {
       font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
    margin: auto;
    margin-left: 0;
    }

    .read-time {
      font-size: 0.65rem;
      color: var(--text-muted);
    }
    /* Collection Grid (Horizontal Scroll) */
.grid-collections {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: 3rem;
  padding-right: 3rem;
  scroll-padding-inline: 3rem;
  scrollbar-width: none;
      padding: 3rem 3rem;
      padding-bottom: 1rem;
}

.grid-collections::-webkit-scrollbar,
.grid-trending::-webkit-scrollbar {
  display: none; /* Hide scrollbars for Chrome/Safari */
}

.collection-card {
  position: relative;
  width: 220px; /* Adjusted card width */
  height: 160px;
  flex-shrink: 0; /* Prevents card from squishing */
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  cursor: pointer;
  scroll-snap-align: start;
}

/* Trending Grid (Horizontal Scroll) */


.story-card {
  position: relative;
 width: 100%;
  max-width: 100%;
  height: 200px;
  flex: unset;                  /* Clears flexbox sizing constraints */
 
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  background: #000;

 
}
.subhero-grid-wrapper .story-card {
      max-width: 200px;
}
.section.containsGrid:has(.story-card:hover) .gallery-arrow {
  z-index: 10 !important; /* Higher than card's hover z-index (2) */
}
.moreStoriesWrap .story-card{
   height: 200px !important;
}
.grid-trending 
.story-card {
  position: relative;
 width: 30dvw;
  max-width: 250px;
  height: 300px;
  flex: unset;                  /* Clears flexbox sizing constraints */
 min-width: 150px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
      scroll-snap-align: start;
    flex-shrink: 0;
 
}
/* 1. Base smooth transitions & relative positioning */

/* Common Hover Shadow & Border Glow */
.collection-card:hover,
.story-card:hover {
  z-index: 1; /* Bring hovered card above adjacent cards */
 
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.8),
    0 0 25px 2px rgba(0, 0, 0, 0.08); /* Ambient soft glow */
   
  transform: scale(1.1)  translateY(0%) translateX(-4%);
}



/* 3. MIDDLE CARDS: Scale Upwards Only */


/* 4. RIGHT CARD: Scale & Shift Left */

/* 1. Parent wrapper: Allow scaling and shadows to overflow without clipping */
.collections-grid,
.stories-grid,
.grid-container { /* Replace with your actual parent grid/flex container selector */
  overflow: visible !important;
  padding: 20px 10px; /* Gives cards room to expand up/down/sides without hitting container edges */
  margin: -20px -10px; /* Counteracts padding so layout alignment stays precise */
}

/* 2. Main Section / Row Wrapper: Ensure parent sections don't clip horizontal overflow */
section,
.section-wrapper,
.main-content {
  overflow: visible;
  position: relative;
}

/* 3. Card Base: Ensure smooth hardware acceleration */
.collection-card,
.story-card {
  position: relative;
 
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0, 0, 0, 1);
  will-change: transform;
   transform-origin: left center;
}
.place-details-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    width: 100dvw;
    color: white;
    width: 100dvw;
    gap: 1.5rem;
    height: calc(93dvh);
    margin-top: 7dvh;
}
.cswWrap{
     width: calc(100dvw - 300px - 4px);
    border-left: 4px solid #00000078;
  
    position: relative;


   
}





.back-link:hover {
  color: #ffffff;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
}





.gallery-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #fff;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.thumb-item {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  opacity: 0.9;
}

.thumb-item.active {
  border-color: #ffffff;
}

.thumb-item.more-thumbs .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
     
    
}

/* ================= RIGHT INFO PANEL ================= */
.place-info-panel {
    width: 100%;
    /* padding: 3rem; */
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  
    scrollbar-width: none;
    POSITION: relative;
    /* RIGHT: 0; */
  min-width: 300px;
  position: relative;
  

}
.place-info-p{
   
    padding: 2rem 1.5rem;
      width: calc(100% );
    gap: 1rem;
    padding-top: 1rem;
        padding-bottom: 0;
        padding-right: 0;
    
}

.place-info-panel::-webkit-scrollbar { display: none; }

.panel-actions-bar {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin: auto;
    margin-right: 0;
}

.action-icon-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.action-icon-btn:hover { color: #fff; }

.place-category-tags {
 font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 0;
    margin: .5rem 0;
    margin-top: 0;
}

.place-hero-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
        text-transform: capitalize;
}

.author-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
      margin: 1rem 0;
    margin-top: .5rem;
}





.meta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255,1);
      opacity: .75;
}

.place-stats-row {
    display: none;
    gap: 1rem;
    padding: 0.75rem 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    margin: auto;
    margin-right: 0;
    opacity: 1;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-val { font-weight: 300; color: #fff; }
.stat-lbl { color: rgba(255, 255, 255, 0.45);display: none; }

.place-description {
     font-size: 1rem;
   
    color: rgba(255, 255, 255, 1);
    margin: 0;
    opacity: .75;
   
}
.story-description {
    font-size: .8rem;
    
    color: rgba(255, 255, 255, 1);
    margin: 0;
    width: 80%;

    opacity: .75;
}

.place-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.visibleOnPortrait{
      display: flex;
    flex-direction: column;
    /* padding: 2rem 1.5rem; */
    /* height: calc(100% - 2rem); */
    gap: 1rem;

}
.panel-divider {
    height: 1px;
    background: rgb(255 255 255 / 0%);

}
.gmap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    background: #0e0e0e;
    /* max-height: 400px; */
    opacity: 0;
    transition: all 0.2s;

}


.section-heading {
  font-size:1rem;

  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
      margin: 2rem 0 .5rem 0;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: .9;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.highlights-list i {
    color: rgb(255 255 255 / 42%);
    font-size: .7rem;
    width: .5rem;
}
.edgeShadow{
  background: rgba(0, 0, 0, 10.08);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 49%) 52%, rgb(0 0 0 / 83%) 100%);
position: fixed;
top: 0;
height: 100%;
width: 40px;
rotate: 180deg;
opacity: .75;
pointer-events: none;

}
.edgeShadow.left{
  
  
     background: linear-gradient(90deg, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 49%) 52%, rgb(0 0 0 / 1%) 100%);

    right: 0 !important;
  rotate: 180deg !important;
  

}

/* Location Card */
.location-map-card {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
     background: #000;

  border: 2px solid transparent;
  transition: all 0.2s;
}

.map-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
}

.map-overlay-content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.location-map-card:hover{
    border: 2px solid white !important;
}
.mapFullscreen{
  position: fixed;
  top: 0;

}

.map-pin-box {
      display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgb(0 0 0 / 86%);
    backdrop-filter: blur(6px);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.map-pin-box i { color: #fff; font-size: 0.9rem; }
.pin-title { font-size: 0.75rem; font-weight: 600; color: #fff; }
.pin-sub { font-size: 0.65rem; color: rgba(255, 255, 255, 0.5); }

.map-compass-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.view-map-btn {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-map-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* CTA Footer Group */
.panel-cta-group {
    display: flex;
    gap: 0.75rem;
    /* margin-top: 0.5rem; */
   
    width: 100%;
    margin: 0;
    position: relative;
    font-size: 1.25rem;
       margin: 1rem 0;
           margin-bottom: 0;
}
.saveforlater{
    background-color: transparent !important;
    border: 1px solid #ffffff21 !important;
    opacity: .5 !important;
    font-weight: 400;
}

.primary-white-btn,
.outline-dark-btn {
  flex: 1;
  padding: 0.8rem 0.5rem;
  border-radius: 4px;
  font-size:.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.primary-white-btn {
    background: #3e47ff;
    color: #ffffff;
    border: none;
   
}
.place-gallery-container-wrap{
  position: relative;
}

.primary-white-btn:hover {
    background: #e2e8f0;
    color: #3e47ff;
}

.outline-dark-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.commentsWrap{
  display: none;
}

.outline-dark-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}
.moreStories{
  padding: 0;
}

/* Responsive collapse */
@media (max-width: 992px) {
  .place-details-hero {
    flex-direction: column;
    height: max-content !important;
  }
  .place-info-panel {
    width: 100%;
    max-height: none;
  }
  #readmoreplace{
     grid-template-rows: 1fr; /* Open by default */
  }

 
}
@media (max-width: 1400px) {


  .rhsPlace .section-header{
      margin-top: 0 !important;
  }
   #readmoreplace{
     grid-template-rows: 1fr; /* Open by default */
  }

}
@media (max-width: 500px) {
  .mainOverlayWrap{
      bottom: 10dvw !important;
  }
  #userDisp{
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
  .bottom-bar{
    display: grid !important;
  }
  .story-card:hover {
  z-index: 1; /* Bring hovered card above adjacent cards */
 
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.8),
    0 0 25px 2px rgba(0, 0, 0, 0.08); /* Ambient soft glow */
   
  transform: scale(1)  translateY(0%) translateX(0%) !important;
}
  .subhero-content{
    padding-bottom: 0 !important;
  }
    .subhero{
      display: block !important;
    }
  .sort-wrapper{
    padding: 1rem 1.5rem !important;
  }

  .sidebar-tabs{
    display: none !important;
  }
  .moreStoriesWrap{

  display: block !important;
}
  .storiesTitle{
    position: relative !important;
    top: auto !important;
  margin-top: 1rem !important;
  display: block !important;
  }
  .bannerskrim2{
        background: radial-gradient(circle, rgb(0 0 0 / 62%) 0%, rgb(0 0 0 / 72%) 33%, rgba(0, 0, 0, 1) 100%) !important;
  }
  .backdrop{
    display: none !important;
  }
  .mediaSlide.active-thumb{
    border: 0 !important;
    
  }
  .rhs{
        height: calc(80dvh - 8rem) !important;
  }


  .comment-item{
        padding: 1rem;
  
  
    border-radius: 10px;
             /* Sets card width and prevents shrinking */
    width: calc(100% - 3rem);              /* Fallback width */
  

    padding: 1rem;
   
    border-radius: 10px;
    box-sizing: border-box;
    height: max-content;
        width: calc(100% - 3rem) !important;
    margin-left: 1.5rem;
  }
  .comment-input-row{
        width: 100% !important;
        padding:1rem 1.5rem !important;
  }

  .story .csw{
        width: calc(100%);
    min-width: 0;
    position: relative !important;
  padding-bottom:  0;

    left: unset !important;
    bottom: unset !important;
    height: 100%;
  
  }
  .csw{
    padding-top:  0 !important;
  }
  .commentsWrap{
    display: block;
            margin-top: 1rem;
  }
  .edgeShadow{
    display: none !important;
  }

  .gallery-dots{
    display: flex !important;
  }
  .breadcrumb{
    display: none !important;
  }
  .mediaSlide{
max-width: 100dvw !important;

max-height: 80dvh !important;
width: 100dvw !important;

border-radius: 0 !important;
height: unset !important;

  }
  .tt-inline-calendar-area{
    height: 90dvw !important;
  }
  .mediaWrap{
    width: 100dvw !important;
    scroll-snap-type: x mandatory !important;
  }
  .story .mainContentWrap {
    position: relative !important;
    bottom: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
}
  .mainContentWrap{
         width: 100% !important;
        margin-top: 1rem !important;
      
  
  }
  .place-gallery-container{
    border: 0 !important;
    height: auto !important;
  }
  .section-title{
         
        margin-top: 1rem;
        margin-bottom: 0 !important;
  }
  .moreStoriesWrap .section-title{
    margin-left: 1.5rem !important;
  }
  .storyContentWrap{
    padding: 1.5rem !important;
    width: 100% !important;
  }
  .cswWrap{
    width: 100dvw !important;
    height: max-content !important;
        background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   
  
   
  }
  .place-info-p{
    padding: 2rem 1.5rem !important;

  }
  .csw{
    width: 100dvw !important;
  }
.gallery-arrow{
  display: none !important;
}
  .grid-trending {
    padding: 1.5rem !important;
  }
  .section-heading{
        margin: 2rem 0 !important;
    margin-bottom: 1rem !important;
  }
  .place-info-panel {
    width: 100%;
    max-height: none;
    height: max-content !important;
  }

  .app-side-overlay{
          max-height: 93dvh !important;
        width: 100dvw !important;
            transform: translateY(100%);
  }
  .app-side-overlay-wrapper{
    width: 100dvw !important;
    left: 0 !important;
            top: 7dvh !important;
  }
  .bannerskrimPicture{
      background: linear-gradient(180deg, rgb(0 0 0 / 40%) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%, rgb(0 0 0 / 0%) 89%, rgb(0 0 0 / 26%) 100%);
  }
  .user-actions{
    display: none;
  }
  .gallery-bottom-bar{
    position:  relative !important;
        margin:0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        background: transparent !important;
                     width: 100dvw !important;

  }
  .cswWrap{
    border-left: 0 !important;
  }
  .mediaSlide{
    border: 0 !important;
  }
  .authorWrap{
      display: block !important;
  }
  .story-description{
    margin-top: 1rem !important;
  }

 .section-header{
    margin-bottom: -1rem !important;
        margin-top: 3rem !important;
  }
  .rhsPlace .section-header {
     margin-bottom: 0 !important;
  }
  .place-details-hero{
    grid-template-columns:none !important;
    gap: 0 !important;
  }
  .hideInPortrait{
    display: none !important;
  }
  .mcw{
    margin: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  .place-gallery-container{
    margin-top: 0 !important;
    border-radius: 0 !important;
  }
  .grid-trending .story-card{
    width: 65dvw !important;
  }
  .story .cswWrap{
    background: transparent !important;
  }
   .moreStories .grid-trending .story-card{
    width: calc(100dvw - 3rem) !important;
  }
  .visibleInPortrait{
    display: flex !important;
  }
  .rhsPlace{
    grid-column: unset !important;
    width: 100% !important;
    height: max-content !important;
    overflow: unset !important;
  }
  .gallery-main-img{
    width: 100dvw !important;
    max-height: unset !important;
  }
  .comments-section{
    padding-top: 0 !important;
  }
  .hideInPortraitPlaceInfo{
    height: 0% !important;
    overflow: hidden;
   display: none;
    content-visibility: hidden;
}
#readmoreplace {
    grid-template-rows: 0fr; /* Collapsed by default on mobile */
  }

  

  .read-more-btn {
    display: inline-block; /* Show toggle button only on mobile */
  }


 
}
.readMoreBtn{
      height: 0%;
      transition: all 0.2s;

}
.mainOverlayWrap{
       position: relative;
    width: 100%;
    background-color: #131435;
    border-radius: 20px;
    padding: 0;
    color: #f3f4f6;
   
    box-sizing: border-box;
    z-index: 9999;
    height: 100%;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: all;
    /* margin-bottom: 0; */
    height: max-content;
    max-height: 90dvh;
    overflow-y: scroll;
    scrollbar-width: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
     
}
.tt-iframe-wrapper iframe{
  min-height: 80dvh;
}
.mediaWrap{
     position: relative;
  
      overflow: hidden;
   display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* Hide scrollbar visually if preferred */
  scrollbar-width: none; /* Firefox */
  gap: .5rem;


}
.menuSvg{
      width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    cursor: pointer;
       
}
.visibleInPortrait{
  display: none;
}
.hideInPortrait{
      display: flex;
    flex-direction: column;
    gap: 1rem;
}
#readmoreplace {
  display: grid;

  transition: grid-template-rows 0.3s ease-out;
}
.readmore-content {
  overflow: hidden;
  min-height: 0; 
}
#readmoreplace.is-expanded {
  grid-template-rows: 1fr;
}

.top-right-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10; /* Keeps buttons above images/gradients */
}
.mcw{
   
      position: relative;
 
   
  
    /* padding: 1.5rem; */
    margin: 0;
  
    margin-bottom: 0 !important;

}
.icon-btn-svg{
      width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
   
    opacity: .8;
}
.icon-btn-svg svg{
  width: 100%;
  height: 100%;
}
.icon-btn img{
  width: 100%;
}

/* Hover & Active States */
.icon-btn {
       width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: transparent;
    /* backdrop-filter: blur(8px); */

    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    font-size: 1rem;
    opacity: 1;
    overflow: hidden;
}


/* SVG Controls for Thinness and Sharp Edges */
.icon-svg {
  width: 17px;
  height: 17px;
  
  /* 1. STROKE THICKNESS: Lower value = thinner (e.g. 1.2px or 1.5px) */
  stroke-width: 1.3px; 
  
  /* 2. SHARPNESS: 'square' and 'miter' remove rounded ends and soft corners */
  stroke-linecap: square;
  stroke-linejoin: miter;
}
#hostConnector{
       background: transparent !important;
    padding: 0 !important;
    box-shadow: none;
    border: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
.imgFilter{
    position: fixed;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    filter: blur(41px);
    
}
.imgFilter img{
      opacity: 0;
    transition: all 0.5s;
    width: 100%;
    height: 100%;
}
/* Hover effect */
.icon-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
.story-card:last-child{
  margin-bottom: 5dvh;
}
.icon-btn:hover .icon-svg {
  stroke-width: 1.5px; /* Subtle weight bump on hover */
}
/* Full-bleed gallery container */
.place-gallery-container {
 position: relative;
    flex: 1;
    height: auto;
 

    overflow: hidden;

  width: 100%;
  height: auto;
  
}
.story .place-gallery-container{
  height: 7dvh ;
}
.newComment {
    display: grid;
   
    gap: .5rem;
    width: calc(100%);
    grid-template-columns: 1.5rem calc(100% - 2rem);
    align-items: center;
  
}
.cmDisp {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #292929;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    margin-top: 0;
}
.authorInfo {
    color: white;
    display: flex;
    gap: .5rem;
    align-items: center;
}
.cmName {
    font-weight: 600;
   
    width: max-content;
    text-transform: capitalize;
    min-width: 3rem;
}
.cmntTime {
    font-size: .6rem;
}
.pinIconWrap {
    display: flex;
    font-size: .7rem;
    gap: 2px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aab7ff;
}
.pinIcon {
     width: .7rem;
    background-position: center;
    background-size: cover;
    height: .7rem;
    background-repeat: no-repeat;
    background-image: url(/images/svg/pin.svg);
    margin: auto;
    margin-right: 0;
}
.cmntWrap {
    display: grid;
    grid-template-columns: calc(100% - 1rem) 1rem;
    align-items: flex-start;
}
.clampedOnHome {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cmTxt {
    width: 100%;
    font-size: .7rem;
    line-height: 1rem;
    font-weight: 400;
}
.enlarge{
  height: 80dvh !important;
}
/* Base image fills 100% of the left viewport edge-to-edge */
.gallery-main-img {
     position: relative;
    /* inset: 0; */
     width: 100%; 
     object-fit: cover; 
    margin: 0;
    height: 100%;
  

}

/* Top-left floating back link */
.back-link {
  position: relative;
 
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.8;
}

/* Centered side arrow buttons */
.gallery-arrow {
     position: absolute;
    top: 50%;
    transform: translateY(-50%);
  
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
       border: 1px solid transparent;
    background: transparent;
    backdrop-filter: blur(5px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.7) !important;
  border-color: #ffffff !important;
  z-index: 5 !important;
}

.gallery-arrow.prev { left: 1rem; }
.gallery-arrow.next { right: 2rem; }
.storyContentWrap{
     padding: 1.5rem 0;
    border-top: 1px solid #ffffff21;
    width: 90%;
    padding-bottom: 0 !important;
  
}

/* Floating bottom bar holding counter + thumbnail row */
.gallery-bottom-bar {
    position: relative;
    /* background-color: #000; */

    width: calc(100% );
        margin-left: 2rem;
 margin-top: 2rem;

}

/* Bottom-left image counter badge */
.gallery-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  padding-bottom: 0.5rem;
}

/* Floating thumbnail gallery strip */
.gallery-thumbnails {
  display: flex;
  gap: 0.6rem;
}

.thumb-item {
  position: relative;
  width: 72px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  transform: translateY(-2px);
}

.thumb-item.active {
  border-color: #ffffff;
}

/* Dark overlay for remaining images "+7" */
.thumb-item.more-thumbs .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.mainContentWrap{
      width: calc(100%);
      margin-top: 0;
      height: 100dvh;

}
.rhsPlace .section-header{
      margin: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
        margin-top: calc(1.5rem);
   
}
.rhsPlace .section-title{
  margin-bottom:0 !important
}

.authorWrap{
       display: flex;
    align-items: center;
    margin: .25rem 0;
    gap: 1rem;
}
.mainHeader{
     position: fixed;
    top: 0;
    left: 0;
    /* z-index: 10; */
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s;
    padding: 2rem;
    width:calc(100dvw - 420px );
    z-index: 1000;
    background: #000;
}
.titleWrap{
     display: flex;
    align-items: center;
    margin: 0;
  
}

.bannerskrim{
    background:linear-gradient(180deg, rgb(0 0 0 / 48%) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%, rgb(0 0 0 / 88%) 89%, rgb(0 0 0 / 89%) 100%);

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.bannerskrimPicture{
      background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%, rgb(0 0 0 / 77%) 89%, rgb(0 0 0 / 58%) 100%);

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .25;
    top: 0;

}
.moreStories .story-card:last-child {
     margin-bottom: 1rem !important; 
}
.backdrop {
       background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    max-height: 75dvh;

    height: max-content;
    width: 100%;
    opacity: 1;
    background-color: #000000b9;
}
.blurBg{
   background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    background-color: #000;
    filter: blur(40px);
        opacity: .15;
        transition: all 0.5s;

}

/* Adds dark gradients at top and bottom */
.backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,      /* Dark at the top for header text */
        rgba(0, 0, 0, 0) 30%,        /* Transparent in the middle */
        rgba(0, 0, 0, 0) 70%,        /* Transparent in the middle */
        rgba(0, 0, 0, 0.5) 100%      /* Dark at the bottom for thumbnails/controls */
    );
    pointer-events: none;             /* Allows clicks to pass through to media */
}
.csw{
     width: calc(100%);
    min-width: 0;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ffffff0a;
          

}

.mediaActive{
  border: 2px solid white;
}
.poster{
      width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.bannerskrim2{
   background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 72%) 33%, rgba(0, 0, 0, 1) 100%);
    /* z-index: 1; */
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity:1;
}
.grid-trending {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 3rem;
    scrollbar-width: none;
    padding: 3rem 1.5rem;

  
       
}
.grid-trending2{
      display: grid;
    gap: 1rem;
}
.story .mainContentWrap{
position: absolute;
bottom: 1rem;
    height: 7dvh;
}
.story .mediaSlide{
  height: 7dvh;
  width: 7dvh;
}
.messengerScreen{
  position: relative;
      overflow: hidden;
}
.rhsPlace{
   
    position: relative;
    width: calc(100% - 1rem);
  
  
       
}
.gallery-bottom-bar .rhsPlace{

}
.author-info{
 
  width: max-content;
  white-space:nowrap;
  display: block;
}
.place-at{
      color: grey;
    font-family: var(--font-script);
}
.story-meta .author-info{
      display: flex;
    gap: .5rem;
}
.mediaSlide{
    overflow: hidden;
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    height: 35dvh;
    width: max-content;
    flex: 0 0 auto;
    width: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 6px 15px 18px #0000003b;
      

}
.mediaSlide:hover{
  border: 2px solid white;
}
.fullscreen{
        grid-template-columns: 0 1fr !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    background: antiquewhite;
}
.fullscreen .gallery-main-img{
  max-height: 100dvh !important;

}
.fullscreen .mediaSlide{
  height: 100dvh !important;

}
.fullscreen .gallery-bottom-bar{
         z-index: 1;
    position: fixed !important;
    right: 0 !important;
    width: 25dvw !important;
    background: #000 !important;
    height: 93dvh !important;
    top: 7dvh !important;
    margin: 0;
}

.mediaSlide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2; /* Ensures video renders above .poster and .blur */
  pointer-events: none;
}
.story .cswWrap{
      width: calc(100dvw - 300px - 300px - 4px) ;
          border-right: 4px solid #00000078;
              background-color: rgba(0, 0, 0, 0.725);

}
.story .place-details-hero{
      grid-template-columns: 300px 1fr 300px;
}

.story .gallery-bottom-bar{
    margin: 0;
    margin-top: 1.5rem;
    margin-left:  1.5rem;
    width: calc(100% - 3rem);
}
.story .storyContentWrap{
  width: 100% !important;
}
.story .authorWrap{
  display: block !important;
}
.story .story-description{
  margin-top: 1rem;
      width: 100% !important;
}
.blur{
  position: absolute;
  top: 0;
  left: 0;
 width: 100%;
 height:100%;
      filter: blur(20px);
          overflow: hidden;
}
.blur img{
  opacity: 0;
  transition: all 0.4s;
      filter: blur(20px) !important;
}
.poster img{
  opacity: 0;
  transition: all 0.4s;
}
.page-overlay-layer{
      height: 100svh;
    width: 100dvw;
    overflow: hidden;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
        scrollbar-width: none;
}
.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.extraclamped {
    display: -webkit-box;
    -webkit-line-clamp: 15;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story .mediaSlide:first-child{
  margin-left:45%;
}
.mediaSlide:first-child{
  margin-left:1.5rem;
}
.mediaSlide:last-child{
  margin-right:1.5rem;
}
.story .mediaSlide:last-child{
  margin-right: 45%;
}
.place .mediaSlide:last-child{
  margin-right: 3rem;
}
/* Container Shell */
.comments-section {
    
    /* max-width: 680px; */
    color: #f4f4f5;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
    padding:0 0;
    /* border-radius: 12px; */
    width: 100%;
  margin-left: 1.5rem;
    
}
.comments-header{
  display: none;
}

.comments-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 1.25rem 0;
  color: #ffffff;
}

.comments-header .count {
  color: #6366f1;
  font-size: 0.95rem;
}

/* Input Area */
.comment-input-card {
  display: none;
  gap: 12px;
 
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.user-avatar, .author-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  transition:  all 0.2s;
}

.input-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-container textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.9rem;
  resize: none;
  font-family: inherit;
}

.input-container textarea::placeholder {
  color: #71717a;
}

.input-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.input-footer .hint {
  font-size: 0.75rem;
  color: #52525b;
}

.submit-btn {
  background: #4f46e5;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #4338ca;
}

/* Comment Cards List */
.comments-list {
    position: relative;
    width: calc(100%);

}
.tt-inline-calendar-area{
  aspect-ratio: 1/1;
  width: 90%;
}
.comment-card {
  
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.2s;
    max-width: 500px;
    margin: 1.5rem 0;
    border: 1px solid #1d1d1d;
    margin-left: 0;
}

.comment-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Pinned Comment Highlight */


.pinned-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #818cf8;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pinned-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Header & Meta */
.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.containsGrid .gallery-arrow.next{
    right: 0 !important;
}
.containsGrid .gallery-arrow{
       background: #00000040 !important;
       
}
.containsGrid .gallery-arrow.prev{
    left: 0 !important;
}

.author-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.host-tag {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 500;
}

.comment-date {
  font-size: 0.75rem;
  color: #71717a;
}

.comment-body {
  font-size: 0.7rem;
  color: #d4d4d8;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

/* Pin Action Button */
.pin-toggle-btn {
  background: transparent;
  border: none;
  color: #52525b;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

.pin-toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pin-toggle-btn:hover {
  color: #a1a1aa;
}

.pin-toggle-btn.pinned {
  color: #818cf8;
}

/* Footer Actions */


.action-btn {
  background: transparent;
  border: none;
  color: #71717a;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s;
}

.action-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.action-btn:hover {
  color: #e4e4e7;
}

.action-btn.active {
  color: #fff;
}

.action-btn.active svg {
  fill: #fff;
}
.comment-card .author-info {
    width: max-content;
    white-space: nowrap;
  
    display: flex !important;
    gap: 1rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 8px;
    padding-left: 0;
}.item-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1;
}.item-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #fff;
    opacity: 0.95;
    margin-top: 2px;
}.item-content {
    min-width: 0;
    flex: 1;
}.item-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 6px;
}.item-desc {
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.78;
}.preview-action{
      margin-top: 2px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.policy-card {
    display: flex;
    align-items: center;
    gap: 14px;
    /* background-color: #000000; */
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    max-width: 400px;
    position: relative;;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #20202073;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-wrapper i {
  font-size: .8rem;
  color: #ffffff;
}

.policy-content {
  flex-grow: 1;
}

.policy-title {
    margin: 0 0 4px 0;
    font-size: .9rem;
    font-weight: 400;
    color: #e4e4e7;
    line-height: 1.3;
    width: 100%;
}

.policy-title strong {
  font-weight: 600;
  color: #ffffff;
}

.policy-status {
    margin: 0 0 .25rem 0;
  font-size: 13px;
  color: #a1a1aa;
  display: none;
}

.policy-subtext {
  display: block;
    font-size: .6rem;
  color: #71717a;
      display: none;
}

.arrow-icon2 {
      font-size: .6rem;
    color: #959595;
    /* margin-top: 4px; */
    margin: auto;
}
.panel-section:last-child{
     padding-bottom: 5DVH;
}.price-estimate-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
   cursor: pointer;
    padding: 0;
    border-radius: 12px;
    color: #ffffff;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
   
}

.price-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #20202073;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.15rem;
}

.price-details {
  display: flex;
  flex-direction: column;
  padding-top: 0.15rem;
  flex-grow: 1;
}

.price-range {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    /* margin: 0 0 0.35rem 0; */
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.price-subtitle {
    font-size: .7rem;
    color: #cfcfd1;
    margin-bottom: 0.85rem;
}

.price-note {
  font-size: 0.6rem;
  color: #a1a1aa;
  line-height: 1.4;
  margin: 0;
}

/* Fix the main container height */
#boiler-content {
  height: 100svh; /* Or calc(100dvh - top_nav_height) */
 flex: 1; /* Fills remaining space in body */
  overflow-y: auto; /* Handles internal scrolling cleanly */
  -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling on iOS */
  display: flex;
  flex-direction: column;
      SCROLLBAR-WIDTH: none;
}
.grid-trending2 .story-card{
  height: 250px !important;
}
/* Fix imgFilter overlay if it's overflowing */
.imgFilter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  pointer-events: none; /* Allows clicks to pass through */
  overflow: hidden;
}
.view-all-comments-btn {
    width:max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #a3a8b4;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 1.5rem;
    margin-top: 0;
        gap: .5rem;
            margin-left: 0;
}

.view-all-comments-btn .btn-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.view-all-comments-btn .comment-icon {
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.view-all-comments-btn .arrow-icon {
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease, fill 0.25s ease;
}

/* Hover & Active States */
.view-all-comments-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.view-all-comments-btn:hover .comment-icon {
  opacity: 1;
  transform: scale(1.1);
}

.view-all-comments-btn:hover .arrow-icon {
  opacity: 1;
  transform: translateX(3px);
  fill: #6366f1; /* Matches interactive accent highlight */
}
.breadcrumb{
     display: flex;
    gap: .5rem;
    font-size: .8rem;
    text-transform: capitalize;
    align-items: center;
    cursor: pointer;
      margin-left: calc(.5rem + 4px);
}
.view-all-comments-btn:active {
  transform: scale(0.99);
}
.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);

    width: 64px; /* 5 × 8px + 4 × 6px */
    height: 10px;

    overflow: hidden;

    display: none;
    align-items: center;
    justify-content: flex-start;

    margin: 0;
}

.dots-track {
    display: flex;
    align-items: center;
    gap: 6px;

    width: max-content;

    transition: transform 0.25s ease;
    will-change: transform;
}

.gallery-dots .dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background-color: #fff;
    opacity: 0.35;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;

    transform: scale(1);
}

.gallery-dots .dot.active {
    background-color: #fff;
    opacity: 1;
}

.gallery-dots .dot.small {
    transform: scale(0.65);
}

.gallery-dots .dot.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Active thumbnail indicator */
.mediaSlide.active-thumb {
  
    border: 2px solid white ;
    opacity: 1;
}
.story .csw{
      position: absolute;
    bottom: 0;
}

.mediaSlide {
 
    transition: all 0.2s ease;
}

/* Center Play Icon on Video Thumbnails */
.mediaSlide .thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;

  backdrop-filter: blur(4px);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mediaSlide:hover .thumb-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.75);
}


/* Base Container Styles */
.comments-widget {
    width: 100%;
   
    color: #e2e8f0;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
    border-radius: 12px;
    box-sizing: border-box;
}
.pinned-header span{
      font-size: .7rem;
    letter-spacing: 1px;
}
/* Common Layout Elements */
.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pinned-section {

    border-radius: 12px;
    padding: 0;
    margin: 1rem 0;
}

.pinned-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5879cd;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
   
}

.pin-icon {
  width: 14px;
  height: 14px;
  transform: rotate(30deg);
}

.comment-item {
display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 1rem;
    border-radius: 10px;
  
    width: 100%;

    padding: 0;
    border-radius: 10px;
    box-sizing: border-box;
    PADDING-BOTTOM: .5REM;

}

.pinned-section .comment-item {
  margin-bottom: 0;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
}

.user-name {
  font-weight: 600;
  color: #ffffff;
      font-size: .8rem;
}

.badge.host {
  background-color: #1a2233;
  color: #8fa2d4;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
}

.time-ago {
    color: #64748b;
    font-size: .7rem;
    font-weight: 600;
}

.more-btn {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1px;
  display: none;
}

.comment-text {
  margin: 0 2.5rem;
  font-size: 12px;
  line-height: 1.45;
  color: #cbd5e1;
}



.like-btn, .reply-btn {
  background: none;
  border: none;
  color: #94a3b8;

  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.heart-icon {
  width: 14px;
  height: 14px;
}

.reply-btn {
  font-weight: 500;
}

/* Sorting Option */
.sort-wrapper {
     padding: 0;
    display: flex;
    justify-content: space-between;
    /* padding-bottom: 0; */
    /* background: #00000096; */
    margin-top: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}



.sort-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.chevron-icon {
  width: 16px;
  height: 16px;
}

/* View More Replies Button */
.view-more-btn {
    width: 100%;
    background-color: #00000087;
    border: 1px solid #191919;
    border-radius: 20px;
    color: #e2e8f0;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin: 12px 0 24px 0;
    display: none;
}
.storyCommentI{
      background: transparent !important;
    border: 0 !important;
}

/* Input Area */
.comment-input-row {
    display: flex;
    align-items: center;
  
    position: relative;
    /* background: #0000009c; */
    padding: 1rem 0;
    width: calc(100%);
    /* backdrop-filter: blur(12px); */
    -webkit-backdrop-filter: blur(12px);
    margin: 1rem 0;
    border: 1px solid #171717a8;
    border-left: 0;
    border-right: 0;
    gap: .5rem;
    display: none;
   
}

.input-wrapper {
    display: flex;
    align-items: center;
    /* background-color: #000000b3; */
    /* border: 1px solid #333; */
    border-radius: 8px;
    padding-left: 16px;
}

.input-wrapper input {
     width: 100%;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 10px 40px 10px 0px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.input-wrapper input::placeholder {
  color: #64748b;
}

.image-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  display: none;
}

.image-btn svg {
  width: 18px;
  height: 18px;
}

.send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  color: #0d0f12;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  display: none;
}

.send-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}
/* Container anchored directly above the lat/lng point */
.sexy-bw-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(0, -100%); /* Anchor stem directly on map coordinate */
  margin-top: -12px;
  user-select: none;
}

/* Subtle anchor tip pointing to exact location */
.sexy-bw-marker::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: rgba(12, 12, 12, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* Hover effect */
.sexy-bw-marker:hover {
  transform: translate(-50%, -105%) scale(1.04);
  background: rgba(22, 22, 22, 0.95);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
}

/* Minimalist Location Ring Icon */
.sexy-marker-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sexy-marker-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

/* Editorial Typography */
.sexy-marker-title {
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.route-card-container {
  width: max-content;
    margin-top: .5rem;
        width: 100%;
}

.section-title {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.dLabel{
  font-size: .9rem;
  opacity: .75;
}
.subhero-grid-wrapper .section-header{
  display: none;
}

.imgFilterBg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    filter: blur(17px);
    opacity: .4;
    overflow: hidden;
}
.imgFilterBg img{
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
   
}
/* Main Card */
.route-card {
 padding: 1rem;
    overflow: hidden;
    border-bottom: 0;
    background: #000;
    border-radius: 8px;
    width: calc(100%);
}

.timeline {
  display: flex;
  gap: .75rem;
  position: relative;
}

/* Timeline Left Graphic */
.timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.node {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-node {
  color: var(--text-muted);
}

.end-node {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  margin: 4px 0;
}

.line {
  width: 1px;
  flex: 1;
  border-left: 1px dashed #3a3a3c;
  margin: 6px 0;
}

/* Timeline Content Right */
.timeline-content {
  flex: 1;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-name {
  font-size: 1REM;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  opacity: .75;
  text-transform: uppercase;
}

.edit-btn {
 background: none;
    border: none;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    background-color: #3e47ff;
    padding: .25rem;
    border-radius: 2px;
    text-transform: uppercase;
    /* font-weight: 800; */
    font-size: .7rem;
    letter-spacing: 2px;
}

.time-info {
  font-size: 12px;
  color: var(--text-muted);

}

.divider-line {
    height: 0;
    background-color: var(--border-color);
    margin: 1rem 0;
}

/* Route Meta Bar */
.route-meta {
    display: flex;
    align-items: center;
  
    margin: .5rem -20px 0 -20px;
    padding: 14px 20px;
    opacity: 1;
        gap: 1rem;  
}

.meta-item {
  display: flex;
 
  gap: 6px;
  font-size: .85rem;
      white-space: nowrap;

}
.meta-item svg{

  width: 20px;
  height: 20px;
      opacity: .5;
}

.meta-divider {
    width: 1px;
    height: 14px;
    background-color: #ffffff26;
}

/* Bottom CTA */
.explore-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 1PX solid #5879cd38;
    /* border-radius: 10px; */
    padding: 1rem;
    /* margin-top: 1rem; */
    color: #ffffff;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: .5rem;
    margin-bottom: 4rem;
    display: none;
}



.explore-btn:hover {
  background: #fff;
      color:#3e47ff ;
}
.host-role span{
  text-transform: capitalize;
}


/* Container hidden by default */
.map-overlay-container {
  display: none;
  position: fixed;
  z-index: 99;
  background-color: #000000;
  overflow: hidden;
}

.map-overlay-container.active {
  display: block;
}

/* Close Button */
.map-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-weight: 600;
}
.rhsPlace .gallery-arrow{
  display: none !important;
}
/* Mobile Styling: Top Nav standard height offset */
@media (max-width: 768px) {
  .map-overlay-container {
    top: 7dvh; /* Standard top-nav height from styles */
    left: 0;
    width: 100vw;
    height: calc(100dvh - 7dvh);
  }
  
}

/* Desktop Styling: Cover only .cswWrap + .rhsPlace */
@media (min-width: 769px) {

 
  .map-overlay-container {
    top: 7dvh;
        
       
    /* Spans across both right sections (300px sidebar + ~400px details width depending on layout) */
 
    height: 93vh;
  }
}
.triangle-down {
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 34px solid rgb(255, 255, 255);
}
.my-adv-marker {
    text-align: center;
    border-radius: 8px;
    color: rgb(255, 255, 255);
    font-weight: 100;
    font-size: 1rem;
    user-select: none;
    cursor: pointer;
    pointer-events: auto;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-family: var(--font3);
    transition: all 0.5s;
    position: relative;
    transform: scale(.8);
    opacity: 1;
}
.nameWrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-family: var(--font2);
    font-size: 2rem;
    font-weight: 300;
    line-height: 2rem;
    letter-spacing: 3px;
    z-index: 1000;
    position: relative;
}
.pinShape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0) translateY(-100%);
}
.mapPoint {
    width: 1rem;
    height: 1rem;
    border: 4px solid white;
    position: absolute;
    bottom: -17px;
    left: 50%;
    position: absolute;
    bottom: -14px;
    left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
    transform: rotateX(30deg) rotateY(-5deg) translateX(-50%) scale(0);
    transform-origin: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 76%);
    background-color: #00000000;
}

.mapPointBorder {
    border: 4px solid #202020ba !important;
}
.mapPoint{
      width: 1rem;
    height: 1rem;
    border: 4px solid white;
    position: absolute;
    bottom: -17px;
    left: 50%;
    position: absolute;
    bottom: -14px;
    left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
    transform: rotateX(30deg) rotateY(-5deg) translateX(-50%) scale(0);
    transform-origin: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 76%);
    background-color: #00000000;
}
.placeDisp{
    width: 6rem;
    height: 6rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 0rem;
    position: absolute;
    transition: all 0.2s;
    transform: scale(0) translate(-50%, -114%);
    opacity: 1;
    border: 2px solid white;
    box-shadow: 4px 4px 4px rgba(3, 0, 39, .5);
    border-radius: 8px;
    background-color: black;
    top: 50%;
    left: 50%;

}
.placeDisp img {
       width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s;
    object-fit: cover;
}
.textLabel {
     font-size: 1rem;
    position: absolute;
    top: .25rem;
    width: max-content;
    font-weight: 800;
    transform: translateX(-50%);
    left: 50%;
    color: #ffffff;
    /* background-color: white; */
    color: #ffffff;
    text-shadow: none;
    padding: .5rem;
    text-transform: uppercase;
    text-shadow: black 2px 2px 2px;
}
.popPlaces {
    width: calc(100%);
    color: white;
    font-size: 2dvw;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background: #000;
}
.popTitle {
    font-weight: 800;
    color: #787878;
    text-transform: uppercase;
    font-size: 1rem;
}
.popWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: .75rem;
    margin-top: .75rem;
    column-gap: .5rem;
}
.popItem {
    padding: .5rem;
    border: 1px solid #ffffff2e;
    /* border-radius: 6px; */
    font-size: .8rem;
    text-transform: capitalize;
    /* background-color: #0d0d0d; */
    transition: all 0.2s;
    border-radius: 4px;
    cursor: pointer;
}
.popItem:hover{
  background-color: white;
  color: black;

}
.isAuthor .pinThisComment{
  display: block !important;
}
.pinThisComment{
  display: none;
}
  .mapLoader {
          width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;

    right: 1.25rem;
    display: none;
    margin-top: -4.5rem;
    }
        .searchIcon svg{
             fill: white;
       width: .8rem;
    height: .6rem;
    rotate: 180deg;
    
    }
    .calendarOverlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    opacity: 0;
    transition: .3s;
    overflow-y: scroll;
        color: black;
    max-height: 100dvh;
    
}
.scroll-hidden{
  scrollbar-width: none;
}
.piWrapBtn {
      display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: .5rem;
  
}
.popInfoDesc {
     font-size: .8rem;
    margin-top: .25rem;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.searchIcon {
    width: 1rem;
    height: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    rotate: 0deg;
}
.popInfoTitle {
    font-weight: 800;
    margin-bottom: .25rem;
    text-transform: uppercase;
}
.popInfoLocLabel {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    gap: .5rem;
    width: 90%;
    display: flex;
}
.pill {
    color: #4c67ff;
}
.calendarSheet{
    position: relative;
    /* left: 0; */
    /* right: 0; */
    bottom: 0;
    background: #000000;
    /* max-height: 85vh; */
    /* overflow: auto; */
    padding: 1.5rem 0;
    /* transform: translateY(100%); */
    transition: .3s;
    pointer-events: all;
    width: calc(100%);
    color: white;
    display: none;
  
}
.topBg{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.popInfo{
      margin: 0;
    width: 100%;
}
.calendarSheet.show{
 display: flex;
}
.calendarOverlay.show{
  opacity:1;
}
    .searchIcon{
      width: 1rem;
     height: .8rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    rotate: 0deg;

    }
     .exploreBtn {
        font-size: .7rem;
    padding: .5rem .5rem;
    border: 1px solid #8a8a8a7d;
    width: max-content;
    color: white;
    margin: auto;
    margin-right: 0;
    display: flex;
    align-items: anchor-center;
    gap: .25rem;
    background-color: #000000;
    border-radius: 4px;
    cursor: pointer;

        text-transform: capitalize;
            align-items: center;
            transition: all 0.2s;
    }
  @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 





    /* Backdrop Overlay */
.comment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.comment-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box Container */
.comment-modal-card {
    background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  color: #ffffff;
  font-family: inherit;
}

.comment-modal-overlay.active .comment-modal-card {
  transform: scale(1);
}

/* Header Section */
.comment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.comment-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;

  color: #f1f5f9;
}

.comment-modal-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.comment-modal-close:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.comment-modal-close svg {
  width: 20px;
  height: 20px;
}

/* Body Section */
.comment-modal-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.comment-modal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.comment-textarea {
  width: 100%;
  min-height: 110px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 38px 12px 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.comment-textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

.comment-textarea::placeholder {
  color: #64748b;
}

.emoji-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.emoji-btn:hover {
  color: #ffffff;
}

.emoji-btn svg {
  width: 22px;
  height: 22px;
}

/* Footer Section */
.comment-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}

.char-counter {
  font-size: 0.85rem;
  color: #64748b;
}

.post-submit-btn {
  background-color: #2b3674;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.post-submit-btn:hover:not(:disabled) {
  background-color: #3b4992;
}

.post-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Parent Comment Context Box inside Overlay */
.comment-reply-preview {
  display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    /* border-radius: 12px; */
    border-left: 3px solid #3b82f6;
    margin-bottom: 16px;
    position: relative;
}

.comment-reply-preview .reply-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-reply-preview .reply-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.comment-reply-preview .reply-author {
  font-weight: 600;
  color: #f1f5f9;
}

.comment-reply-preview .reply-text {
  margin: 4px 0 0 0;
  font-size: 0.88rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}
.reply-wrap{
      width: calc(100% - 32px - 1rem);
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
      margin-left: 2.5rem;
}

.comment-actions button {
  background: transparent;
  border: none;
  color: #94a3b8;

  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s ease;
  font-size: .7rem;
}

.comment-actions button:hover {
  color: #ffffff;
}

/* Specific styling for the inline view replies button */
.view-replies-btn {
  color: #60a5fa !important; /* Soft accent blue */
  margin-left: 4px;
}

.view-replies-btn:hover {
  text-decoration: underline;
  color: #93c5fd !important;
}
.pinned-section .view-replies-btn{
  display: none;
}

/* Base style for heart icon */
.comment-actions .like-btn {
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.15s ease;
}

.comment-actions .like-btn .heart-icon {
  width: 16px;
  height: 16px;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

/* Liked state styling (Red / Crimson heart) */
.comment-actions .like-btn.liked {
  color: #5879cd; /* Bright Red */
}

.comment-actions .like-btn.liked .heart-icon {
  fill: #5879cd;
}

/* Click animation feedback */
.comment-actions .like-btn:active {
  transform: scale(1.15);
}


.comment-input-row.loggedIn,
.comment-input-row.loggedOut {
  display: flex !important;
}
/* ==========================================================================
   STATE: LOGGED OUT
   ========================================================================== */
.comment-input-row.loggedOut .user-avatar,
.comment-input-row.loggedOut .comment-input,
.comment-input-row.loggedOut .image-btn,
.comment-input-row.loggedOut .send-btn {
  display: none !important;
}

.comment-input-row.loggedOut .logged-out-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-input-row.loggedOut .login-prompt {
  display: block;
  width: 100%;
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
}

.comment-input-row.loggedOut .login-prompt:hover {
  color: #3b82f6; /* Accent link highlight */
}


/* ==========================================================================
   STATE: LOGGED IN
   ========================================================================== */
.comment-input-row.loggedIn .logged-out-icon,
.comment-input-row.loggedIn .login-prompt {
  display: none !important;
}

.comment-input-row.loggedIn .user-avatar {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1 !important;
}

.comment-input-row.loggedIn .comment-input {
  display: block !important;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.9rem;
}

.comment-input-row.loggedIn .image-btn,
.comment-input-row.loggedIn .send-btn {
  display: flex;
}



/* Container positioned over rhsPlace or fixed fullscreen on mobile */
.replies-overlay {
    position: absolute;
    top: 7dvh;
    right: 0;
      width: calc(300px - 2rem);
    height: calc(100dvh - 7dvh);

    /* background-color: #121824; */
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

/* Header with Back Button */
.replies-overlay-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);


  position: sticky;
  top: 0;
  z-index: 10;
}
.commentsOverlayOpen .rhsPlace{
  opacity: 0;

}
.read-more-btn{
flex: 1;
    /* padding: 0.8rem 0.5rem; */
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background: transparent;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #2f80ed;
    border: none;
}
.storiesTitle{
         padding: 1rem 1.5rem;
    text-transform: uppercase;
    position: absolute;
    top: 7dvh;
    left: 0;
    background: #000;
    font-size: .9rem;
    display: none;
}
.replies-overlay-header .back-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.replies-overlay-header h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Scrollable Container for Thread and Replies */
.replies-overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Parent Comment Highlight Box */
.parent-comment-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 8px;
}

/* Infinite Scroll Loader Spinner */
.replies-loader {
  text-align: center;
  padding: 16px 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Responsive Mobile Rules (Fullscreen takeover) */
@media (max-width: 768px) {
  .replies-overlay {
        position: fixed;
        top: 7dvh;
        left: 0;
        width: 100vw;
        height: 93dvh;
        z-index: 9999;
        background: #000;
  }
  .pinned-header{
    margin-left: 1.5rem;
  }
}

/* =========================================================
   TRAVEL DETAILS (SECTION 2) - DARK THEME FIXES
   ========================================================= */

/* Travel Details Form Labels */
.tt-input-label {
  color: #e5e7eb !important;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
      white-space: nowrap;
  opacity: .5;
  display: none;
}
.form-group-wrap{
         display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

/* Base Select & Search Input Fields */
.tt-select-input,
#tt-origin-state-search {
    background: rgb(0 0 0 / 76%) !important;
  color: #f3f4f6 !important;
  border: 1px solid #2d323e !important;
  border-radius: 8px !important;
  padding: 0.65rem 0.85rem !important;
  font-size: 0.9rem !important;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Placeholder Styling for Input */
#tt-origin-state-search::placeholder {
  color: #6b7280 !important;
}

/* Focus States */
.tt-select-input:focus,
#tt-origin-state-search:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25) !important;
}

/* Native Select Dropdown Options (for dark mode compatibility) */
.tt-select-input option {
  background-color: #1a1d24 !important;
  color: #f3f4f6 !important;
}

/* Searchable State Dropdown Menu Container */
#tt-state-dropdown-list {
  background-color: #1a1d24 !important;
  border: 1px solid #2d323e !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
  max-height: 180px;
  overflow-y: auto;
  z-index: 50;
}

/* Dropdown Option Items */
.tt-state-option {
  color: #d1d5db !important;
  padding: 0.6rem 0.85rem !important;
  font-size: 0.85rem !important;
  border-bottom: 1px solid #222630 !important;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tt-state-option:last-child {
  border-bottom: none !important;
}

/* Hover & Active Options */
.tt-state-option:hover {
  background-color: #2563eb !important;
  color: #ffffff !important;
}
.tt-cal-day.disabled {
  color: #4b5563 !important;
  opacity: 0.4;
  cursor: not-allowed !important;
  pointer-events: none;
  background-color: transparent !important;
}
.datesSelected{
  display: none;
}
/* Disabled Past Calendar Dates */
.tt-cal-day.tt-cal-day-disabled,
.tt-cal-day[data-disabled="true"] {
  color: #374151 !important;
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background-color: transparent !important;
}

/* Highlight Today's Date */
.tt-cal-day.is-today:not(.selected-start):not(.selected-end) {
  border: 1px dashed #60a5fa !important;
  color: #60a5fa !important;
  font-weight: bold;
}
#tt-inline-calendar-area.datesSelected {
  display: none !important;
}

/* Base container for both Time & State dropdowns */
#tt-time-dropdown-list,
#tt-state-dropdown-list {
  background-color: #0b0f17 !important; /* Matches input background */
  border: 1px solid #2a3447 !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 999 !important;
}

/* Identical option item styling for both dropdowns */
.tt-state-option,
.tt-time-option {
  color: #ffffff !important;
  padding: 0.6rem 0.8rem !important;
  font-size: 0.85rem !important;
  border-bottom: 1px solid #1e293b !important;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tt-state-option:last-child,
.tt-time-option:last-child {
  border-bottom: none !important;
}

/* Hover & Active states */
.tt-state-option:hover,
.tt-time-option:hover {
  background-color: #1e293b !important;
  color: #60a5fa !important;
}
.tt-section-label span{
      text-transform: none;
    font-size: .65rem;
    color: white;
    font-weight: 300;
    opacity: .75;
}
/* Input & Placeholder styling */
#tt-departure-time-input,
#tt-origin-state-search {
  color: #ffffff !important;
    background: rgb(0 0 0 / 76%) !important;
  border: 1px solid #2a3447 !important;
}

#tt-departure-time-input::placeholder,
#tt-origin-state-search::placeholder {
  color: #64748b !important;
  opacity: 1;
}
#tt-departure-time-input:focus{
  border:  1px solid #3b82f6 !important;
  

}
/* Container Navigation */
.sidebar-tabs {
    display: none !important;
    gap: 24px;
    border-bottom: 1px solid rgb(255 255 255 / 5%);
    margin: 1rem 0;
    width: 100%;
    margin-top: 0;

}

/* Individual Tab Buttons */
.tab-btn {
  background: transparent;
  border: none;
  outline: none;
  color: #8a8a8e;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
      font-family: var(--fa-font-brands);
}

.tab-btn:hover {
  color: #ffffff;
}

/* Active Tab Styles */
.tab-btn.active {
  color: #2f80ed; /* Matching the bright blue accent color */
  font-weight: 600;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2f80ed;
  border-radius: 2px;
}

/* Tab Content Visibility */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.crumbStory{
  display: none;
  align-items: center;
      gap: .5rem;
}
#pn:hover{
  text-decoration: underline;
}


.moreStories .grid-trending{
    display: grid !important;
    gap: 1.5rem !important;
    overflow: unset !important;
    padding: 0;
    width: calc(100% - 3rem);
}
.moreStories .grid-trending .story-card{
      width: 100%;
    max-width: 100%;
}
.moreStories .containsGrid{
  width: 100% !important;
      margin-top: 0rem;
}
.storyContentWW{
      position: relative;

    
    height: max-content;
}
.backdrop-hero-img{
  transition: all 0.2s;
}
/* Reusable hero stats meta info */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-stats i {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Rounded outline pill button for sub-hero sections */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn-outline i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.btn-outline:hover i {
  transform: translateX(3px);
}

/* Wrapper to position the include grid relative to the section content */
.subhero-grid-wrapper {

  width: 100%;
}
.subhero-grid-wrapper .containsGrid{
  margin-top: 0 !important;
}
#subhero-scroll-sentinel{
      height: 5dvh;
    position: relative;
    flex-shrink: 0;
    min-height: 5dvh;
}
.subhero-template{
  display: none;
}
.dTick{
      display: flex;
    width: .75rem;
}
.tt-chat-input-wrap{
        width: calc(100%);
    margin-left: 0;
    padding: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #27272a;
    position: absolute;
    bottom: 0;
    background: #090909;
    height: 4rem;
}
.phone-bg-img {
width: 80%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
        position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0) brightness(1) contrast(1.1);
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}


.tdWT {
    width: 100%;
    display: grid;
    grid-template-columns: .75fr 2fr;
    align-items: center;
        gap: 1rem;
}
.villagenametn{
    text-transform: capitalize;
}
.pdescriptor{
      text-transform: capitalize;
}
.tt-chat-messages .tt-widget-msg-bubble:first-child{
  margin-top: 3rem;
}
.travelNotice {
    background: #000000;
    position: absolute;
    top: 0;
    width: calc(100%);
    margin-left: 0;
    padding: 1rem;
    font-size: .7rem;
    display: flex;
    gap: .75rem;
    padding-left: 1rem;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, .25);
        align-items: center;
        transition: all 0.2s;
        cursor: pointer;
  
}
.rghtArrow{
      height: max-content;
    margin: auto;
    margin-right: 0;
}
.notice-icon {
      font-size: .75rem;
    color: #ffffff;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #00000054; */
    border-radius: 50%;
}
.tt-widget-empty{
      color: #a1a1aa;
    text-align: center;
    padding: 10px;
}
.tt-call-btn:hover{
  background: #fff !important;
  color: black !important;
}

.notice-content {
    display: flex;
    flex-direction: column;
  
        opacity: 1;
}
.travelNotice:hover{
  background-color: #252525;
}

.notice-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f3f4f64f;
    line-height: 1.2;
}

.notice-subtext {
    font-size: 1rem;
    color: #fff;
    line-height: 1.2;
}


/* Container & Card Base */
.invitation-card {
           position: relative;
    width: calc(100% - 2rem);
    max-width: 380px;
    border-radius: 4px;
    overflow: hidden;
    /* background-color: #0d0d0e; */
    color: #ffffff;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); */
    cursor: pointer;
    /* display: flex; */
    /* flex-direction: column; */
    justify-content: space-between;
    padding: 1rem;
    box-sizing: border-box;
    /* min-height: 260px; */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: .8;
    transition: all 0.2s;
      margin: 1.5rem auto;
}
.chat-invitation-card-wrap .invitation-card{
    margin: 0 !important;
    opacity: 1 !important;
    width: 100%;
}
.chat-invitation-card-wrap .phone-bg{
  z-index: unset;
}

.invitation-card:hover {
 opacity: 1 !important;
}

/* Background Image & Gradient */
.phone-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.phone-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.invitation-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(13 13 14) 0%, rgb(13 13 14) 15%, rgb(13 13 14) 0%, rgb(13 13 14) 35%, rgba(13, 13, 14, 0.1) 100%);
}

/* Card Header & Content */
.invitation-header,
.invitation-footer {
  position: relative;

}

/* Icon Badge */
.invitation-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;

  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Typography */
.invitation-title-group {
  max-width: 70%;
}

.invitation-subheading-small {
  font-size: 0.8rem;
  color: #a1a1aa;
  font-weight: 400;
  margin-bottom: 4px;
}

.invitation-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.invitation-divider {
  width: 24px;
  height: 2px;
  background-color: #4f46e5;
  margin-bottom: 12px;
  border-radius: 2px;
}

.invitation-quote {
  font-size: 0.85rem;
  color: #d4d4d8;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

/* Footer & Buttons */
.invitation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.invitation-btn-open {
    background-color: transparent;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 8px 18px;
    font-size: .7rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-sans);
    border: 1px solid #ffffff29;
}

.invitation-btn-open:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/* Host Metadata */
.invitation-host-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.invitation-avatar-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #27272a;
}

.invitation-host-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invitation-host-info {
  display: flex;
  flex-direction: column;
}
.highlite{
    background: linear-gradient(135deg, #3e47ff 0%, #3e47ff 100%);
    display: flex !important;
}
.invh{
      display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.invitation-host-label {
  font-size: 0.65rem;
    color: #ffffffb5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invitation-sender-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: #e4e4e7;
}

/* Full overlay container over mainOverlayWrap */
.tt-iframe-view-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Solid background hides card content underneath */
  z-index: 100; /* Ensures overlay sits above all cards and headers */
  display: flex;
  flex-direction: column;
  border-radius: inherit;
  overflow: hidden;
}

/* Header bar with Back Button */
.tt-iframe-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.tt-iframe-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #f3f4f6;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tt-iframe-back-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Seamless Iframe Container */
.tt-iframe-body {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.tt-invitation-iframe {
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
  display: block;
  background: transparent;
}




/* Ensure the chat wrapper acts as the positioning context */
.csOW {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Call Overlay - covers everything below the header */
.tt-call-overlay {
    position: absolute;
    top: 4rem;
    margin-top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: calc(100%);
    height: calc(100% - 4rem);
}

/* Step 1: Permission UI Styling */
.tt-call-step-perm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 320px;
}

.tt-mic-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.tt-call-step-perm h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tt-call-step-perm p {
  color: #a1a1aa;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.tt-allow-mic-btn {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 0.75rem;
}

.tt-allow-mic-btn:hover {
  background: #1d4ed8;
}

.tt-cancel-call-btn {
  background: transparent;
  color: #71717a;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
}

.tt-cancel-call-btn:hover {
  color: #e4e4e7;
}

/* Step 2: Full Overlay Iframe */
.tt-call-iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: #000000;
   opacity: 0;
  visibility: hidden;
    transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.tt-call-loading {
  position: absolute;
  inset: 0;
  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;

  text-align: center;

  transition: opacity 0.25s ease;
}

.tt-call-loading.loaded {
  opacity: 0;
  pointer-events: none;
}
.tt-call-loading h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  font-weight: 500;
}
.tt-loading-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

.tt-loading-icon i {
  font-size: 22px;
}

/* Spinner */
.tt-call-spinner {
  width: 24px;
  height: 24px;

  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;

  border-radius: 50%;

  animation: tt-call-spin 0.8s linear infinite;

  margin-bottom: 28px;
}

@keyframes tt-call-spin {
  to {
    transform: rotate(360deg);
  }
}
.tt-call-loading p {
  margin: 0 0 24px;
  max-width: 300px;

  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.5;
}

/* Skeleton Base Animations */
@keyframes tt-pulse {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

.tt-skeleton-row {
  pointer-events: none;
}

.tt-skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3f3f46;
  animation: tt-pulse 1.5s infinite ease-in-out;
}

.tt-skeleton-text {
  height: 12px;
  background-color: #3f3f46;
  border-radius: 4px;
  animation: tt-pulse 1.5s infinite ease-in-out;
}

.tt-skeleton-title {
  width: 120px;
}

.tt-skeleton-time {
  width: 40px;
}

.tt-skeleton-preview {
  width: 180px;
  margin-top: 6px;
}

.tt-skeleton-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3f3f46;
  animation: tt-pulse 1.5s infinite ease-in-out;
}
.empty-state-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  overflow: hidden;
      height: 40dvh;
}

/* Subtle background aura */
.empty-state-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(92, 107, 222, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.empty-state-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.empty-state-icon-wrapper svg {
  width: 26px;
  height: 26px;
  stroke: #a0a5ba;
}

.empty-state-title {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.empty-state-desc {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: #8a8d9b;
  max-width: 260px;
  margin: 0;
  line-height: 1.45;
}


.custom-toast {
    position: fixed;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%) translateY(20px);
    background: #000000f5;
    color: #000000;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 3dvw;
    line-height: 1.4;
    /* box-shadow: 0 10px 30px rgb(0 0 0); */
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    text-align: center;
    pointer-events: none;
    backdrop-filter: blur(6px);
    width: calc(95% - 36px);

  }

.tt-inapp-toast {
  position: absolute !important;
  z-index: 999999 !important;

  max-width: calc(100vw - 2rem) !important;

  background: #121212 !important;
  border: 1px solid #27272a !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 1rem;
}

/* Triangle Pointer */
.tt-inapp-toast::before {
  content: '';
  position: absolute;
  top: -6px;
  left: var(--arrow-left, 24px) !important;
  width: 10px;
  height: 10px;
  background-color: #121212 !important;
  border-left: 1px solid #27272a !important;
  border-top: 1px solid #27272a !important;
  transform: rotate(45deg);
  z-index: 2;
}
.dtWrap{
  text-transform: capitalize;
}

.tt-inapp-toast.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}

/* Inner elements styling */
.tt-notif-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tt-notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.tt-notif-body {
  flex: 1;
  min-width: 0;
}

.tt-notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-notif-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-notif-badge {
  font-size: 0.6rem;
  background: #3b82f6;
  color: #fff;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: bold;
}

.tt-notif-msg {
  font-size: 0.78rem;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.tt-notif-close {
  background: none;
  border: none;
  color: #71717a;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 4px;
}

.tt-notif-close:hover {
  color: #ffffff;
}
/* Add this class to <div class="tt-chat-header is-calling"> */
.tt-chat-header.is-calling {
  background-color: rgba(34, 197, 94, 0.12); /* Subtle green background tint */
  border-bottom-color: rgba(34, 197, 94, 0.3) !important;
  animation: headerPulse 2s ease-in-out infinite;
}

/* Smooth background pulse animation */
@keyframes headerPulse {
  0%, 100% {
    background-color: #3e47ff;
    box-shadow: inset 0 0 0px rgba(34, 197, 94, 0);
  }
  50% {
    background-color:#3e47ff;
    box-shadow: inset 0 0 12px rgba(34, 197, 94, 0.15);
  }
}
.answerBtn{
  display: none !important;
  padding: .25rem !important;
}

.svgSvg{
      width: 1.25rem;
    display: flex;
}
.tt-chat-host-status-info{
      font-size: .7rem;
      display: none;
}
.tt-chat-header.is-calling .tt-call-btn {
  color: #99ff93 !important; /* Changes icon to green when calling */
  position: relative;
  animation: callWiggle 1.2s ease-in-out infinite;

}
.host-status-wrap{
      display: flex;
    gap: .25rem;
}

/* Optional glowing ring pulse around the call button */
.tt-chat-header.is-calling .tt-call-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: callPulse 1.2s ease-out infinite;
  z-index: -1;
}

/* Keyframes for phone wiggle */
@keyframes callWiggle {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* Keyframes for glow pulse */
@keyframes callPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
/* Blink animation */
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* 1. Hide the green dot when calling */
.tt-chat-header.is-calling .onlinedot {
  display: none !important;
}

/* 2. Hide original status text and apply blink animation */
.tt-chat-header.is-calling .tt-chat-host-status {
  font-size: 0; /* Hides original "Online" text */
  animation: statusBlink 1.2s ease-in-out infinite;
}

/* 3. Insert the new "is calling you..." text */
.tt-chat-header.is-calling .tt-chat-host-status::after {
  content: "is calling you...";
  font-size: 0.7rem;
  font-weight: 500;
  color: #4ade80;
}
.mBtnBar {
    position: absolute;
    bottom:2rem;
    left: 1.5rem;
    display: flex;
    gap: 1rem;
    /* transform: scale(1.5); */
    height: 6dvw;
    width: calc(100% - 3rem);
}
.svgM {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menuTT {
    font-family: var(--font2);
    font-size: 1rem;
    opacity: .8;

    margin-right: 0;
}
.selectedItem {
    opacity: 1 !important;
}
.menuItem {
    font-family: var(--font2);
    font-size: 1.5rem;
    opacity: .3;
    margin: 1rem 0;
}
.clicked{
  background-color: #2b2e8b !important;
}

.tt-notif-connection-card {
  width: 100%;
  max-width: 580px;

  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
  position: relative;

}

.tt-notif-body-wrapper {
  display: flex;
  flex-direction: row;
}

/* Left Content Styles */
.tt-notif-content-left {
  flex: 1.2;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.tt-notif-tag {
  color: #a1bfff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.tt-notif-heading {

  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 14px 0;
  color: #f4f4f5;
  font-weight: 400;
}

.tt-notif-host-name {
  color: #ffffff;
  font-weight: 600;
}

/* Stylized Host Info */
.tt-notif-host-profile {
  display: flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.tt-notif-host-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;

}

.tt-notif-host-details {
  display: flex;
  flex-direction: column;
}

.tt-notif-host-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #a1a1aa;
  letter-spacing: 0.5px;
}

.tt-notif-host-status {
  font-size: 12px;
  color: #e4e4e7;
  font-weight: 500;
}

.tt-notif-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #a1a1aa;
  margin: 0 0 14px 0;
}

.tt-notif-action-hint {
     margin-top: auto;
    font-size: .75rem;
    color: #ffffff;
    background: #3e47ff;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Right Media Block */
.tt-notif-media-right {
  flex: 0.8;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.tt-notif-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}
.notBg{
  position: fixed;
  background: black;
  top: 7dvh;
  height: 93dvh;
  width: 100dvw;
  left: 0;
}
.tt-notif-quote-container {
  position: relative;
  z-index: 2;
  text-align: center;
    display: none;
}

.tt-notif-quote {

  font-size: 22px;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  display: none;
}

.tt-notif-quote-line {
  width: 40px;
  height: 2px;
  background-color: #8cc63f;
  margin: 0 auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 520px) {
  .tt-notif-body-wrapper {
    flex-direction: column-reverse;
  }

  .tt-notif-media-right {
    min-height: 140px;
  }
}












.sTitle,
.sTitle2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.sTitle {
  font-size: 2.5rem;
      font-family: var(--font-script);
}
.wa svg {
    fill: white;
    width: 1.4rem;
    height: 1.4rem;
}
.static #yourTripBtn{
  display: none;
}
.static .user-actions{
  display: none;
}
.static .top-nav{
      background-color: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(12px);

}
.comBtnWrap {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 3rem);
    align-items: center;
}
.comBtn {
    width: 1.5rem;
    height: 1.5rem;
}
.cBtn {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.comBtn {
    width: 1.5rem;
    height: 1.5rem;
}
.footerS {
       background-color: black;
    width: calc(100%);
    color: white;
    font-size: .5rem;
    text-align: right;
    margin: auto;
    padding-right: 3rem;
    padding: 0;
    color: grey;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 1000;
    right: 0;
    height: .5rem;
    DISPLAY: grid;
    GRID-TEMPLATE-COLUMNS: 1FR 1FR;
    position: absolute;
    bottom: 0;
    padding: 1rem;
}

.sTitle2 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
      font-family: var(--font-sans);
}

/* Category Badge Titles (e.g., FOR TRAVELLERS) */
.sectionTitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 3.5rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

/* Description Text */
.sDesc,
.sDesc2 {
  font-family: var(--font-sans);
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Category Filter Pills (Travellers, Homestays, etc.) */
.mainBtns {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
}

.mBtn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mBtn.selected,
.mBtn:hover {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
}
.cswWrapInner{
  padding: 2rem;
}
.tSection{
      margin-bottom: 2rem;
}


/* Card Container */
.sb-card {
    position: relative;
    width: calc(100% - 2rem);
  

    /* border-radius: 16px; */
    overflow: hidden;
    background-color: #08090a;
    border: 2px solid rgb(0 0 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    margin: 1rem;
        border-radius: 10px;
}

/* Background Image & Overlay Gradient */
.sb-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}

.sb-card-overlay {
    position: absolute;
    inset: 0;
    background: #000000de;
    backdrop-filter: blur(12px);
    z-index: 2;
}
.comment-content .comment-text{
  margin: 0 !important;
}
.comment-content .comment-actions{
  margin-left: 0 !important;
}
/* Content Panel */
.sb-card-content {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Header Section */
.sb-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sb-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3b52d4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(59, 82, 212, 0.4);
}

.sb-meta {
  display: flex;
  flex-direction: column;
}

.sb-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8e8e93;
  text-transform: uppercase;
}

.sb-meta-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* Title & Accent */
.sb-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0.75rem 0 0.25rem 0;
  letter-spacing: -0.02em;
}
.static .place-info-panel{
  gap: 0 !important;
}
.sb-accent-line {
  width: 28px;
  height: 3px;
  background-color: #3b52d4;
  border-radius: 2px;
    margin: 0.75rem 0;
}

/* Description */
.sb-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #a1a1aa;
  margin: 0;
  max-width: 85%;
}

/* Action Pill Button */
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.sb-btn:hover {
  background: #ffffff;
  color: #08090a;
  border-color: #ffffff;
}

.sb-btn:hover .sb-arrow {
  transform: translateX(3px);
}

.sb-arrow {
  transition: transform 0.2s ease;
}
.tt-trip-notif-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #63185638;
    /* border: 1px solid #3e47ff; */

    padding: .5rem 1.25rem;
}

.tt-trip-notif-content {
     display: grid;
    align-items: center;
    /* gap: 10px; */
    grid-template-columns: 3rem auto;
    justify-content: center;
    gap: 1rem;
}

.tt-trip-notif-icon {
    color: #fff;
    opacity: .25;
    font-size: 1.5rem;
  margin: auto;
  flex-shrink: 0;
}

.tt-trip-notif-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.tt-trip-notif-text p {
  color: #a0aec0;
  font-size: 0.7rem;
  line-height: 1.3;
  margin: 0;
  width: 80%;
}

.tt-trip-notif-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tt-trip-notif-btn {
background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    background: linear-gradient(135deg, #3e47ff 0%, #3e47ff 100%);
    text-transform: uppercase;
}

.tt-trip-notif-btn:hover {
  background: #2563eb;
}

.tt-trip-notif-dismiss {
  background: transparent;
  border: none;
  color: #718096;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 4px;
}

.tt-trip-notif-dismiss:hover {
  color: #ffffff;
}

/* Final Walk Container */
.final-walk-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;

}

.walk-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Walk Main Info Row */
.walk-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.walk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.walk-icon svg{
  width: 2rem;
}

.walk-details {
  display: flex;
  flex-direction: column;
}

.walk-heading {
    font-size: .7rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.walk-sub {
  font-size: .7rem;
  color: #a0a0a0;
  margin-top: 2px;
}

/* Walk Extra Notes Row */
.walk-extras {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.walk-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #b0b0b0;
}

.walk-extra-item svg {
  flex-shrink: 0;
  color: #888888;
}
.pinIcon {
    width: 1rem;
    background-position: center;
    background-size: cover;
    height: 1rem;
    background-repeat: no-repeat;
    background-image: url(/images/svg/pin.svg);
    margin: auto;
    margin-right: 0;
}
.pinIconMWrap {
   
    height: 1.5rem !important;
    margin-right: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
        gap: .25rem;
}

.search-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    /* backdrop-filter: blur(4px); */
    display: flex;
    justify-content: center;
    margin-top: 7dvh;

    transition: opacity 0.2s ease;
    z-index: 1;
}

.search-backdrop.search-hidden {
  display: none;
}





.search-modal-container {
  width: 90%;
  max-width: 650px;
  background: #101010;
  border-radius: 8px;
  padding: .5rem;
  height: max-content;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin-top: 1rem;
}

.search-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal-icon {
  position: absolute;
  left: 14px;
  color: #8197a4;
  pointer-events: none;
}

.search-editable-input {
  width: 100%;
  padding: 12px 40px 12px 44px;


  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  min-height: 20px;
}

.search-editable-input:focus {
  border-color: #ffffff;
}

.closeIcon {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #8197a4;
  cursor: pointer;
  font-size: 16px;
}
  @keyframes tt-spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }
.closeIcon.hide {
  display: none;
}
.searchResults {
  background: #060606; /* Matches modal container background */

  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10000;
  text-transform: capitalize;
}

/* Ensure padding matches input alignment */
.searchResults > div {
  padding: 12px 16px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.searchResults > div:last-child {
  border-bottom: none;
}



/* Thin Top Loading Bar */
.thin-loader-bar {
  position: fixed;
  top: 0; /* Change to bottom: 0; if you prefer it at the very bottom edge */
  left: 0;
  height: 4px;
  width: 0%;
  background: #3e47ff; /* Bright Cyan Accent */

  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: width 0.3s ease-out, opacity 0.3s ease-in-out;
}
.bottom-bar{
      position: fixed;
    bottom: 0;
    background: #000;
    width: 100dvw;
       height: 10dvw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
        background-color: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(12px);
        z-index: 100000;
    display: none;
}
.bottom-bar .icon-btn{
  margin: auto;
}