/* =====================================================
SOCIAL PUBLICATOR v8
THEME ENGINE ARCHITECTURE
===================================================== */


/* =====================================================
ROOT
===================================================== */

.lh-social-publicator{
    width:100%;
    min-height:100vh;
    padding:40px;
    box-sizing:border-box;
    border-radius:18px;
    background:
        radial-gradient(circle at top left, rgba(0,140,255,0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(140,0,255,0.10), transparent 35%),
        #07090d;
    color:#fff;
    font-family:Arial, sans-serif;
}


/* =====================================================
LAYOUT
===================================================== */

.lh-social-body{
    display:flex;
    gap:30px;
}

.lh-social-left,
.lh-social-right{
    flex:1;
    min-height:700px;
    padding:30px;
    border-radius:24px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    box-shadow:0 0 40px rgba(0,0,0,0.35);
}


/* =====================================================
CARD SYSTEM
===================================================== */

.lh-social-card{
    margin-bottom:25px;
    padding:22px;
    border-radius:20px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

.lh-social-card-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
}


/* =====================================================
HEADER
===================================================== */

.lh-social-header{
    background:linear-gradient(180deg,#0e1118,#0a0d14);
    border:3px solid rgba(255,255,0,0.45);
    border-radius:14px;
    padding:18px 22px;
    margin-bottom:18px;
    box-shadow:
        0 0 0 2px rgba(255,255,0,0.08),
        0 10px 30px rgba(0,0,0,0.6);
    text-align:center;
}

.lh-social-title{
    font-size:22px;
    font-weight:900;
    letter-spacing:1.5px;
    font-family:"Times New Roman", Times, serif;
    color:#f5c518;
    text-transform:uppercase;
}

.lh-social-subtitle{
    margin-top:6px;
    font-size:12px;
    color:#8b949e;
}

/* EDIT BUTTON */
.lh-ai-edit-btn-social{
    position:absolute;
    right:25px;
    top:14px;
    z-index:10;

    display:flex;
    align-items:center;

    padding:8px 18px;
    border-radius:10px;
    width:120px;

    background:#111827;
    border:1px solid rgba(0,229,255,0.25);

    color:#00e5ff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;

    transition:0.25s;
}

.lh-ai-edit-btn-social:hover{
    transform:translateY(-1px);
    border-color:rgba(0,229,255,0.5);
}

.lh-ai-edit-btn-social.locked{
    opacity:0.4;
    pointer-events:none;
}

/* =====================================================
PLATFORM SYSTEM
===================================================== */

.lh-platform-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    padding:16px;
    border:1px solid rgba(0,255,140,0.5);
    border-radius:18px;
    background:rgba(0,255,140,0.04);
    box-shadow:
        inset 0 0 12px rgba(0,255,140,0.06),
        0 0 20px rgba(0,255,140,0.12);
}

.lh-platform-btn{
    position:relative;
    overflow:hidden;
    transform:translateZ(0);

    height:52px;
    border:none;
    border-radius:14px;
    cursor:pointer;

    background:rgba(255,255,255,0.06);
    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:all 0.25s ease;
}

.lh-platform-btn:hover{
    background:rgba(255,255,255,0.1);
    transform:translateY(-2px);
}

/* =====================================================
PLATFORM BUTTON STATE FEEDBACK (ENHANCED)
===================================================== */



/* active glow pulse */
.lh-platform-btn.active{
    background:linear-gradient(135deg,#0084ff,#7a00ff);
    box-shadow:
        0 0 18px rgba(0,132,255,0.45),
        0 0 40px rgba(122,0,255,0.25);
    transform:translateY(-1px) scale(1.02);
}

/* animated indicator bar */
.lh-platform-btn.active::after{
    content:"";
    position:absolute;
    bottom:0;
    left:10%;
    width:80%;
    height:2px;
    background:linear-gradient(90deg,#00e5ff,#7a00ff);
    border-radius:2px;
    animation:lhPlatformGlow 1.8s ease-in-out infinite;
}

/* subtle hover even when active */
.lh-platform-btn.active:hover{
    transform:translateY(-2px) scale(1.03);
}

/* inactive dim effect when another is active */
.lh-platform-grid:has(.lh-platform-btn.active) .lh-platform-btn:not(.active){
    opacity:0.55;
    filter:saturate(0.6);
}

/* animation */
@keyframes lhPlatformGlow{
    0%{
        opacity:0.4;
        transform:scaleX(0.9);
    }
    50%{
        opacity:1;
        transform:scaleX(1);
    }
    100%{
        opacity:0.4;
        transform:scaleX(0.9);
    }
}




.lh-platform-btn.active{
    transition:all 0.25s ease;
}

/* =========================
   PLATFORM STATUS SYSTEM
========================= */

.lh-platform-btn.status-draft {
    border: 1px solid rgba(255,255,255,0.15);
}

.lh-platform-btn.status-pending {
    border: 1px solid rgba(255, 165, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.lh-platform-btn.status-posted:not(.active){
    background:linear-gradient(
        135deg,
        #00c853,
        #009624
    );
}

.lh-platform-btn.active.status-published{
    border:2px solid #00c853;
}

/* =========================
DRAFT
========================= */

.lh-platform-btn.status-draft{
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
}

/* =========================
PENDING
========================= */

.lh-platform-btn.status-pending{
    border:1px solid rgba(255,165,0,.8);
    box-shadow:
        0 0 12px rgba(255,165,0,.20);
}

/* =========================
POSTED
========================= */

.lh-platform-btn.status-posted{
    border:1px solid rgba(0,200,83,.8);
    box-shadow:
        0 0 16px rgba(0,200,83,.25);
}

/* =========================
DENIED
========================= */

.lh-platform-btn.status-denied{
    border:1px solid rgba(255,80,80,.8);
    box-shadow:
        0 0 16px rgba(255,80,80,.22);
}

.lh-platform-btn::before{
    content:"";
    position:absolute;
    top:10px;
    right:10px;

    width:10px;
    height:10px;

    border-radius:50%;
    background:#555;
}

.lh-platform-btn.status-draft::before{
    background:#777;
}

.lh-platform-btn.status-pending::before{
    background:#ffb300;

    box-shadow:
        0 0 10px rgba(255,179,0,.7);
}

.lh-platform-btn.status-posted::before{
    background:#00c853;

    box-shadow:
        0 0 12px rgba(0,200,83,.8);
}

.lh-platform-btn.status-denied::before{
    background:#ff5252;

    box-shadow:
        0 0 12px rgba(255,82,82,.8);
}

.lh-platform-btn.active.status-posted{
    border:2px solid #00c853;
}

.lh-platform-btn.active.status-pending{
    border:2px solid #ffb300;
}

.lh-platform-btn.active.status-denied{
    border:2px solid #ff5252;
}

.lh-platform-publish-btn.status-posted{
    background:
        linear-gradient(
            135deg,
            #00c853,
            #009624
        );
}

.lh-platform-publish-btn.status-pending{
    background:
        linear-gradient(
            135deg,
            #ff9800,
            #ff6f00
        );
}

.lh-platform-publish-btn.status-denied{
    background:
        linear-gradient(
            135deg,
            #ff5252,
            #c62828
        );
}

.lh-platform-btn {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
}

.lh-platform-status {
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* =====================================================
SELECT SYSTEM
===================================================== */

/* FIELD TEXT */
.lh-social-select{
    color:#ffffff;
}

/* DROPDOWN OPTIONS */
.lh-social-select option{
    color:#ffffff;
    background:#000000;
}

.lh-social-select{
    width:100%;
    height:52px;
    padding:0 14px;
    margin-bottom:15px;
    border-radius:14px;
    background:#000;
    border:1px solid rgba(212,175,55,0.75);
    
    outline:none;
    box-shadow:
        0 0 12px rgba(212,175,55,0.12),
        inset 0 0 6px rgba(212,175,55,0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* FOCUS */
.lh-social-select:focus{
    border-color:#D4AF37;
    box-shadow:
        0 0 18px rgba(212,175,55,0.28),
        inset 0 0 8px rgba(212,175,55,0.08);
}

/* DROPDOWN OPTIONS */
.lh-social-select option{

    background:#000;
    color:#D4AF37;
}

/* Drop douwn button */
/* Chrome / Edge / Safari */
.lh-social-select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:
        linear-gradient(45deg, transparent 50%, #D4AF37 50%),
        linear-gradient(135deg, #D4AF37 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size:6px 6px;
    background-repeat:no-repeat;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-image 0.25s ease;
}

/* HOVER → BLUE ARROW */
.lh-social-select:hover{
    background-image:
        linear-gradient(45deg, transparent 50%, #00a2ff 50%),
        linear-gradient(135deg, #00a2ff 50%, transparent 50%);
}

/* ===================================
OUTPUT BLOCKS (CAPTION / HASHTAGS)
===================================== */

.lh-social-output-block{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.lh-output-label{
    font-size:12px;
    opacity:0.7;
}

/* OUTPUT BOX */
.lh-output-box{
    min-height:80px;
    padding:12px;
    border-radius:14px;
    background:rgba(0,0,0,0.35);
    /* BLUE BORDER */
    border:1px solid rgba(0,140,255,0.45);
    box-shadow:
        0 0 14px rgba(0,140,255,0.10),
        inset 0 0 8px rgba(0,140,255,0.04);
    color:#fff;
    font-size:13px;
    white-space:pre-wrap;
    position:relative;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* HOVER */
.lh-output-box:hover{
    border-color:rgba(0,140,255,0.75);
    box-shadow:
        0 0 18px rgba(0,140,255,0.22),
        inset 0 0 10px rgba(0,140,255,0.08);
}

/* TEXTAREA */
.lh-output-box textarea{
    width:100%;
    height:100px;
    background:transparent;
    border:none;
    outline:none;
    color:#ffffff;
    font-size:13px;
    line-height:1.5;
    resize:none;
    font-family:inherit;
    cursor:copy;
}

.lh-output-box textarea::-webkit-scrollbar{
    width:6px;
}

.lh-output-box textarea::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.2);
    border-radius:10px;
}

.lh-output-box textarea::-webkit-scrollbar-track{
    background:transparent;
}

/* =====================================================
CAPTION FOUNDATION
===================================================== */

.lh-ig-caption,
.lh-fb-caption,
.lh-pinterest-caption,
.lh-tw-caption{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:16px;
    margin-top:14px;
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.03)
        );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);
}


/* =====================================================
CAPTION TITLE
===================================================== */

.lh-cap-title,
.lh-fb-title,
.lh-caption-title{
    font-size:18px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
    letter-spacing:0.2px;
    padding-bottom:8px;
    margin-bottom:2px;
    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

/* =====================================================
ARTIST
===================================================== */

.lh-cap-artist,
.lh-fb-artist{
    font-size:13px;
    font-weight:600;
    color:#D4AF37;
    opacity:0.95;
}

/* =====================================================
TAGLINE
===================================================== */

.lh-cap-tagline,
.lh-fb-tagline{
    font-size:14px;
    line-height:1.5;
    font-style:italic;
    color:rgba(255,255,255,0.88);
}

/* =====================================================
BODY / SUMMARY
===================================================== */

.lh-cap-body,
.lh-fb-body,
.lh-caption-body{
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,0.78);
    white-space:pre-wrap;
}

/* =====================================================
HASHTAGS
===================================================== */

.lh-ig-hashtags{
    margin-top:12px;
    font-size:13px;
    line-height:1.6;
    color:#4da3ff;
    word-break:break-word;
}






/* =======================
SOCIAL BUTTON LINKS
========================= */

.lh-publicator-social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.lh-social-link{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    color:#fff;
    text-decoration:none;

    transition:all .25s ease;

    box-shadow:
        0 4px 12px rgba(0,0,0,.15);
}

.lh-social-link svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

.lh-social-link:hover{
    transform:translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0,0,0,.25);
}

/* Instagram */
.lh-social-link.instagram{
    background:linear-gradient(
        135deg,
        #f58529,
        #dd2a7b,
        #8134af
    );
}

/* Facebook */
.lh-social-link.facebook{
    background:#1877f2;
}

/* Pinterest */
.lh-social-link.pinterest{
    background:#e60023;
}

/* X / Twitter */
.lh-social-link.twitter{
    background:#000;
    border:1px solid rgba(255,255,255,.35);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.08),
        0 4px 12px rgba(0,0,0,.15);
}

.lh-social-link.twitter svg{
    width:24px;
    height:24px;
    fill:#fff;
}

.lh-social-link.twitter:hover{
    border-color:rgba(255,255,255,.8);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.15),
        0 8px 20px rgba(0,0,0,.25);

    transform:translateY(-3px);
}




















/* =====================================================
RIGHT PANEL OUTPUT BOX
===================================================== */

.lh-output-box{
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,0.82);
}

/* =====================================================
TEXTAREA
===================================================== */

.lh-output-box textarea{
    font-size:14px;
    line-height:1.7;
    font-family:inherit;
    color:#fff;
}

/* =====================================================
VISUAL SEPARATION INSIDE OUTPUT
===================================================== */

.lh-output-box textarea::selection{
    background:rgba(0,140,255,0.35);
}

/* =====================================================
PREVIEW SYSTEM CORE
===================================================== */

.lh-preview-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.lh-preview-box{
    display:none;
}

.lh-preview-box.active{
    display:block;
}

/* HEADER */
.lh-preview-header{
    position:relative;
    top:0px;
    left:0px;
    z-index:40;
    display:flex;
    align-items:center;
    
    gap:10px;
}

/* AVATAR */
.lh-preview-header .lh-avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.45);
    border:1px solid rgba(255,255,255,0.18);
   color:#ffd400;
    font-size:14px;
    font-weight:700;
    flex-shrink:0;
}

/* USERNAME */
.lh-preview-header .lh-username{
    font-size:14px;
    font-weight:600;
    color:#fff;
    white-space:nowrap;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.65);
}

/* =====================================================
PREVIEW FOUNDATION
===================================================== */

.lh-preview-box{
    position:relative;
    width:100%;
    max-width:420px;
    margin:auto;
    border-radius:32px;
    overflow:hidden;
    background:#111;
    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

/* =====================================================
IMAGE
===================================================== */
.lh-preview-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
 
.lh-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =====================================================
LOCK WRAPPER
===================================================== */

.lh-preview-lock-wrapper{
    position:relative;
}


/* =====================================================
BLUR PREVIEW WHEN LOCKED
===================================================== */

.lh-preview-lock-wrapper.locked .lh-preview-wrapper{
    filter:
        blur(2px)
        saturate(0.9)
        brightness(0.95);
    transform:scale(1.03);
    opacity:0.85;
    pointer-events:none;
    user-select:none;
    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}


/* =====================================================
NORMAL STATE (UNLOCKED)
===================================================== */

.lh-preview-lock-wrapper:not(.locked) .lh-preview-wrapper{
    filter:none;
    opacity:1;
    transform:none;
    pointer-events:auto;
}

/* =====================================================
LOCK LAYER
===================================================== */

.lh-publicator-lock-layer{
    position:absolute;
    inset:0;
    z-index:200;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}


/* =====================================
PUBLICATOR LOCK OVERLAY
===================================== */

.lh-publicator-lock{
    position:absolute;
    /* DEFAULT POSITION */
    top:10%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:220;
    display:flex;
    background:rgba(0,0,0,0.22);
    backdrop-filter:blur(2px);
}

/* =====================================================
UNLOCK BUTTON
===================================================== */

.lh-publicator-unlock-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:290px;
    height:52px;
    padding:0 22px;
    border-radius:14px;
    text-decoration:none;
    font-size:11px;
    font-weight:900;
    letter-spacing:0.8px;
    text-transform:uppercase;
    color:#111;
    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffb300
        );

    border:none;
    box-shadow:
        0 10px 30px rgba(255,213,79,0.25);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}


