
.parana-related-products-section {
    direction: rtl;
    width: 100%;
}

.parana-related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.parana-related-title-wrap {
    text-align: right;
}

.parana-related-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0 0 5px 0;
}

.parana-related-subtitle {
    font-size: 16px;
    color: #888;
    margin: 0;
    font-weight: 600;
}

.parana-view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #655EAB;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.parana-view-all-link:hover {
    gap: 12px;
}

.parana-related-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
    gap: 20px;
}

.parana-related-card {
    background: #fff;
    border-radius: 30px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
    position: relative;
    overflow: hidden;
}

.parana-related-card:hover {
    box-shadow: 0 10px 30px rgba(101, 94, 171, 0.1);
    transform: translateY(-5px);
}

.parana-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.parana-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parana-card-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.parana-discount-badge {
    background: #ff2d46;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
}

.parana-wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.parana-card-info {
    text-align: center;
    padding: 0 5px;
    flex-grow: 1;
}

.parana-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.parana-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.parana-card-stars {
    color: #FFB800;
    font-size: 12px;
}

.parana-card-review-count {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.parana-card-price {
    font-size: 20px;
    font-weight: 800;
    color: #655EAB;
    margin-bottom: 15px;
}

.parana-card-price small {
    font-size: 12px;
    color: #888;
    margin-right: 2px;
}

.parana-add-to-cart-btn {
    background: #7B75C1;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.parana-add-to-cart-btn:hover {
    background: #655EAB;
    transform: scale(1.02);
        color: #ffff;
}

.parana-add-to-cart-btn i {
    font-size: 16px;
}

@media (max-width: 991px) {
    /* Columns will now follow Elementor settings */
}

@media (max-width: 575px) {
    /* Columns will now follow Elementor settings */
    .parana-related-title {
        font-size: 22px;
    }
}
