/* Thot Navigation Bar */
.thot-nav-bar {
    background: #ffffff;
    height: 60px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.thot-nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.thot-nav-logo img { height: 45px; margin-right: 40px; }

.thot-nav-list {
    display: flex;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 60px;
}

.thot-nav-item { height: 100%; display: flex; align-items: center; }

.thot-nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    transition: 0.2s;
}

.thot-nav-link:hover { color: #4f46e5; }
.thot-nav-icon { height: 20px; }
.thot-nav-chevron { font-size: 10px; margin-top: 2px; color: #94a3b8; transition: 0.2s; }
.thot-nav-item:hover .thot-nav-chevron { transform: rotate(180deg); }

/* Megamenu Full-Width */
.thot-megamenu {
    position: absolute;
    top: 60px;
    left: 0;    
    width: 96vw;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.thot-nav-item:hover .thot-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.thot-megamenu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
}

/* 2-Column Grid */
.thot-megamenu-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
}

/* Item Lists */
.thot-l2-list, .thot-l3-list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.thot-l2-item, .thot-l3-item { margin-bottom: 1rem; cursor: pointer; }

/* Grid Layout for Level 3 Tool List */
.thot-l3-list {
    display: flex;
    flex-flow: column;
    gap: 1;
}

.thot-item-card-wrapper { 
    display: block; 
    text-decoration: none; 
    color: inherit; 
    text-align: left;
}

.thot-item-card {
    padding: 1.5rem;
    background: #F7F6FB;
    border: none !important;
    border-radius: 10px;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thot-item-card.thot-has-link { padding-right: 3.5rem; }

.thot-item-card.thot-item-more {
    height: 50px;
    padding: 0 3.5rem 0 1.5rem;
    background: transparent !important;
    border: solid 2px #F7F6FB !important;
    justify-content: center;    
}
.thot-item-card.thot-item-more .thot-item-title{
    font-weight: 400;
    font-size: 0.9rem;
}
.thot-item-card.thot-item-more:hover{
    background: #F7F6FB !important;
}

/* Interaction Highlights */
.thot-l2-item:hover .thot-item-card, .thot-l2-item.is-active .thot-item-card,
.thot-l3-item:hover .thot-item-card { background: #EBE9FE; }

.thot-item-title { font-weight: 700; color: #1e293b; font-size: 16px; display: block; }
.thot-item-preview { font-size: 14px; color: #475569; margin: 0; line-height: 1.5; }

/* Circular Arrow for links */
.thot-item-card::after {
    content: '>';
    
    display: flex;
    align-items: center;
    justify-content: center;    

    position: absolute;    
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;

    transform: translateY(-50%);
    
    font-size: 16px;
    font-weight: 400;
    color: #818CF8;
    border: solid 1px #818CF8;
    border-radius: 50%;
}

.thot-item-card.thot-has-link::after {
    content: ' ';
    
    background-image: url('../img/ui/arrow-top.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% 60%;
    filter: brightness(0) saturate(100%) invert(59%) sepia(33%) saturate(1137%) hue-rotate(203deg) brightness(96%) contrast(90%);

    right: 10px;
    top: 20px;
    width: 24px;
    height: 24px;
    
    transform: translateY(-50%) rotate(45deg);    

    border: none; 
}

/* Content Pane */
.thot-pane { 
    display: none; 
    animation: thotFadeIn 0.4s ease forwards;
}

.thot-pane.is-active { display: block; }

@keyframes thotFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Generic Content View (renamed from feature) */
.thot-content-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    background: #F7F6FB;
    border-radius: 10px;
    padding: 2.5rem;
}

.thot-content-media {
    width: 100%;
    border: solid 1px black;
    border-radius: 10px;
}

.thot-content-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: block;
}
.thot-content-desc {
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 800px;
}