/* =====================================================
HOVER
===================================================== */

.lh-publicator-unlock-btn:hover{
    transform:
        translateY(-2px)
        scale(1.01);
    box-shadow:
        0 14px 38px rgba(255,213,79,0.38);
    opacity:1;
}

/* =====================================================
OVERLAY
===================================================== */

.lh-preview-overlay{
    position:absolute;
    inset:0;
    z-index:5;
    display:block; 
}

.lh-preview-image{
    position:relative;
    z-index:1;
}

/* =====================================================
CONTENT
===================================================== */

.lh-preview-content{
    position:relative;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* =====================================================
TYPOGRAPHY RESET
===================================================== */

.lh-preview-box *{
    box-sizing:border-box;
}

.lh-preview-box img{
    max-width:100%;
}

/* =====================================================
AVATAR BASE
===================================================== */

.lh-avatar{
    width:32px;
    height:32px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
    flex-shrink:0;
}

.lh-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* =====================================================
PUBLISH BUTTON BASE
===================================================== */

.lh-platform-publish-btn{
    width:100%;
    height:42px;
    margin-top:14px;
    margin-bottom:14px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.25s;
}

.lh-platform-publish-btn:hover{
    transform:translateY(-2px);
}

/* =====================================================
PLATFORM BUTTON THEMES
===================================================== */

.lh-platform-publish-btn[data-platform="instagram"]{
    background:linear-gradient(135deg,#ff0069,#7a00ff);
}

.lh-platform-publish-btn[data-platform="facebook"]{
    background:linear-gradient(135deg,#1877f2,#0d5fd1);
}

.lh-platform-publish-btn[data-platform="pinterest"]{
    background:linear-gradient(135deg,#e60023,#b0001c);
}

.lh-platform-publish-btn[data-platform="twitter"]{
    background:#111827;
    border:4px solid rgba(255,255,255,0.25);
}








.lh-platform-publish-btn.is-queued {
    position: relative;
    overflow: hidden;
    opacity: 0.75;
    pointer-events: none;
}

/* shimmer effect */
.lh-platform-publish-btn.is-queued::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: lhPublishShimmer 1.2s infinite;
}

@keyframes lhPublishShimmer {
    0% { left: -150%; }
    100% { left: 150%; }
}



















/* ======================
 CAPTURE DOWNLOAD BUTTON 
======================= */


/* actions row alignment */
.lh-ig-actions{
    display:inline-flex;
    gap:8px;
    align-items:center;
}

/* download button next to actions */
.lh-preview-download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:12px;
    padding:6px 10px;
    font-size:11px;
    font-weight:800;
    border-radius:8px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    cursor:pointer;
    transition:0.2s;
}

.lh-preview-download-btn:hover{
    background:rgba(0,140,255,0.25);
    border-color:rgba(0,140,255,0.5);
}











/* =================================
PUBLISH CONFIRM MODAL
================================= */

.lh-publish-confirm-modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.75);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 99999;
}

