/* ================================
   Container & Layout
================================ */

.lm-ux-container{
    background:#fff;
    direction:rtl;
    font-family:tahoma;
}

.lm-ux-grid{
    display:flex;
    max-width:1400px;
    margin:0 auto;
    border:1px solid #000;
}


/* ================================
   Sidebar
================================ */

.lm-ux-sidebar-dark{
    width:280px;
    background:#000;
    color:#fff;
    padding:40px 25px;
}

.lm-ux-side-title{
    font-size:32px;
    font-weight:bold;
    margin-bottom:40px;
}

.lm-ux-side-nav ul{
    list-style:none;
    padding:0;
}

.lm-ux-side-nav li{
    margin-bottom:8px;
}

.lm-ux-side-nav a{
    color:#aaa;
    text-decoration:none;
    font-size:14px;
    display:block;
    padding:6px 0;
    transition:.3s;
}

.lm-ux-side-nav a:hover{
    color:#fff;
}

.lm-ux-sidebar-info{
    margin-top:40px;
    border-top:1px solid #333;
    padding-top:20px;
    font-size:13px;
    color:#aaa;
    line-height:1.8;
}


/* ================================
   Engagement Box
================================ */

.lm-ux-engagement-box{
    margin-top:35px;
}

.lm-like-btn-modern{
    width:100%;
    background:#111;
    color:#fff;
    border:1px solid #444;
    padding:10px;
    cursor:pointer;
    margin-bottom:10px;
    font-size:14px;
}

.lm-like-btn-modern:hover{
    background:#222;
}

.lm-like-count{
    margin-right:5px;
}

.lm-ux-rating-mini{
    font-size:14px;
}

.lm-stars{
    margin-top:6px;
}

.lm-rating-star{
    color:#f5b301;
    text-decoration:none;
    font-size:18px;
    margin-left:2px;
}


/* ================================
   Main Content
================================ */

.lm-ux-main-content{
    flex:1;
    padding:40px;
}

.lm-ux-top-row{
    display:flex;
    gap:40px;
    margin-bottom:30px;
}


/* ================================
   Preview Image
================================ */

.lm-ux-preview-area{
    flex:1.4;
}

.lm-ux-main-img-box{
    border:1px solid #eee;
    padding:25px;
    text-align:center;
}

.lm-ux-main-img-box img{
    max-width:100%;
    height:auto;
}

.lm-ux-gallery-strip{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.gallery-item-ux{
    width:60px;
    height:60px;
    border:1px solid #000;
    padding:5px;
    overflow:hidden;
}

.gallery-item-ux img{
    width:100%;
}


/* ================================
   Details Section
================================ */

.lm-ux-details-area{
    flex:1;
}

.lm-ux-logo-title{
    font-size:26px;
    margin-bottom:20px;
}

.lm-ux-specs{
    list-style:none;
    padding:0;
}

.lm-ux-specs li{
    padding:10px 0;
    border-bottom:1px dotted #ccc;
    font-size:14px;
}

.lm-ux-specs li strong{
    width:120px;
    display:inline-block;
    color:#666;
}

.price-val{
    color:#6f42c1;
    font-weight:bold;
}


/* ================================
   Download Buttons
================================ */

.lm-ux-download-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin:35px 0;
}

.btn-dl-ux,
.btn-dl-pkg-ux{
    display:block;
    text-align:center;
    background:#000;
    color:#fff;
    padding:12px;
    font-size:13px;
    font-weight:bold;
    text-decoration:none;
    border-radius:4px;
    transition:.25s;
}

.btn-dl-ux:hover{
    background:#6f42c1;
}

.btn-dl-pkg-ux{
    background:#6f42c1;
}

.btn-dl-pkg-ux:hover{
    background:#5931a6;
}

.btn-dl-ux.disabled,
.btn-dl-pkg-ux.disabled{
    background:#ccc;
    color:#666;
    pointer-events:none;
}


/* ================================
   Tabs
================================ */

.lm-ux-tabs-section{
    margin-top:30px;
}

.lm-ux-tabs-header{
    display:flex;
    flex-direction:row-reverse;
    border-bottom:1px solid #000;
}

.ux-tab-btn{
    background:none;
    border:1px solid transparent;
    padding:10px 25px;
    cursor:pointer;
    font-weight:bold;
    font-size:14px;
}

.ux-tab-btn:hover{
    background:#f6f6f6;
}

.ux-tab-btn.active{
    background:#fff;
    border:1px solid #000;
    border-bottom:1px solid #fff;
    margin-bottom:-1px;
}

.lm-ux-tab-body{
    border:1px solid #000;
    border-top:none;
    padding:30px;
    line-height:1.9;
    font-size:14px;
}

.ux-tab-pane{
    display:none;
}

.ux-tab-pane.active{
    display:block;
}


/* ================================
   Similar Logos
================================ */

.lm-ux-similar-bottom{
    margin-top:50px;
}

.ux-similar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    border:1px solid #ddd;
    padding:20px;
}

.ux-sim-item{
    text-align:center;
}

.ux-sim-item img{
    max-width:100%;
    height:auto;
}

.ux-sim-title{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#333;
}


/* ================================
   Sidebar Similar Mini
================================ */

.lm-ux-mini-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    text-decoration:none;
    color:#fff;
}

.lm-ux-mini-thumb img{
    width:40px;
    height:40px;
    object-fit:cover;
}

.lm-ux-mini-title{
    font-size:12px;
}


/* ================================
   Responsive
================================ */

@media (max-width:1024px){

.lm-ux-grid{
    flex-direction:column;
}

.lm-ux-sidebar-dark{
    width:100%;
}

.lm-ux-top-row{
    flex-direction:column;
}

.lm-ux-download-grid{
    grid-template-columns:repeat(2,1fr);
}

.ux-similar-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.lm-ux-download-grid{
    grid-template-columns:1fr;
}

.ux-similar-grid{
    grid-template-columns:1fr;
}

}
/* استایل فرم نظرات مدرن */
.lm-custom-comment-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.lm-custom-comment-form h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}
.lm-custom-comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-family: inherit;
    resize: none;
    margin-bottom: 15px;
}
.lm-custom-comment-form button {
    border: none;
    cursor: pointer;
}
.lm-login-to-comment {
    text-align: center;
    padding: 30px;
    background: #fff5f7;
    border-radius: 12px;
    border: 1px dashed #d63384;
}
.lm-comments-list {
    margin-top: 30px;
}
.comment-body {
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
}
.comment-author cite {
    font-weight: bold;
    font-style: normal;
    color: #d63384;
}
