.lts-456-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    direction: rtl;
}

/* Image Fix */
.widget-image { 
    display:block; 
    width:100%; 
    height:auto; 
    object-fit:cover; 
    opacity:1; 
    visibility:visible; 
    position:relative; 
    z-index:2; 
}
.ts-wrapper-3fc049f7 {
    overflow: visible;
}


.lts-456-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.lts-456-search-wrap {
    flex-grow: 1;
}

.lts-456-search {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #fff;
    font-size: 16px;
}

.lts-456-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.lts-456-filter-btn:hover {
    background: #444;
}

/* Drawer Styles */
.lts-456-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
}

.lts-456-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
    color: #fff;
}

.lts-456-drawer.open {
    right: 0;
}

.lts-456-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lts-456-drawer-header h4 {
    margin: 0;
    color: #fff;
}

.lts-456-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.lts-456-drawer-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.lts-456-filter-group {
    margin-bottom: 20px;
}

.lts-456-filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.lts-456-filter-group select,
.lts-456-price-inputs input {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

.lts-456-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lts-456-price-inputs span {
    color: #777;
}

.lts-456-checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lts-456-cols-controls {
    display: flex;
    gap: 5px;
}

.lts-456-col-btn {
    flex: 1;
    padding: 8px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.lts-456-col-btn.active {
    background: #444;
    border-color: #666;
}

.lts-456-drawer-footer {
    padding: 20px;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
}

.lts-456-drawer-clear,
.lts-456-drawer-apply {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.lts-456-drawer-clear {
    background: #333;
    color: #fff;
}

.lts-456-drawer-apply {
    color: #fff;
}

/* Grid & Cards */
.lts-456-grid {
    display: grid;
    gap: 20px;
    transition: grid-template-columns 0.3s ease;
}

.lts-456-card {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lts-456-image-wrap {
    position: relative;
    padding-top: 100%;
}

.lts-456-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lts-456-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d9534f;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.lts-456-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lts-456-title {
    color: #fff;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

.lts-456-price {
    margin-bottom: 15px;
    font-weight: bold;
}

.lts-456-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.lts-456-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    z-index: 10;
}