.lh-publish-confirm-modal.active {

    display: flex;
}

.lh-publish-confirm-box {

    width: 90%;

    max-width: 500px;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.lh-publish-confirm-content {

    max-height: 250px;

    overflow-y: auto;

    padding: 24px;

    line-height: 1.6;
}

.lh-publish-confirm-content a {

    font-weight: 600;

    text-decoration: underline;
}

.lh-publish-confirm-actions {

    display: flex;

    gap: 10px;

    padding: 20px;

    border-top: 1px solid #eee;
}

.lh-confirm-publish-btn,
.lh-confirm-cancel-btn {

    flex: 1;

    border: none;

    padding: 12px;

    cursor: pointer;

    border-radius: 8px;

    font-weight: 600;
}

.lh-confirm-publish-btn {

    background: #111;

    color: #fff;
}

.lh-confirm-cancel-btn {

    background: #f2f2f2;
}




.lh-platform-publish-btn:disabled,
.lh-platform-publish-btn.is-locked {

    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;

}


.lh-publish-confirm-content {
    color: #1a1a1a;
    font-size: 14.5px;
    font-weight: 400;
}















/* =====================================================================
LUXURY - MINIMAL - EMOTIONAL - ARTISTIC SOCIAL STYLES 
======================================================================== */




/* =======================================================================
                              INSTAGRAM
====================================================================== */

/* ======================
INSTAGRAM LUXURY
========================= */

/* CATEGORY */
.lh-platform-instagram.lh-theme-luxury .lh-ov-category{
    position:absolute;
    top:5px;
    left:5px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial,sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-instagram.lh-theme-luxury .lh-ov-title{
    position:absolute;
    top:34px;
    left:10px;
    max-width:80%;
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    color:#D4AF37;
    text-shadow:
    -0.5px -0.5px 0 #000,
     0.5px -0.5px 0 #000,
    -0.5px  0.5px 0 #000,
     0.5px  0.5px 0 #000,
     3px 2px 0 rgba(0,0,0,0.9),
     4px 3px 0 rgba(0,0,0,0.7);
    z-index:20;
}

/* SUMMARY */
.lh-platform-instagram.lh-theme-luxury .lh-ov-summary{
    /* position */
    position:absolute;
    top:50%;
    left:20px;
    transform:translateY(-50%);
    /* fonts */
    font-size:12px;
    font-family:Arial, sans-serif;
    color:#D0D0D0;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    /* background */
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:10px;
}

/* INSTAGRAM LUXURY ARTIST BADGE */
.lh-platform-instagram.lh-theme-luxury .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-instagram.lh-theme-luxury .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-instagram.lh-theme-luxury .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* ARTIST FULL NAME */
.lh-platform-instagram.lh-theme-luxury .lh-artist-full-name{
    position:relative;
    transform: translateX(-10px);
    max-width:220px;
    font-size:15px;
    font-weight:700;
    line-height:1.25;
    letter-spacing:0.4px;
    color:#D4AF37;
    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.65);
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-instagram.lh-theme-luxury .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-instagram.lh-theme-luxury .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-instagram.lh-theme-luxury .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-instagram.lh-theme-luxury .lh-price-value{
    color:#fff;
}

/* =========================
INSTAGRAM  MINIMAL
========================= */

.lh-platform-instagram.lh-theme-minimal{

}

/* HIDE ARTIST AND SUMMARY */
.lh-theme-minimal .lh-ov-summary,
.lh-theme-minimal .lh-ov-artist{
    display:none;
}

/* CATEGORY */
.lh-platform-instagram.lh-theme-minimal .lh-ov-category{
    position:absolute;
    top:6px;
    left:6px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-instagram.lh-theme-minimal .lh-ov-title{
    position:absolute;
    left:16px;
    bottom:100px;
    z-index:20;
    max-width:72%;
    font-size:26px;
    line-height:1.02;
    font-weight:500;
    letter-spacing:-0.4px;
    color:#fff;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* INSTAGRAM MINIMAL ARTIST BADGE */
.lh-platform-instagram.lh-theme-minimal .lh-artist-badge{
    position:absolute;
    left:16px;
    bottom:18px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;
}

.lh-platform-instagram.lh-theme-minimal .lh-artist-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:1.5px solid rgba(255,255,255,0.35);
    box-shadow:0 2px 12px rgba(0,0,0,0.28);
}

.lh-platform-instagram.lh-theme-minimal .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lh-platform-instagram.lh-theme-minimal .lh-artist-full-name{
    position:relative;
    left:-2px;
    max-width:170px;
    color:#D0D0D0;
    font-size:16px;
    line-height:1.2;
    font-weight:500;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PRICE */
.lh-platform-instagram.lh-theme-minimal .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-instagram.lh-theme-minimal .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-instagram.lh-theme-minimal .lh-price-value{
    color:#fff;
}

/* =========================
INSTAGRAM EMOTIONAL
========================= */

.lh-platform-instagram.lh-theme-emotional{

}

/* CATEGORY */
.lh-platform-instagram.lh-theme-emotional .lh-ov-category{
     /* position */
    position:absolute;
    top:5px;
    left:5px;
    /* fonts */
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;

}

/* TITLE */
.lh-platform-instagram.lh-theme-emotional .lh-ov-title{
    position:absolute;
    top:52px;
    left:14px;
    z-index:20;
    max-width:60%;
    font-size:24px;
    line-height:1.05;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,1.7);
        
        
         /* background */
    background:rgba(0,0,0,0.15);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;
}

/* SUMMARY */
.lh-platform-instagram.lh-theme-emotional .lh-ov-summary{
    position:absolute;
    top:12px;
    right:12px;
    width:220px;
    height:250px;
    z-index:20;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    text-shadow:0 2px 8px rgba(0,0,0,0.55);
    padding:12px 10px;
    background:none;
    border:none;
    border-radius:0;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:7;
    overflow:hidden;
    opacity:0.72;
    word-break:break-word;
}

/* INSTAGRAM EMOTIONAL ARTIST BADGE */
.lh-platform-instagram.lh-theme-emotional .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-instagram.lh-theme-emotional .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-instagram.lh-theme-emotional .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ARTIST NICKNAME */
.lh-platform-instagram.lh-theme-emotional .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-instagram.lh-theme-emotional .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-instagram.lh-theme-emotional .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-instagram.lh-theme-emotional .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-instagram.lh-theme-emotional .lh-price-value{
    color:#fff;
}

/* =========================
INSTAGRAM  ARTISTIC
========================= */

.lh-platform-instagram.lh-theme-artistic{

}

.lh-platform-instagram.lh-theme-artistic .lh-preview-image{
    aspect-ratio: 16 / 9;
}

/* PNG FRAME */
.lh-platform-instagram.lh-theme-artistic .lh-preview-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:url("https://labrinihouse.com/wp-content/system-photos/frame-artistic.png");
    
     background-size: 130% 170%;
    background-position: center;
    background-repeat:no-repeat;
    opacity:1;
    z-index:10;
}

/* IMAGE WRAPPER */
.lh-platform-instagram.lh-theme-artistic .lh-preview-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
}

.lh-preview-overlay{
    position:absolute;
    inset:0;
    z-index:20;
}
.lh-platform-instagram.lh-theme-artistic .lh-preview-image::after{
    z-index:2;
}

.lh-platform-instagram.lh-theme-artistic .lh-preview-image img{
    z-index:1;
}

/*CATEGORY*/
.lh-platform-instagram.lh-theme-artistic .lh-ov-category{
 /* position */
    position:absolute;
    top:20px;
    left:20px;
    /* fonts */
    font-size:14px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:yellow;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.80);
    padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/*TITLE*/
.lh-platform-instagram.lh-theme-artistic .lh-ov-title{
    position:absolute;
    top:70px;
    left:14px;
    z-index:30;
    max-width:60%;
    font-size:30px;
    line-height:1.05;
    background:rgba(0,0,0,0.25);
     padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,0.7);
}

