/* =========================================================
   ASSETS/CSS/PREVIEWS.CSS - ALL PLATFORMS MOCKUP STYLES
   ========================================================= */

.previews-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .previews-wrapper-grid {
        grid-template-columns: 1fr;
    }
}

.accordion-preview-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ebdfee;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.acc-header-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    transition: 0.2s;
}
.acc-header-btn:hover {
    background: #fff8f5;
    color: #ff5f0f;
}
.acc-title-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.acc-content-body {
    padding: 0 12px 12px 12px;
    transition: all 0.2s ease-in-out;
}
.acc-content-body.collapsed {
    display: none;
}

/* ---------------------------------------------------------
   1. WHATSAPP MOCKUPS (CHAT & PROFILE / ABOUT)
   --------------------------------------------------------- */
/* WhatsApp Chat Screen */
.wa-screen {
    background: #0b141a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222d34;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wa-header {
    background: #202c33;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aebac1;
}
.wa-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wa-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6b7c85;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.wa-username {
    font-size: 12px;
    font-weight: 600;
    color: #e9edef;
    line-height: 1.2;
}
.wa-status {
    font-size: 9px;
    color: #25d366;
}
.wa-chat-body {
    background: #0b141a;
    background-image: radial-gradient(#1f2c34 1px, transparent 1px);
    background-size: 12px 12px;
    padding: 10px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.wa-bubble-sent {
    background: #005c4b;
    color: #e9edef;
    border-radius: 8px 0 8px 8px;
    padding: 6px 10px;
    font-size: 12px;
    max-width: 90%;
    align-self: flex-end;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.wa-meta {
    font-size: 9px;
    color: #8696a0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 2px;
}

/* WhatsApp Profile / About Status Screen */
.wa-profile-screen {
    background: #111b21;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222d34;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    padding: 12px;
    color: #e9edef;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wa-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #202c33;
}
.wa-big-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00a884, #25d366);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.wa-profile-row {
    margin-bottom: 8px;
    background: #202c33;
    padding: 8px 10px;
    border-radius: 8px;
}
.wa-row-label {
    font-size: 10px;
    color: #8696a0;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.wa-row-val {
    font-size: 13px;
    font-weight: 600;
    color: #e9edef;
    word-wrap: break-word;
}

/* ---------------------------------------------------------
   2. INSTAGRAM MOCKUPS (BIO & FEED POST)
   --------------------------------------------------------- */
/* Instagram Bio Screen */
.ig-screen {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ig-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #262626;
    margin-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 4px;
}
.ig-profile-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ig-story-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ig-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ff5f0f;
}
.ig-counts {
    display: flex;
    flex: 1;
    justify-content: space-around;
    text-align: center;
}
.ig-stat-num {
    font-size: 11px;
    font-weight: bold;
    color: #262626;
}
.ig-stat-label {
    font-size: 9px;
    color: #737373;
}
.ig-bio-section {
    margin-top: 6px;
    font-size: 11px;
    color: #262626;
    line-height: 1.4;
}
.ig-bio-name { font-weight: bold; }
.ig-bio-text { color: #333; word-wrap: break-word; }
.ig-btn-edit {
    background: #efefef;
    border: none;
    border-radius: 6px;
    padding: 4px;
    font-size: 10px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-top: 6px;
    color: #262626;
}

/* Instagram Caption Feed Post */
.ig-feed-screen {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ig-feed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.ig-feed-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff5f0f, #fe107b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.ig-feed-user {
    font-size: 12px;
    font-weight: bold;
    color: #262626;
}
.ig-feed-actions {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #262626;
    margin: 6px 0;
    padding-top: 4px;
    border-top: 1px solid #f4f4f4;
}
.ig-feed-caption {
    font-size: 11px;
    color: #262626;
    line-height: 1.4;
    word-wrap: break-word;
    background: #faf8fb;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #f0eded;
}

/* ---------------------------------------------------------
   3. DISCORD MESSAGE MOCKUP
   --------------------------------------------------------- */
.discord-screen {
    background: #313338;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    color: #dbdee1;
    font-family: "gg sans", "Noto Sans", sans-serif;
}
.discord-header-bar {
    font-size: 11px;
    color: #949ba4;
    margin-bottom: 8px;
    border-bottom: 1px solid #3f4147;
    padding-bottom: 4px;
}
.discord-msg-row {
    display: flex;
    gap: 10px;
}
.discord-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.discord-user-title {
    font-size: 12px;
    font-weight: 600;
    color: #f2f3f5;
    display: flex;
    align-items: center;
    gap: 6px;
}
.discord-bot-badge {
    background: #5865F2;
    color: #fff;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: bold;
}
.discord-text-body {
    font-size: 12px;
    color: #dbdee1;
    margin-top: 3px;
    word-wrap: break-word;
}

/* ---------------------------------------------------------
   4. SNAPCHAT CHAT MOCKUP
   --------------------------------------------------------- */
.snap-screen {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    color: #fff;
    border: 1px solid #FFFC00;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.snap-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: bold;
    color: #FFFC00;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 4px;
}
.snap-bubble {
    background: #232323;
    border-left: 3px solid #00f2fe;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    margin-top: 4px;
    word-wrap: break-word;
}