/** Global Font Refinement **/
.seo-tt-top-picks-container, 
.seo-tt-premium-card,
.seo-tt-editor-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.5;
}

/** 
 * BLOCK 1: Top Picks - FIXED GRID
 */
.seo-tt-top-picks-container {
    background: #fbfbfd;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
}
.seo-tt-main-title { 
    text-align: center; 
    color: #1d1d1f; 
    font-size: 26px; 
    font-weight: 800; 
    margin: 0 0 30px 0;
}
.seo-tt-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.seo-tt-item-card { 
    background: #ffffff; 
    border: 1px solid #f0f0f0;
    border-radius: 14px; 
    padding: 15px 20px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}
.seo-tt-item-card:hover { transform: translateY(-2px); }
.seo-tt-item-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 8px; 
}
.seo-tt-medal { 
    font-size: 22px; 
    font-weight: bold;
    min-width: 30px;
}
.seo-tt-item-label { 
    background: #f2f2f7;
    color: #5856d6;
    padding: 2px 10px;
    border-radius: 6px;
    text-transform: uppercase; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 0.5px;
}
.seo-tt-item-body { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 15px; 
}
.seo-tt-product-name { 
    margin: 0; 
    font-size: 18px; 
    color: #1d1d1f; 
    font-weight: 700; 
    flex: 1; 
}
.seo-tt-item-actions { display: flex; gap: 8px; }
.seo-tt-btn { 
    text-decoration: none !important; 
    padding: 8px 16px; 
    border-radius: 8px; 
    font-size: 13px; 
    font-weight: 600; 
    transition: opacity 0.2s ease;
}
.seo-tt-btn-review { background: #f2f2f7; color: #1d1d1f !important; border: 1px solid #e5e5ea; }
.seo-tt-btn-affiliate { background: #0071e3; color: #ffffff !important; }

/**
 * BLOCK 2: Product Highlight PREMIUM
 * Based on Heatmap Design
 */
.seo-tt-premium-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f2;
    overflow: hidden;
}

.seo-tt-premium-rank-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e27d60; /* Soft terracotta color from image */
    color: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(226,125,96, 0.3);
}

.seo-tt-premium-grid {
    display: grid;
    grid-template-columns: 180px 1fr 280px;
    gap: 30px;
    align-items: center;
}

.seo-tt-premium-image-col {
    text-align: center;
    padding-left: 20px;
}
.seo-tt-main-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.seo-tt-premium-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seo-tt-premium-product-title {
    font-size: 24px;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0 0 20px 0;
    line-height: 1.25;
}

.seo-tt-premium-cta-btn {
    display: inline-block;
    background: #b14b2d; /* Matching heatmap high intensity zone */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(177,75,45, 0.2);
}
.seo-tt-premium-cta-btn:hover {
    background: #913c24;
    transform: translateY(-2px);
}

.seo-tt-premium-pros-col {
    height: 100%;
}
.seo-tt-pros-container {
    background: #fdf2f2; /* Soft pinkish background from image */
    padding: 20px;
    border-radius: 16px;
    height: 100%;
}
.seo-tt-pros-header {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1f;
}
.seo-tt-pros-items {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #48484a;
}
.seo-tt-pros-items li {
    margin-bottom: 8px;
}

/** 
 * EDITOR STYLES 
 */
.seo-tt-editor-wrapper {
    background: #f9f9fb;
    border: 2px dashed #d1d1d6;
    padding: 20px;
    border-radius: 12px;
}
.editor-label { color: #8e8e93; font-size: 12px; text-transform: uppercase; margin-bottom: 15px; }
.seo-tt-editor-main-title { border: none !important; background: transparent; font-size: 24px; font-weight: 800; text-align: center; }
.seo-tt-editor-item-box {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #e5e5ea;
}
.item-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-weight: bold; }
.add-item-btn { margin-top: 15px !important; width: 100%; justify-content: center; }

.seo-tt-premium-card-editor {
    border: 2px solid #0071e3;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    position: relative;
}
.editor-bg {
    background: #f2f2f7;
    border-radius: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fake-btn { text-align: center; border: 1px dashed rgba(255,255,255,0.5); opacity: 0.9; }

/** RESPONSIVENESS **/
@media (max-width: 900px) {
    .seo-tt-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .seo-tt-premium-image-col { padding: 0; }
    .seo-tt-premium-rank-tag { top: 10px; left: 10px; }
    .seo-tt-item-body { flex-direction: column; align-items: flex-start; }
    .seo-tt-item-actions { width: 100%; justify-content: stretch; }
    .seo-tt-btn { flex: 1; }
}