/*SUMMARY*/
.lh-platform-instagram.lh-theme-artistic .lh-ov-summary{
    display:none;
}

/* HIDE DUPLICATE ARTIST */
.lh-platform-instagram.lh-theme-artistic .lh-ov-artist{
    display:none;
}

/* INSTAGRAM ARTISTIC ARTIST BADGE */
.lh-platform-instagram.lh-theme-artistic .lh-artist-badge{
     position:absolute;
    left:14px;
    bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:25;
}

/* AVATAR CONTAINER */
.lh-platform-instagram.lh-theme-artistic .lh-artist-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(255,255,255,0.92);
    box-shadow:
        0 2px 12px rgba(0,0,0,0.55);
}

/* IMAGE INSIDE */
.lh-platform-instagram.lh-theme-artistic .lh-artist-avatar img{
    top:22px;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:50%;
}

/* ARTIST NICKNAME */
.lh-platform-instagram.lh-theme-artistic .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/*PRICE */
.lh-platform-instagram.lh-theme-artistic .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
    background: rgba(40,40,40,0.20);
    border:3px solid rgba(80,40,255,0.50);
    backdrop-filter:blur(20px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-instagram.lh-theme-artistic .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-instagram.lh-theme-artistic .lh-price-value{
    color:#fff;
}

/* =======================================================================
                              FACEBOOK
====================================================================== */

/* ======================
FACEBOOK LUXURY
========================= */

/* CATEGORY */
.lh-platform-facebook.lh-theme-luxury .lh-ov-category{
    position:absolute;
    top:5px;
    left:5px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial,sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-facebook.lh-theme-luxury .lh-ov-title{
    position:absolute;
    top:34px;
    left:10px;
    max-width:80%;
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    color:#D4AF37;
    text-shadow:
    -0.5px -0.5px 0 #000,
     0.5px -0.5px 0 #000,
    -0.5px  0.5px 0 #000,
     0.5px  0.5px 0 #000,
     3px 2px 0 rgba(0,0,0,0.9),
     4px 3px 0 rgba(0,0,0,0.7);
    z-index:20;
}

/* SUMMARY */
.lh-platform-facebook.lh-theme-luxury .lh-ov-summary{
    /* position */
    position:absolute;
    top:50%;
    left:20px;
    transform:translateY(-50%);
    /* fonts */
    font-size:12px;
    font-family:Arial, sans-serif;
    color:#D0D0D0;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    /* background */
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:10px;
}

/* FACEBOOK LUXURY ARTIST BADGE */
.lh-platform-facebook.lh-theme-luxury .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-facebook.lh-theme-luxury .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-facebook.lh-theme-luxury .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* ARTIST FULL NAME */
.lh-platform-facebook.lh-theme-luxury .lh-artist-full-name{
    position:relative;
   transform: translateX(-10px);
    max-width:220px;
    font-size:15px;
    font-weight:700;
    line-height:1.25;
    letter-spacing:0.4px;
    color:#D4AF37;
    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.65);
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-facebook.lh-theme-luxury .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-facebook.lh-theme-luxury .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-facebook.lh-theme-luxury .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-instagram.lh-theme-luxury .lh-price-value{
    color:#fff;
}

/* =========================
FACEBOOK  MINIMAL
========================= */

.lh-platform-facebook.lh-theme-minimal{

}

/* HIDE ARTIST AND SUMMARY */
.lh-theme-minimal .lh-ov-summary,
.lh-theme-minimal .lh-ov-artist{
    display:none;
}

/* CATEGORY */
.lh-platform-facebook.lh-theme-minimal .lh-ov-category{
    position:absolute;
    top:6px;
    left:6px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-facebook.lh-theme-minimal .lh-ov-title{
    position:absolute;
    left:16px;
    bottom:100px;
    z-index:20;
    max-width:72%;
    font-size:26px;
    line-height:1.02;
    font-weight:500;
    letter-spacing:-0.4px;
    color:#fff;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* FACEBOOK MINIMAL ARTIST BADGE */
.lh-platform-facebook.lh-theme-minimal .lh-artist-badge{
    position:absolute;
    left:16px;
    bottom:18px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;
}

.lh-platform-facebook.lh-theme-minimal .lh-artist-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:1.5px solid rgba(255,255,255,0.35);
    box-shadow:0 2px 12px rgba(0,0,0,0.28);
}

.lh-platform-facebook.lh-theme-minimal .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lh-platform-facebook.lh-theme-minimal .lh-artist-full-name{
    position:relative;
    left:-2px;
    max-width:170px;
    color:#D0D0D0;
    font-size:16px;
    line-height:1.2;
    font-weight:500;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PRICE */
.lh-platform-facebook.lh-theme-minimal .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-facebook.lh-theme-minimal .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-facebook.lh-theme-minimal .lh-price-value{
    color:#fff;
}

/* =========================
FACEBOOK EMOTIONAL
========================= */

.lh-platform-facebook.lh-theme-emotional{

}

/* CATEGORY */
.lh-platform-facebook.lh-theme-emotional .lh-ov-category{
     /* position */
    position:absolute;
    top:5px;
    left:5px;
    /* fonts */
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;

}

/* TITLE */
.lh-platform-facebook.lh-theme-emotional .lh-ov-title{
    position:absolute;
    top:52px;
    left:14px;
    z-index:20;
    max-width:60%;
    font-size:24px;
    line-height:1.05;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,1.7);
        
        
         /* background */
    background:rgba(0,0,0,0.15);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;
        
        
}

/* SUMMARY */
.lh-platform-facebook.lh-theme-emotional .lh-ov-summary{
    position:absolute;
    top:12px;
    right:12px;
    width:220px;
    height:250px;
    z-index:20;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    text-shadow:0 2px 8px rgba(0,0,0,0.55);
    padding:12px 10px;
    background:none;
    border:none;
    border-radius:0;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:7;
    overflow:hidden;
    opacity:0.72;
    word-break:break-word;
}

/* FACEBOOK EMOTIONAL ARTIST BADGE */
.lh-platform-facebook.lh-theme-emotional .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-facebook.lh-theme-emotional .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-facebook.lh-theme-emotional .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ARTIST NICKNAME */
.lh-platform-facebook.lh-theme-emotional .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-facebook.lh-theme-emotional .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-facebook.lh-theme-emotional .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-facebook.lh-theme-emotional .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-facebook.lh-theme-emotional .lh-price-value{
    color:#fff;
}

/* =========================
FACEBOOK  ARTISTIC
========================= */

.lh-platform-facebook.lh-theme-artistic{

}

.lh-platform-facebook.lh-theme-artistic .lh-preview-image{
    aspect-ratio: 16 / 9;
}

/* PNG FRAME */
.lh-platform-facebook.lh-theme-artistic .lh-preview-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:url("https://labrinihouse.com/wp-content/system-photos/frame-artistic.png");
    
     background-size: 130% 170%;
    background-position: center;
    background-repeat:no-repeat;
    opacity:1;
    z-index:10;
}

/* IMAGE WRAPPER */
.lh-platform-facebook.lh-theme-artistic .lh-preview-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
}

.lh-preview-overlay{
    position:absolute;
    inset:0;
    z-index:20;
}
.lh-platform-facebook.lh-theme-artistic .lh-preview-image::after{
    z-index:2;
}

.lh-platform-facebook.lh-theme-artistic .lh-preview-image img{
    z-index:1;
}

/*CATEGORY*/
.lh-platform-facebook.lh-theme-artistic .lh-ov-category{
  /* position */
    position:absolute;
    top:20px;
    left:20px;
    /* fonts */
    font-size:14px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:yellow;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.80);
    padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/*TITLE*/
.lh-platform-facebook.lh-theme-artistic .lh-ov-title{
    position:absolute;
    top:70px;
    left:14px;
    z-index:30;
    max-width:60%;
    font-size:30px;
    line-height:1.05;
    background:rgba(0,0,0,0.25);
     padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,0.7);
}

