.tbex-ocs-530030d4-wrapper {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
.tbex-ocs-530030d4-header {
    text-align: center;
    margin-bottom: 30px;
}

.tbex-ocs-530030d4-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tbex-ocs-530030d4-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.4;
}

.tbex-ocs-530030d4-subtitle {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Grid */
.tbex-ocs-530030d4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Card Premium Design */
.tbex-ocs-530030d4-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tbex-ocs-530030d4-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tbex-ocs-530030d4-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tbex-ocs-530030d4-card-link:hover {
    color: inherit;
}

.tbex-ocs-530030d4-card-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.tbex-ocs-530030d4-discount-badge {
    background: #dc3545;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
}

.tbex-ocs-530030d4-card-image {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 240px; /* larger image area */
}

.tbex-ocs-530030d4-card-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.tbex-ocs-530030d4-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tbex-ocs-530030d4-product-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Progress */
.tbex-ocs-530030d4-purchase-progress {
    margin-bottom: 12px;
}

.tbex-ocs-530030d4-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 4px;
}

.tbex-ocs-530030d4-progress-bar {
    width: 100%;
    height: 6px;
    background: #fde8e8;
    border-radius: 3px;
    overflow: hidden;
}

.tbex-ocs-530030d4-progress-bar-fill {
    height: 100%;
    background: #e74c3c;
    border-radius: 3px;
}

/* Pricing */
.tbex-ocs-530030d4-price-wrap {
    margin-top: auto;
}

.tbex-ocs-530030d4-regular-price {
    font-size: 13px;
    color: #adb5bd;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.tbex-ocs-530030d4-saving {
    font-size: 14px;
    font-weight: 800;
    color: #dc3545;
    display: block;
    margin-bottom: 4px;
}

.tbex-ocs-530030d4-sale-price {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
}

.tbex-ocs-530030d4-currency {
    font-size: 14px;
    font-weight: 600;
}

/* Add to Cart */
.tbex-ocs-530030d4-card-footer {
    padding: 0 16px 16px;
}

.tbex-ocs-530030d4-add-to-cart {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

.tbex-ocs-530030d4-add-to-cart:hover {
    background: #0f1322;
    color: #fff;
    text-decoration: none;
}

/* CTA Section */
.tbex-ocs-530030d4-footer {
    text-align: center;
    margin-top: 10px;
}

.tbex-ocs-530030d4-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tbex-ocs-530030d4-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .tbex-ocs-530030d4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tbex-ocs-530030d4-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .tbex-ocs-530030d4-title {
        font-size: 22px;
    }

    .tbex-ocs-530030d4-card-image {
        min-height: 160px;
        padding: 12px;
    }
    
    .tbex-ocs-530030d4-card-image img {
        max-height: 140px;
    }

    .tbex-ocs-530030d4-product-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .tbex-ocs-530030d4-sale-price {
        font-size: 18px;
    }

    .tbex-ocs-530030d4-currency {
        font-size: 11px;
    }

    .tbex-ocs-530030d4-discount-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .tbex-ocs-530030d4-saving {
        font-size: 11px;
    }
    
    .tbex-ocs-530030d4-regular-price {
        font-size: 11px;
    }

    .tbex-ocs-530030d4-add-to-cart {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .tbex-ocs-530030d4-cta-btn {
        width: 100%;
        padding: 14px 20px;
    }
}