/*SUMMARY*/
.lh-platform-facebook.lh-theme-artistic .lh-ov-summary{
    display:none;
}

/* HIDE DUPLICATE ARTIST */
.lh-platform-facebook.lh-theme-artistic .lh-ov-artist{
    display:none;
}

/* INSTAGRAM ARTISTIC ARTIST BADGE */
.lh-platform-facebook.lh-theme-artistic .lh-artist-badge{
     position:absolute;
    left:14px;
    bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:25;
}

/* AVATAR CONTAINER */
.lh-platform-facebook.lh-theme-artistic .lh-artist-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(255,255,255,0.92);
    box-shadow:
        0 2px 12px rgba(0,0,0,0.55);
}

/* IMAGE INSIDE */
.lh-platform-facebook.lh-theme-artistic .lh-artist-avatar img{
    top:22px;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:50%;
}

/* ARTIST NICKNAME */
.lh-platform-facebook.lh-theme-artistic .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/*PRICE */
.lh-platform-facebook.lh-theme-artistic .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
     background: rgba(40,40,40,0.20);
    border:3px solid rgba(0.80,40,255,0.50);
    backdrop-filter:blur(20px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-facebook.lh-theme-artistic .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-facebook.lh-theme-artistic .lh-price-value{
    color:#fff;
}

/* =======================================================================
                              PINTEREST
====================================================================== */

/* ======================
PINTEREST LUXURY
========================= */

/* CATEGORY */
.lh-platform-pinterest.lh-theme-luxury .lh-ov-category{
    position:absolute;
    top:5px;
    left:5px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial,sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-pinterest.lh-theme-luxury .lh-ov-title{
    position:absolute;
    top:34px;
    left:10px;
    max-width:80%;
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    color:#D4AF37;
    text-shadow:
    -0.5px -0.5px 0 #000,
     0.5px -0.5px 0 #000,
    -0.5px  0.5px 0 #000,
     0.5px  0.5px 0 #000,
     3px 2px 0 rgba(0,0,0,0.9),
     4px 3px 0 rgba(0,0,0,0.7);
    z-index:20;
}

/* SUMMARY */
.lh-platform-pinterest.lh-theme-luxury .lh-ov-summary{
    /* position */
    position:absolute;
    top:50%;
    left:20px;
    transform:translateY(-50%);
    /* fonts */
    font-size:12px;
    font-family:Arial, sans-serif;
    color:#D0D0D0;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    /* background */
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:10px;
}

/* PINTEREST LUXURY ARTIST BADGE */
.lh-platform-pinterest.lh-theme-luxury .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-pinterest.lh-theme-luxury .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-pinterest.lh-theme-luxury .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* ARTIST FULL NAME */
.lh-platform-pinterest.lh-theme-luxury .lh-artist-full-name{
    position:relative;
    transform: translateX(-10px);
    max-width:220px;
    font-size:15px;
    font-weight:700;
    line-height:1.25;
    letter-spacing:0.4px;
    color:#D4AF37;
    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.65);
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-pinterest.lh-theme-luxury .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-pinterest.lh-theme-luxury .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-pinterest.lh-theme-luxury .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-pinterest.lh-theme-luxury .lh-price-value{
    color:#fff;
}

/* =========================
PINTEREST  MINIMAL
========================= */

.lh-platform-pinterest.lh-theme-minimal{

}

/* HIDE ARTIST AND SUMMARY */
.lh-theme-minimal .lh-ov-summary,
.lh-theme-minimal .lh-ov-artist{
    display:none;
}

/* CATEGORY */
.lh-platform-pinterest.lh-theme-minimal .lh-ov-category{
    position:absolute;
    top:6px;
    left:6px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-pinterest.lh-theme-minimal .lh-ov-title{
    position:absolute;
    left:16px;
    bottom:100px;
    z-index:20;
    max-width:72%;
    font-size:26px;
    line-height:1.02;
    font-weight:500;
    letter-spacing:-0.4px;
    color:#fff;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PINTEREST MINIMAL ARTIST BADGE */
.lh-platform-pinterest.lh-theme-minimal .lh-artist-badge{
    position:absolute;
    left:16px;
    bottom:18px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;
}

.lh-platform-pinterest.lh-theme-minimal .lh-artist-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:1.5px solid rgba(255,255,255,0.35);
    box-shadow:0 2px 12px rgba(0,0,0,0.28);
}

.lh-platform-pinterest.lh-theme-minimal .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lh-platform-pinterest.lh-theme-minimal .lh-artist-full-name{
    position:relative;
    left:-2px;
    max-width:170px;
    color:#D0D0D0;
    font-size:16px;
    line-height:1.2;
    font-weight:500;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PRICE */
.lh-platform-pinterest.lh-theme-minimal .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-pinterest.lh-theme-minimal .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-pinterest.lh-theme-minimal .lh-price-value{
    color:#fff;
}

/* =========================
PINTEREST EMOTIONAL
========================= */

.lh-platform-pinterest.lh-theme-emotional{

}

/* CATEGORY */
.lh-platform-pinterest.lh-theme-emotional .lh-ov-category{
     /* position */
    position:absolute;
    top:5px;
    left:5px;
    /* fonts */
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;

}

/* TITLE */
.lh-platform-pinterest.lh-theme-emotional .lh-ov-title{
    position:absolute;
    top:52px;
    left:14px;
    z-index:20;
    max-width:60%;
    font-size:24px;
    line-height:1.05;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,1.7);
        
        
         /* background */
    background:rgba(0,0,0,0.15);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;
        
        
}

/* SUMMARY */
.lh-platform-pinterest.lh-theme-emotional .lh-ov-summary{
    position:absolute;
    top:12px;
    right:12px;
    width:220px;
    height:250px;
    z-index:20;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    text-shadow:0 2px 8px rgba(0,0,0,0.55);
    padding:12px 10px;
    background:none;
    border:none;
    border-radius:0;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:7;
    overflow:hidden;
    opacity:0.72;
    word-break:break-word;
}

/* PINTEREST EMOTIONAL ARTIST BADGE */
.lh-platform-pinterest.lh-theme-emotional .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-pinterest.lh-theme-emotional .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-pinterest.lh-theme-emotional .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ARTIST NICKNAME */
.lh-platform-pinterest.lh-theme-emotional .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-pinterest.lh-theme-emotional .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-pinterest.lh-theme-emotional .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-pinterest.lh-theme-emotional .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-pinterest.lh-theme-emotional .lh-price-value{
    color:#fff;
}

/* =========================
PINTEREST  ARTISTIC
========================= */

.lh-platform-pinterest.lh-theme-artistic{

}

.lh-platform-pinterest.lh-theme-artistic .lh-preview-image{
    aspect-ratio: 16 / 9;
}

/* PNG FRAME */
.lh-platform-pinterest.lh-theme-artistic .lh-preview-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:url("https://labrinihouse.com/wp-content/system-photos/frame-artistic.png");
    
     background-size: 130% 170%;
    background-position: center;
    background-repeat:no-repeat;
    opacity:1;
    z-index:10;
}

/* IMAGE WRAPPER */
.lh-platform-pinterest.lh-theme-artistic .lh-preview-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
}

.lh-preview-overlay{
    position:absolute;
    inset:0;
    z-index:20;
}
.lh-platform-pinterest.lh-theme-artistic .lh-preview-image::after{
    z-index:2;
}

.lh-platform-pinterest.lh-theme-artistic .lh-preview-image img{
    z-index:1;
}

/*CATEGORY*/
.lh-platform-pinterest.lh-theme-artistic .lh-ov-category{
 /* position */
    position:absolute;
    top:20px;
    left:20px;
    /* fonts */
    font-size:14px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:yellow;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.80);
    padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/*TITLE*/
.lh-platform-pinterest.lh-theme-artistic .lh-ov-title{
    position:absolute;
    top:70px;
    left:14px;
    z-index:30;
    max-width:60%;
    font-size:30px;
    line-height:1.05;
    background:rgba(0,0,0,0.25);
     padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,0.7);
}

/*SUMMARY*/
.lh-platform-pinterest.lh-theme-artistic .lh-ov-summary{
    display:none;
}

/* HIDE DUPLICATE ARTIST */
.lh-platform-pinterest.lh-theme-artistic .lh-ov-artist{
    display:none;
}

/* PINTEREST ARTISTIC ARTIST BADGE */
.lh-platform-pinterest.lh-theme-artistic .lh-artist-badge{
     position:absolute;
    left:14px;
    bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:25;
}

/* AVATAR CONTAINER */
.lh-platform-pinterest.lh-theme-artistic .lh-artist-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(255,255,255,0.92);
    box-shadow:
        0 2px 12px rgba(0,0,0,0.55);
}

/* IMAGE INSIDE */
.lh-platform-pinterest.lh-theme-artistic .lh-artist-avatar img{
    top:22px;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:50%;
}

/* ARTIST NICKNAME */
.lh-platform-pinterest.lh-theme-artistic .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/*PRICE */
.lh-platform-pinterest.lh-theme-artistic .lh-ov-price{
     position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
     background: rgba(40,40,40,0.20);
    border:3px solid rgba(0.80,40,255,0.50);
    backdrop-filter:blur(20px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-pinterest.lh-theme-artistic .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-pinterest.lh-theme-artistic .lh-price-value{
    color:#fff;
}

/* =======================================================================
                              TWITTER
====================================================================== */

/* ======================
TWITTER LUXURY
========================= */

/* CATEGORY */
.lh-platform-twitter.lh-theme-luxury .lh-ov-category{
    position:absolute;
    top:5px;
    left:5px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial,sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-twitter.lh-theme-luxury .lh-ov-title{
    position:absolute;
    top:34px;
    left:10px;
    max-width:80%;
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    color:#D4AF37;
    text-shadow:
    -0.5px -0.5px 0 #000,
     0.5px -0.5px 0 #000,
    -0.5px  0.5px 0 #000,
     0.5px  0.5px 0 #000,
     3px 2px 0 rgba(0,0,0,0.9),
     4px 3px 0 rgba(0,0,0,0.7);
    z-index:20;
}

/* SUMMARY */
.lh-platform-twitter.lh-theme-luxury .lh-ov-summary{
    /* position */
    position:absolute;
    top:50%;
    left:20px;
    transform:translateY(-50%);
    /* fonts */
    font-size:12px;
    font-family:Arial, sans-serif;
    color:#D0D0D0;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    /* background */
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:10px;
}

/* TWITTER LUXURY ARTIST BADGE */
.lh-platform-twitter.lh-theme-luxury .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-twitter.lh-theme-luxury .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-twitter.lh-theme-luxury .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* ARTIST FULL NAME */
.lh-platform-twitter.lh-theme-luxury .lh-artist-full-name{
    position:relative;
   transform: translateX(-10px);
    max-width:220px;
    font-size:15px;
    font-weight:700;
    line-height:1.25;
    letter-spacing:0.4px;
    color:#D4AF37;
    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.65);
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-twitter.lh-theme-luxury .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-twitter.lh-theme-luxury .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-twitter.lh-theme-luxury .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-twitter.lh-theme-luxury .lh-price-value{
    color:#fff;
}

/* =========================
TWITTER  MINIMAL
========================= */

.lh-platform-twitter.lh-theme-minimal{

}

/* HIDE ARTIST AND SUMMARY */
.lh-theme-minimal .lh-ov-summary,
.lh-theme-minimal .lh-ov-artist{
    display:none;
}

/* CATEGORY */
.lh-platform-twitter.lh-theme-minimal .lh-ov-category{
    position:absolute;
    top:6px;
    left:6px;
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    background:rgba(0,0,0,0.25);
    padding:4px 10px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/* TITLE */
.lh-platform-twitter.lh-theme-minimal .lh-ov-title{
    position:absolute;
    left:16px;
    bottom:100px;
    z-index:20;
    max-width:72%;
    font-size:26px;
    line-height:1.02;
    font-weight:500;
    letter-spacing:-0.4px;
    color:#fff;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PINTEREST MINIMAL ARTIST BADGE */
.lh-platform-twitter.lh-theme-minimal .lh-artist-badge{
    position:absolute;
    left:16px;
    bottom:18px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;
}

.lh-platform-twitter.lh-theme-minimal .lh-artist-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:1.5px solid rgba(255,255,255,0.35);
    box-shadow:0 2px 12px rgba(0,0,0,0.28);
}

.lh-platform-twitter.lh-theme-minimal .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lh-platform-twitter.lh-theme-minimal .lh-artist-full-name{
    position:relative;
    left:-2px;
    max-width:170px;
    color:#D0D0D0;
    font-size:16px;
    line-height:1.2;
    font-weight:500;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.45);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* PRICE */
.lh-platform-twitter.lh-theme-minimal .lh-ov-price{
    position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-twitter.lh-theme-minimal .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-twitter.lh-theme-minimal .lh-price-value{
    color:#fff;
}

/* =========================
TWITTER EMOTIONAL
========================= */

.lh-platform-twitter.lh-theme-emotional{

}

/* CATEGORY */
.lh-platform-twitter.lh-theme-emotional .lh-ov-category{
     /* position */
    position:absolute;
    top:5px;
    left:5px;
    /* fonts */
    font-size:11px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:#fff;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;

}

/* TITLE */
.lh-platform-twitter.lh-theme-emotional .lh-ov-title{
    position:absolute;
    top:52px;
    left:14px;
    z-index:20;
    max-width:60%;
    font-size:24px;
    line-height:1.05;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,1.7);
        
        
         /* background */
    background:rgba(0,0,0,0.15);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    padding:4px 10px;
        
        
}

/* SUMMARY */
.lh-platform-twitter.lh-theme-emotional .lh-ov-summary{
    position:absolute;
    top:12px;
    right:12px;
    width:220px;
    height:250px;
    z-index:20;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    text-shadow:0 2px 8px rgba(0,0,0,0.55);
    padding:12px 10px;
    background:none;
    border:none;
    border-radius:0;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:7;
    overflow:hidden;
    opacity:0.72;
    word-break:break-word;
}

/* TWITTER EMOTIONAL ARTIST BADGE */
.lh-platform-twitter.lh-theme-emotional .lh-artist-badge{
    position:absolute;
    bottom:5px;
    left:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

/* ARTIST AVATAR */
.lh-platform-twitter.lh-theme-emotional .lh-artist-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid #D4AF37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.35);
}

.lh-platform-twitter.lh-theme-emotional .lh-artist-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ARTIST NICKNAME */
.lh-platform-twitter.lh-theme-emotional .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/* HIDE DEFAULT ARTIST */
.lh-platform-twitter.lh-theme-emotional .lh-ov-artist{
    display:none;
}

/* PRICE */
.lh-platform-twitter.lh-theme-emotional .lh-ov-price{
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:10px;
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.12);
    font-size:14px;
    font-weight:700;
    font-family:Arial,sans-serif;
    z-index:20;
}

/* PRICE PARTS */
.lh-platform-twitter.lh-theme-emotional .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-twitter.lh-theme-emotional .lh-price-value{
    color:#fff;
}

/* =========================
TWITTER  ARTISTIC
========================= */

.lh-platform-twitter.lh-theme-artistic{

}

.lh-platform-twitter.lh-theme-artistic .lh-preview-image{
    aspect-ratio: 16 / 9;
}

/* PNG FRAME */
.lh-platform-twitter.lh-theme-artistic .lh-preview-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:url("https://labrinihouse.com/wp-content/system-photos/frame-artistic.png");
    
     background-size: 130% 170%;
    background-position: center;
    background-repeat:no-repeat;
    opacity:1;
    z-index:10;
}

/* IMAGE WRAPPER */
.lh-platform-twitter.lh-theme-artistic .lh-preview-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    
}



.lh-export-16-9.lh-preview-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
}





.lh-preview-overlay{
    position:absolute;
    inset:0;
    z-index:20;
}
.lh-platform-twitter.lh-theme-artistic .lh-preview-image::after{
    z-index:2;
}

.lh-platform-twitter.lh-theme-artistic .lh-preview-image img{
    z-index:1;
}

/*CATEGORY*/
.lh-platform-twitter.lh-theme-artistic .lh-ov-category{
  /* position */
    position:absolute;
    top:20px;
    left:20px;
    /* fonts */
    font-size:14px;
    letter-spacing:1px;
    font-family:Arial, sans-serif;
    color:yellow;
    opacity:0.9;
    /* background */
    background:rgba(0,0,0,0.80);
    padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    z-index:20;
}

/*TITLE*/
.lh-platform-twitter.lh-theme-artistic .lh-ov-title{
    position:absolute;
    top:70px;
    left:14px;
    z-index:30;
    max-width:60%;
    font-size:30px;
    line-height:1.05;
    background:rgba(0,0,0,0.25);
     padding:3px 8px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    font-style:italic;
    font-weight:500;
    font-family:
        "Cormorant Garamond",
        "Bodoni Moda",
        "Playfair Display",
        serif;
    letter-spacing:0.3px;
    color:#fff;
    text-shadow:
        0 3px 12px rgba(0,0,0,0.7);
}


/*SUMMARY*/
.lh-platform-twitter.lh-theme-artistic .lh-ov-summary{
    display:none;
}

/* HIDE DUPLICATE ARTIST */
.lh-platform-twitter.lh-theme-artistic .lh-ov-artist{
    display:none;
}

/* TWITTER ARTISTIC ARTIST BADGE */
.lh-platform-twitter.lh-theme-artistic .lh-artist-badge{
     position:absolute;
    left:14px;
    bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:25;
}

/* AVATAR CONTAINER */
.lh-platform-twitter.lh-theme-artistic .lh-artist-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(255,255,255,0.92);
    box-shadow:
        0 2px 12px rgba(0,0,0,0.55);
}

/* IMAGE INSIDE */
.lh-platform-twitter.lh-theme-artistic .lh-artist-avatar img{
    top:22px;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:50%;
}

/* ARTIST NICKNAME */
.lh-platform-twitter.lh-theme-artistic .lh-artist-nickname{
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: block;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 0.9;
}

/*PRICE */
.lh-platform-twitter.lh-theme-artistic .lh-ov-price{
     position:absolute;
    right:14px;
    bottom:20px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:4px;
    padding:7px 12px;
    border-radius:999px;
     background: rgba(40,40,40,0.20);
    border:3px solid rgba(0.80,40,255,0.50);
    backdrop-filter:blur(20px);
    font-size:13px;
    font-weight:600;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-shadow:0 1px 4px rgba(0,0,0,0.35);
}

.lh-platform-twitter.lh-theme-artistic .lh-price-currency{
    color:#ff2b2b;
    font-weight:800;
}

.lh-platform-twitter.lh-theme-artistic .lh-price-value{
    color:#fff;
}

